:root {
    --bg: #0a0f1c;
    --bg-dark: #070b14;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text: #ffffff;
    --text-muted: #9ca3af;
    --gold: #f5b400;
    --gold-light: #ffd65a;
    --gold-dark: #d49a00;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #0a0f1c 0%, #070b14 50%, #0a0f1c 100%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Smooth scroll reveal animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(245, 180, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(245, 180, 0, 0.6);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

/* Scroll reveal classes */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.page-shell {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 30px 0 60px;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(245, 180, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(245, 180, 0, 0.1) 0%, transparent 40%),
        linear-gradient(180deg, rgba(245, 180, 0, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 100px 100px, rgba(255, 255, 255, 0.02) 0, transparent 50%),
        radial-gradient(circle at 400px 300px, rgba(245, 180, 0, 0.03) 0, transparent 40%);
    background-size: 500px 500px, 600px 600px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text);
}

.brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(245, 180, 0, 0.3);
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    color: #0a0f1c;
    letter-spacing: -0.5px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 11px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.user-balance {
    display: flex;
    flex-direction: column;
    margin-right: 8px;
}

.balance-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.balance-amount {
    font-size: 16px;
    font-weight: 900;
    color: var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(245, 180, 0, 0.5);
    box-shadow: 0 10px 30px rgba(245, 180, 0, 0.2);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #0a0f1c;
    box-shadow: 0 8px 30px rgba(245, 180, 0, 0.35);
}

.btn-gold:hover {
    box-shadow: 0 15px 40px rgba(245, 180, 0, 0.5);
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-gold:hover::after {
    opacity: 1;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

/* Hero Content */
.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-main-image {
    width: 100%;
    max-width: 1400px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* Prize Bonds Section */
.prize-bonds-section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 600;
}

.prize-bonds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.prize-bond-card-link {
    display: block;
    text-decoration: none;
}

.prize-bond-card-link .prize-bond-card {
    min-height: 420px;
}

.prize-bond-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.prize-bond-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 180, 0, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.prize-bond-card .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.prize-bond-card:hover::before {
    opacity: 1;
}

.prize-bond-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(245, 180, 0, 0.5);
    box-shadow: 0 25px 70px rgba(245, 180, 0, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 180, 0, 0.15), rgba(245, 180, 0, 0.05));
    border: 2px solid rgba(245, 180, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: var(--gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-icon.gold {
    background: linear-gradient(135deg, rgba(245, 180, 0, 0.3), rgba(245, 180, 0, 0.1));
    box-shadow: 0 0 30px rgba(245, 180, 0, 0.3);
}

.prize-bond-card:hover .card-icon {
    transform: scale(1.15) rotate(10deg);
}

.card-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-payout {
    font-size: 32px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.card-payout.gold {
    color: var(--gold);
}

.card-desc {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-examples {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.example-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.example-item span:first-child {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
}

.example-item span:last-child {
    font-size: 14px;
    color: var(--gold);
    font-weight: 900;
}

.timer-display {
    font-size: 36px;
    font-weight: 900;
    color: var(--text);
    font-family: 'Courier New', monospace;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(245, 180, 0, 0.1), rgba(245, 180, 0, 0.05));
    border: 2px solid rgba(245, 180, 0, 0.3);
    border-radius: 16px;
    padding: 16px 24px;
    letter-spacing: 4px;
}

/* Stats Section */
.stats-section {
    padding: 20px 0 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, rgba(245, 180, 0, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(245, 180, 0, 0.2);
    border-radius: 24px;
    overflow: hidden;
}

.stat-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 32px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 180, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    background: rgba(245, 180, 0, 0.08);
    transform: translateY(-5px);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(245, 180, 0, 0.2), rgba(245, 180, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1.1;
    letter-spacing: -0.5px;
    transition: color 0.3s, transform 0.3s;
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* Section Title */
.section-title {
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 36px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Payment Section */
.payment-section {
    padding: 50px 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.payment-card {
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 180, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.payment-card:hover::before {
    opacity: 1;
}

.payment-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(245, 180, 0, 0.4);
    box-shadow: 0 20px 60px rgba(245, 180, 0, 0.2);
}

.payment-card.green {
    border-color: rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.payment-card.green:hover {
    border-color: rgba(16, 185, 129, 0.8);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.payment-card.red {
    border-color: rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.payment-card.red:hover {
    border-color: rgba(239, 68, 68, 0.8);
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.payment-card.blue {
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.payment-card.blue:hover {
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.payment-card.gold {
    border-color: rgba(245, 180, 0, 0.4);
    background: linear-gradient(135deg, rgba(245, 180, 0, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.payment-card.gold:hover {
    border-color: rgba(245, 180, 0, 0.8);
    box-shadow: 0 20px 60px rgba(245, 180, 0, 0.3);
    background: linear-gradient(135deg, rgba(245, 180, 0, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.payment-icon {
    margin-bottom: 16px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 40px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.payment-card:hover .icon-circle {
    transform: scale(1.15) rotate(10deg);
}

.payment-card.green .icon-circle {
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.payment-card.red .icon-circle {
    color: #ef4444;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.payment-card.blue .icon-circle {
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.payment-card.gold .icon-circle {
    color: #f5b400;
    text-shadow: 0 0 20px rgba(245, 180, 0, 0.4);
}

.payment-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
    transition: transform 0.3s;
}

.payment-card:hover .payment-name {
    transform: scale(1.05);
}

.payment-card.green .payment-name {
    color: #10b981;
}

.payment-card.red .payment-name {
    color: #ef4444;
}

.payment-card.blue .payment-name {
    color: #3b82f6;
}

.payment-card.gold .payment-name {
    color: #f5b400;
}

.payment-desc {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Winners Section */
.winners-section {
    padding: 50px 0;
}

.winners-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: rgba(245, 180, 0, 0.2);
    border-color: var(--gold);
}

.winners-track {
    display: flex;
    gap: 16px;
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 0;
}

.winners-track::-webkit-scrollbar {
    display: none;
}

.winner-card {
    flex-shrink: 0;
    min-width: 220px;
    background: var(--glass);
    border: 2px solid rgba(245, 180, 0, 0.2);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.winner-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(245, 180, 0, 0.5);
    box-shadow: 0 20px 60px rgba(245, 180, 0, 0.2);
}

.winner-trophy-icon {
    font-size: 28px;
    margin-bottom: 8px;
    transition: transform 0.4s;
}

.winner-card:hover .winner-trophy-icon {
    transform: scale(1.3) rotate(15deg);
}

.winner-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.winner-card:hover .winner-name {
    color: var(--gold);
}

.winner-prize {
    font-size: 14px;
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 8px;
}

.winner-prize span {
    font-size: 18px;
}

.winner-time {
    font-size: 12px;
    color: var(--text-muted);
}

/* How It Works */
.how-it-works {
    padding: 50px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.step-card {
    position: relative;
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 180, 0, 0.3);
}

.step-number {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(245, 180, 0, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.step-icon {
    margin-bottom: 16px;
}

.icon-box {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(245, 180, 0, 0.15) 0%, rgba(245, 180, 0, 0.05) 100%);
    border: 2px solid rgba(245, 180, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 32px;
    color: var(--gold);
}

.step-title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.step-arrow {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--gold);
    z-index: 5;
}

.step-card.last .step-arrow {
    display: none;
}

/* Refer Section */
.refer-section {
    padding: 50px 0;
}

.refer-banner {
    background: linear-gradient(135deg, rgba(245, 180, 0, 0.15) 0%, rgba(245, 180, 0, 0.05) 100%);
    border: 2px solid rgba(245, 180, 0, 0.3);
    border-radius: 24px;
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.refer-banner:hover {
    border-color: rgba(245, 180, 0, 0.6);
    box-shadow: 0 20px 60px rgba(245, 180, 0, 0.2);
    transform: translateY(-5px);
}

.refer-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.refer-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #0a0f1c;
    box-shadow: 0 12px 40px rgba(245, 180, 0, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.refer-banner:hover .refer-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 50px rgba(245, 180, 0, 0.5);
}

.refer-text h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 6px;
    color: var(--gold);
}

.refer-text p {
    font-size: 15px;
    color: var(--text-muted);
}

.refer-link-box {
    flex-shrink: 0;
}

.refer-link-box label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.link-container {
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 8px;
}

.link-container input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 14px;
    padding: 10px 12px;
    outline: none;
    min-width: 280px;
}

.copy-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #0a0f1c;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: translateY(-2px);
}

/* Activity Section */
.activity-section {
    padding: 50px 0;
}

.activity-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr 1fr;
    gap: 20px;
}

.activity-card {
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
}

.activity-card.deposits {
    border-color: rgba(16, 185, 129, 0.25);
}

.activity-card.withdrawals {
    border-color: rgba(59, 130, 246, 0.25);
}

.card-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.activity-item:hover {
    background: rgba(245, 180, 0, 0.1);
    transform: translateX(5px);
}

.activity-item:hover .amount {
    transform: scale(1.1);
}

.activity-item .user-name {
    font-weight: 700;
}

.activity-item .amount {
    font-weight: 700;
    color: var(--gold);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-item .time {
    color: var(--text-muted);
    font-size: 12px;
    text-align: right;
}

/* Activity Cards */
.activity-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-card.deposits:hover {
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.activity-card.withdrawals:hover {
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.2);
}

/* Security Badge */
.security-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.03) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.security-badge:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    transform: translateY(-8px);
}

.security-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 36px;
    color: var(--accent-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.security-badge:hover .security-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.security-badge h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 24px;
}

.security-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
    background: rgba(245, 180, 0, 0.1);
    transform: translateY(-3px);
}

.feature:hover i {
    transform: scale(1.2) rotate(10deg);
}

.feature i {
    font-size: 20px;
    color: var(--gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature span {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(245, 180, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 180, 0, 0.1);
}

.faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gold);
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

/* Support Section */
.support-section {
    padding: 50px 0;
}

.support-content {
    text-align: center;
}

.support-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.support-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.support-btn:hover {
    transform: translateY(-8px) scale(1.05);
}

.support-btn i {
    font-size: 32px;
    margin-bottom: 4px;
}

.support-btn span {
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-btn small {
    font-size: 11px;
    opacity: 0.9;
}

.support-btn.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    border: 2px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.support-btn.whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.6);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.2);
}

.support-btn.telegram {
    background: rgba(0, 136, 204, 0.15);
    border: 2px solid rgba(0, 136, 204, 0.3);
    color: #0088cc;
}

.support-btn.telegram:hover {
    border-color: rgba(0, 136, 204, 0.6);
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.2);
}

.support-btn.livechat {
    background: rgba(245, 180, 0, 0.15);
    border: 2px solid rgba(245, 180, 0, 0.3);
    color: var(--gold);
}

.support-btn.livechat:hover {
    border-color: rgba(245, 180, 0, 0.6);
    box-shadow: 0 15px 40px rgba(245, 180, 0, 0.2);
}

.support-btn.email {
    background: rgba(139, 92, 246, 0.15);
    border: 2px solid rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
}

.support-btn.email:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.support-content h2 {
    font-size: 26px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.support-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.support-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.support-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 32px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    transition: all 0.3s ease;
    min-width: 150px;
}

.support-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.support-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.support-btn.livechat {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.support-btn.email {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.support-btn:hover {
    transform: translateY(-4px);
}

.support-btn i {
    font-size: 28px;
}

.support-btn span {
    font-size: 14px;
}

.support-btn small {
    font-size: 11px;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-text {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 20px;
    font-weight: 800;
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-features {
    display: flex;
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    font-size: 18px;
    color: var(--gold);
}

.feature-item > div {
    display: flex;
    flex-direction: column;
}

.feature-label {
    font-size: 12px;
    font-weight: 700;
}

.feature-desc {
    font-size: 11px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .step-arrow {
        display: none;
    }
    
    .activity-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .security-badge {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .hero-main-image {
        max-width: 100%;
    }

    .prize-bonds-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .refer-banner {
        flex-direction: column;
        text-align: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        flex-direction: column;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-features {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .stat-item {
        padding: 24px 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}
