/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

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

html {
    scroll-behavior: smooth;
    background: #0a0a0a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.main-content {
    background: #0a0a0a;
    min-height: 100vh;
}

/* Ensure all sections have dark background to prevent white flash */
section {
    background-color: transparent;
    position: relative;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
}

.logo:hover {
    transform: scale(1.08);
}

.logo img {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.6));
    animation: logoLightning 4s ease-in-out infinite;
}

@keyframes logoLightning {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.6))
                drop-shadow(0 0 25px rgba(255, 140, 0, 0.4));
    }
    10% {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1))
                drop-shadow(0 0 50px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 75px rgba(255, 140, 0, 0.6));
    }
    15% {
        filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.6))
                drop-shadow(0 0 25px rgba(255, 140, 0, 0.4));
    }
    25% {
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1))
                drop-shadow(0 0 60px rgba(255, 215, 0, 0.9))
                drop-shadow(0 0 90px rgba(255, 140, 0, 0.7));
    }
    30% {
        filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.6))
                drop-shadow(0 0 25px rgba(255, 140, 0, 0.4));
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #ff8c00;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff8c00, #ffd700);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn:active {
    transform: scale(0.95);
}

.btn-outline {
    background: transparent;
    color: #ff8c00;
    border: 2px solid #ff8c00;
}

.btn-outline:hover {
    background: #ff8c00;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.6);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.5);
}

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

.btn-glow {
    animation: glow 3s ease-in-out infinite;
}

.btn-hover-fill {
    position: relative;
    z-index: 1;
}

.btn-card {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.btn-mega {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.4);
}

.btn-mega:hover {
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14rem 5rem 5rem;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 140, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(1px);
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

/* Hero Title - Left Aligned with Different Fonts */
.hero-title {
    margin-bottom: 2.5rem;
    position: relative;
}

.hero-prefix {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff8c00;
    margin-bottom: 1rem;
    margin-top: 2rem;
    padding-top: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease;
}

.hero-main {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.85;
    background: linear-gradient(135deg, #ff8c00, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    display: inline-block;
    animation: gradientShift 3s ease infinite, heroScale 0.8s ease;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
    position: relative;
    text-transform: uppercase;
}

.hero-subtitle {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 1rem;
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes heroScale {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.highlight {
    color: #ffd700;
    font-weight: 700;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.stat {
    text-align: center;
    transition: all 0.3s ease;
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
}

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

.stat-icon i {
    font-size: 1.5rem;
    color: #000;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
}

.stat-label {
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-elements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.float-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.float-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.float-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.4);
    border-color: #ff8c00;
}

.float-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.float-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.float-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.float-card p {
    color: #888;
    font-size: 0.85rem;
}

/* Floating animations */
.card-1 {
    animation: float1 4s ease-in-out infinite;
}

.card-2 {
    animation: float2 5s ease-in-out infinite;
}

.card-3 {
    animation: float3 4.5s ease-in-out infinite;
}

.card-4 {
    animation: float4 5.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(3deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(-3deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #ff8c00;
    border-radius: 20px;
    margin: 0 auto 1rem;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: #ff8c00;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

.scroll-indicator p {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Countdown Section */
.countdown-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, transparent 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.active .section-header {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #888;
}

.countdown-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 30px;
    padding: 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glow-card {
    box-shadow: 0 0 60px rgba(255, 140, 0, 0.2);
}

.glow-card:hover {
    box-shadow: 0 0 80px rgba(255, 140, 0, 0.4);
}

/* Prize Showcase */
.prize-showcase {
    margin-bottom: 3rem;
}

.prize-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pulse 3s ease-in-out infinite;
}

.prize-icon i {
    font-size: 3rem;
    color: #000;
}

/* GTR 3D Neon Effect */
.gtr-image-3d {
    perspective: 1500px;
    margin: 0 auto 2rem;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gtr-car {
    width: 100%;
    max-width: 500px;
    height: auto;
    transform: translateZ(80px) rotateX(5deg);
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.9))
            drop-shadow(0 0 60px rgba(255, 140, 0, 0.6))
            drop-shadow(0 0 90px rgba(255, 140, 0, 0.4))
            drop-shadow(0 10px 40px rgba(0, 0, 0, 0.8));
    animation: gtrFloat 4s ease-in-out infinite, gtrGlow 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.gtr-car:hover {
    transform: translateZ(120px) rotateX(8deg) scale(1.05);
    filter: drop-shadow(0 0 40px rgba(255, 140, 0, 1))
            drop-shadow(0 0 80px rgba(255, 140, 0, 0.8))
            drop-shadow(0 0 120px rgba(255, 140, 0, 0.6))
            drop-shadow(0 15px 50px rgba(0, 0, 0, 0.9));
}

@keyframes gtrFloat {
    0%, 100% {
        transform: translateZ(80px) rotateX(5deg) translateY(0);
    }
    50% {
        transform: translateZ(100px) rotateX(7deg) translateY(-20px);
    }
}

@keyframes gtrGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.9))
                drop-shadow(0 0 60px rgba(255, 140, 0, 0.6))
                drop-shadow(0 0 90px rgba(255, 140, 0, 0.4))
                drop-shadow(0 10px 40px rgba(0, 0, 0, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(255, 215, 0, 1))
                drop-shadow(0 0 100px rgba(255, 140, 0, 0.8))
                drop-shadow(0 0 150px rgba(255, 140, 0, 0.6))
                drop-shadow(0 10px 40px rgba(0, 0, 0, 0.8));
    }
}

.prize-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.prize-value {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.time-unit {
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid #ff8c00;
    border-radius: 20px;
    padding: 1.5rem;
    min-width: 120px;
    transition: all 0.3s ease;
}

.time-unit:hover {
    transform: scale(1.1);
    background: rgba(255, 140, 0, 0.2);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.time-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff8c00;
    transition: all 0.2s ease;
}

.time-label {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* Entry Info */
.entry-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-badge.premium {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(255, 215, 0, 0.2));
    border: 2px solid #ffd700;
    color: #ffd700;
}

.info-badge.free {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 140, 0, 0.5);
    color: #ff8c00;
}

.info-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.info-badge i {
    font-size: 1.2rem;
}

/* Giveaway Split Section */
.giveaway-split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Left Side - Information */
.giveaway-info-side {
    padding: 2rem;
}

.explosion-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff0000, #ff6600);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
    margin-bottom: 1.5rem;
}

.explosion-badge i {
    animation: bolt-flash 1.5s ease-in-out infinite;
}

@keyframes bolt-flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.giveaway-info-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text-gold {
    background: linear-gradient(135deg, #ffd700, #ff8c00, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.giveaway-info-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.giveaway-features {
    display: grid;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #000;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.giveaway-stats-mini {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 15px;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-mini-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-mini-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Side - Current Prize */
.giveaway-countdown-side {
    padding: 2rem;
}

.current-prize-card {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 215, 0, 0.05));
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 140, 0, 0.5);
    border-radius: 25px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 0 60px rgba(255, 140, 0, 0.3);
}

.prize-badge-floating {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
    z-index: 10;
}

.gtr-image-compact {
    text-align: center;
    margin: 1.5rem 0;
}

.gtr-car-compact {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.8));
}

.prize-name {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.prize-value-compact {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    margin-bottom: 1.5rem;
}

.countdown-compact {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.countdown-label {
    text-align: center;
    color: #ffd700;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(255, 215, 0, 0.1));
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 140, 0, 0.5);
    min-width: 70px;
}

.time-num {
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    line-height: 1;
}

.time-lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

.time-sep {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff8c00;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.entry-methods-compact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.entry-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.entry-badge i {
    color: #ff8c00;
    font-size: 1.2rem;
}

.prize-cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-compact {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-compact {
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.5);
}

.btn-primary-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.7);
}

.btn-outline-compact {
    background: transparent;
    border: 2px solid #ff8c00;
    color: #ff8c00;
}

.btn-outline-compact:hover {
    background: rgba(255, 140, 0, 0.1);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 968px) {
    .giveaway-split-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .giveaway-info-side,
    .giveaway-countdown-side {
        padding: 1rem;
    }

    .giveaway-info-title {
        font-size: 2rem;
    }

    .giveaway-stats-mini {
        flex-direction: column;
        gap: 1rem;
    }

    .prize-cta-buttons {
        flex-direction: column;
    }

    .countdown-timer {
        gap: 0.3rem;
    }

    .time-box {
        min-width: 60px;
        padding: 0.6rem 0.8rem;
    }

    .time-num {
        font-size: 1.5rem;
    }
}

/* Interactive Flow Section - Split View */
.flow-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, transparent 100%);
}

.flow-split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Left Side - Visual Flow */
.flow-visual-side {
    position: relative;
}

#flowCanvas {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.2),
                inset 0 0 60px rgba(255, 140, 0, 0.1);
}

#flowCanvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.flow-svg {
    width: 100%;
    height: auto;
    max-width: 600px;
}

.flow-step {
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.flow-step.active {
    opacity: 1;
    transform: scale(1.1);
}

.flow-step:hover {
    opacity: 1;
    transform: scale(1.05);
}

.flow-step circle {
    transition: all 0.3s ease;
}

.flow-step.active circle {
    filter: url(#glow) drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
}

.flow-path {
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

.flow-particle {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 1));
}

/* Right Side - Step Info */
.flow-info-side {
    padding: 2rem;
    position: relative;
}

.flow-step-info {
    display: none;
    animation: fadeInRight 0.6s ease;
}

.flow-step-info.active {
    display: block;
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.flow-step-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.flow-step-info h3 i {
    color: #ff8c00;
    font-size: 2.2rem;
}

.flow-step-info p {
    font-size: 1.15rem;
    color: #bbb;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.info-list {
    list-style: none;
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #ff8c00;
    border-radius: 12px;
    font-size: 1rem;
    color: #ddd;
    transition: all 0.3s ease;
}

.info-list li:hover {
    background: rgba(255, 140, 0, 0.1);
    transform: translateX(10px);
}

.info-list li i {
    color: #4ade80;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.info-list li strong {
    color: #ff8c00;
}

/* Navigation Dots */
.flow-nav-dots {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.3);
    border: 2px solid rgba(255, 140, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-dot:hover {
    background: rgba(255, 140, 0, 0.6);
    transform: scale(1.2);
}

.nav-dot.active {
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    border-color: #ffd700;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Flow Section */
@media (max-width: 968px) {
    .flow-split-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #flowCanvas {
        min-height: 600px;
    }

    .flow-step-info h3 {
        font-size: 1.8rem;
    }

    .flow-info-side {
        padding: 1rem;
    }
}

/* Games & Token Economy Section */
.games-token-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(255, 215, 0, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.games-token-container {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Games Overview - Left Side */
.games-overview h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-intro {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.game-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
}

.game-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.game-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Token Economy - Right Side */
.token-economy h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.token-plan-box {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.token-plan-box.paid-plan {
    border-color: rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
}

.token-plan-box.free-plan {
    border-color: rgba(255, 140, 0, 0.4);
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
    color: #000;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.plan-badge.free {
    background: linear-gradient(135deg, #666 0%, #999 100%);
    color: #fff;
}

.token-plan-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.token-benefits {
    list-style: none;
    padding: 0;
}

.token-benefits li {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ddd;
    line-height: 1.6;
}

.token-benefits li i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.token-benefits li strong {
    color: #fff;
}

.token-cta {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.token-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.token-highlight i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.token-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

/* Responsive */
@media (max-width: 968px) {
    .games-token-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

/* Games Section */
.games-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.03) 0%, transparent 100%);
}

.games-preview {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, transparent 60%);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.game-card:hover .card-glow {
    opacity: 1;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.game-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(255, 140, 0, 0.4);
    border-color: #ff8c00;
}

.game-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.game-card:hover .game-icon {
    transform: scale(1.1) rotate(10deg);
}

.game-icon i {
    font-size: 3rem;
    color: #000;
}

.card-premium .game-icon {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

.card-free .game-icon {
    background: linear-gradient(135deg, #666, #999);
    box-shadow: 0 0 40px rgba(255, 140, 0, 0.3);
}

.game-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.card-description {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Feature List */
.feature-list {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: #bbb;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    color: #fff;
    transform: translateX(10px);
}

.feature-list i {
    color: #4ade80;
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 2rem;
}

.benefits-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.hover-lift:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 140, 0, 0.4);
    border-color: #ff8c00;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

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

.benefit-icon i {
    font-size: 1.8rem;
    color: #000;
}

.benefit-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.benefit-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(255, 215, 0, 0.2));
    color: #ff8c00;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 140, 0, 0.5);
}

/* Partner Benefits Grid - Better 3-2-2 Layout */
.benefits-grid-partners {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
    padding: 0 1rem;
}

/* First row - 3 cards taking 2 columns each */
.benefits-grid-partners > .card-container:nth-child(1),
.benefits-grid-partners > .card-container:nth-child(2),
.benefits-grid-partners > .card-container:nth-child(3) {
    grid-column: span 2;
}

/* Second row - 2 cards centered, taking 2 columns each with 1 column gap on each side */
.benefits-grid-partners > .card-container:nth-child(4) {
    grid-column: 2 / 4;
}

.benefits-grid-partners > .card-container:nth-child(5) {
    grid-column: 4 / 6;
}

/* Third row - 2 cards centered, taking 2 columns each with 1 column gap on each side */
.benefits-grid-partners > .card-container:nth-child(6) {
    grid-column: 2 / 4;
}

.benefits-grid-partners > .card-container:nth-child(7) {
    grid-column: 4 / 6;
}

.benefit-partner-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 25px;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.benefit-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.benefit-partner-card:hover::before {
    opacity: 1;
}

.benefit-partner-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 140, 0, 0.4);
    border-color: #ff8c00;
}

.partner-logo-container {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), rgba(255, 215, 0, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.partner-logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.benefit-partner-card:hover .partner-logo-container::after {
    left: 100%;
}

.partner-logo {
    max-width: 85%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.benefit-partner-card:hover .partner-logo {
    transform: scale(1.08);
    filter: brightness(1.2) contrast(1.15);
}

.benefit-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.benefit-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(255, 215, 0, 0.2));
    color: #ff8c00;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(255, 140, 0, 0.4);
    margin-bottom: 1.2rem;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-category i {
    font-size: 1rem;
}

.benefit-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.benefit-content p {
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.benefit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: auto;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.feature-tag i {
    color: #4ade80;
    font-size: 0.75rem;
}

.benefit-partner-card:hover .feature-tag {
    background: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.4);
    color: #fff;
}

/* Responsive adjustments for partner cards */
@media (max-width: 1200px) {
    .benefits-grid-partners {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    /* Two cards per row on tablet */
    .benefits-grid-partners > .card-container {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .benefits-grid-partners {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }

    /* Single column on mobile */
    .benefits-grid-partners > .card-container {
        grid-column: 1 / -1;
    }
}

    .partner-logo-container {
        height: 160px;
    }

    .benefit-content {
        padding: 1.5rem;
    }
}

/* Stats Section */
.stats-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, transparent 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stats-container h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.stats-subtitle {
    font-size: 1.3rem;
    color: #888;
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 25px;
    padding: 3rem 2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.4);
    border-color: #ff8c00;
}

.stat-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.stat-box:hover .stat-icon-large {
    transform: scale(1.1) rotate(10deg);
}

.stat-icon-large i {
    font-size: 2.5rem;
    color: #000;
}

.count-up {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

/* CTA Center */
.cta-center {
    text-align: center;
    margin-top: 4rem;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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

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

/* Fade In Animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: backwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out;
    animation-fill-mode: backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Footer */
footer {
    background: rgba(10, 10, 10, 0.98);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 140, 0, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #ff8c00;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: #ff8c00;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.95rem;
}

/* Footer Brand Section */
.footer-brand {
    grid-column: 1 / 2;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.4));
}

.footer-brand h3 {
    color: #ff8c00;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
}

.footer-brand a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-brand a:hover {
    color: #ff8c00;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1rem;
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-main {
        font-size: 6rem;
    }

    .hero-content {
        gap: 4rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-main {
        font-size: 5rem;
    }

    .floating-elements {
        display: none;
    }

    .games-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 1.5rem 2.5rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-text,
    .hero-visual {
        max-width: 100%;
    }

    .hero-prefix {
        font-size: 1rem;
    }

    .hero-main {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat {
        min-width: calc(50% - 0.5rem);
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .prize-title {
        font-size: 2rem;
    }

    .countdown {
        gap: 1rem;
    }

    .time-unit {
        min-width: 80px;
        padding: 1rem;
    }

    .time-value {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-main {
        font-size: 3rem;
    }

    .hero-prefix, .hero-subtitle {
        font-size: 1rem;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .time-unit {
        min-width: 70px;
    }

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

/* ===================================
   VAULT PRELOADER STYLES
   =================================== */

/* Preloader Container */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    overflow: hidden;
}

.preloader.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
    pointer-events: none;
}

/* Vault Container - 3D Perspective Setup */
.vault-container {
    position: relative;
    width: 600px;
    height: 600px;
    perspective: 1200px;
    transform-style: preserve-3d;
}

/* Vault Wall Background - Realistic Metal */
.vault-wall {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 30%, #4a4a4a 0%, #2a2a2a 30%, #1a1a1a 60%, #0a0a0a 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        inset 0 0 150px rgba(0, 0, 0, 0.95),
        inset 20px 20px 60px rgba(0, 0, 0, 0.8),
        inset -20px -20px 60px rgba(255, 255, 255, 0.05),
        0 0 200px rgba(0, 0, 0, 0.7);
}

.vault-wall-inner {
    width: 85%;
    height: 85%;
    background:
        radial-gradient(circle at 25% 25%, #5a5a5a 0%, #3a3a3a 20%, #2a2a2a 50%, #151515 80%, #0a0a0a 100%);
    border-radius: 50%;
    box-shadow:
        inset 0 0 80px rgba(0, 0, 0, 0.95),
        inset 15px 15px 40px rgba(0, 0, 0, 0.8),
        inset -15px -15px 40px rgba(100, 100, 100, 0.1),
        0 0 50px rgba(255, 140, 0, 0.15);
    border: 3px solid rgba(255, 140, 0, 0.3);
}

/* Vault Door Wrapper */
.vault-door-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

/* Vault Door - Professional Metallic */
.vault-door {
    position: relative;
    width: 400px;
    height: 400px;
    background:
        radial-gradient(circle at 35% 35%, #6a6a6a 0%, #4a4a4a 25%, #3a3a3a 50%, #2a2a2a 75%, #1a1a1a 100%);
    border-radius: 50%;
    transform-style: preserve-3d;
    transform-origin: -20% center;
    box-shadow:
        inset 0 0 100px rgba(0, 0, 0, 0.9),
        inset 20px 20px 80px rgba(0, 0, 0, 0.7),
        inset -20px -20px 80px rgba(150, 150, 150, 0.15),
        0 20px 80px rgba(0, 0, 0, 0.95),
        0 0 150px rgba(255, 140, 0, 0.3),
        0 5px 25px rgba(0, 0, 0, 0.8);
    border: 4px solid rgba(100, 100, 100, 0.5);
}

/* Door Outer Ring - Polished Metal */
.door-outer-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border: 20px solid;
    border-image: linear-gradient(135deg,
        #ffb347 0%,
        #ff8c00 25%,
        #ffa500 50%,
        #ff6600 75%,
        #cc5200 100%) 1;
    border-radius: 50%;
    box-shadow:
        inset 0 0 40px rgba(255, 140, 0, 0.4),
        inset 5px 5px 20px rgba(0, 0, 0, 0.6),
        inset -5px -5px 20px rgba(255, 180, 70, 0.3),
        0 0 40px rgba(255, 140, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.7);
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.3));
}

/* Door Bolts */
.door-bolts {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bolt {
    position: absolute;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle at 30% 30%, #8a8a8a 0%, #5a5a5a 40%, #3a3a3a 70%, #2a2a2a 100%);
    border-radius: 50%;
    border: 4px solid #1a1a1a;
    box-shadow:
        inset 0 0 15px rgba(0, 0, 0, 0.9),
        inset 3px 3px 10px rgba(0, 0, 0, 0.8),
        inset -3px -3px 10px rgba(150, 150, 150, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(255, 140, 0, 0.2);
}

.bolt::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 2px;
    background: #0a0a0a;
}

.bolt::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 60%;
    height: 2px;
    background: #0a0a0a;
}

.bolt-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.bolt-2 {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.bolt-3 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.bolt-4 {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

/* Door Handle (Central Wheel) - Professional */
.door-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 30% 30%, #7a7a7a 0%, #5a5a5a 30%, #3a3a3a 60%, #2a2a2a 85%, #1a1a1a 100%);
    border-radius: 50%;
    border: 10px solid #ff8c00;
    box-shadow:
        inset 0 0 40px rgba(0, 0, 0, 0.95),
        inset 8px 8px 25px rgba(0, 0, 0, 0.8),
        inset -8px -8px 25px rgba(150, 150, 150, 0.2),
        0 0 50px rgba(255, 140, 0, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.9),
        0 0 80px rgba(255, 140, 0, 0.3);
}

.door-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: conic-gradient(
        from 0deg,
        #2a2a2a 0deg 30deg,
        #4a4a4a 30deg 60deg,
        #2a2a2a 60deg 90deg,
        #4a4a4a 90deg 120deg,
        #2a2a2a 120deg 150deg,
        #4a4a4a 150deg 180deg,
        #2a2a2a 180deg 210deg,
        #4a4a4a 210deg 240deg,
        #2a2a2a 240deg 270deg,
        #4a4a4a 270deg 300deg,
        #2a2a2a 300deg 330deg,
        #4a4a4a 330deg 360deg
    );
    border-radius: 50%;
}

/* Door Shine Effect */
.door-shine {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
}

/* Compass/Directional Markers */
.compass-markers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.compass-point {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    transform-origin: center;
}

.compass-point::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 60px;
    background: linear-gradient(180deg, #ff8c00 0%, #ffa500 50%, #ff6600 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    left: -20px;
    top: 0;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.6));
}

.compass-top {
    top: -5%;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
}

.compass-right {
    top: 50%;
    right: -5%;
    transform: translateY(-50%) rotate(90deg);
}

.compass-bottom {
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
}

.compass-left {
    top: 50%;
    left: -5%;
    transform: translateY(-50%) rotate(270deg);
}

/* Lightning Bolt Effect (Center) */
.lightning-bolt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 80px;
    opacity: 0;
    z-index: 5;
}

.lightning-bolt::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 10px solid transparent;
    border-top: 50px solid #ffeb3b;
    transform: rotate(20deg);
    filter: drop-shadow(0 0 15px #ffeb3b);
}

.lightning-bolt::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid #ffeb3b;
    transform: rotate(20deg);
    top: 25px;
    left: -5px;
    filter: drop-shadow(0 0 15px #ffeb3b);
}

/* Preloader Logo */
.preloader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 0;
    width: 200px;
    height: auto;
}

.preloader-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.8));
}

/* Vault Glow Effect */
.vault-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

/* Main Content Hidden State */
.main-content {
    opacity: 0;
    transition: opacity 0.8s ease-in;
}

.main-content.visible {
    opacity: 1;
}

/* Performance Optimizations */
.vault-door,
.vault-door-wrapper,
.vault-glow,
.preloader-logo {
    will-change: transform, opacity;
}

/* Animation Active State - Remove will-change after animation */
.animation-complete .vault-door,
.animation-complete .vault-door-wrapper,
.animation-complete .vault-glow,
.animation-complete .preloader-logo {
    will-change: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vault-container {
        width: 90vw;
        height: 90vw;
        max-width: 400px;
        max-height: 400px;
    }

    .vault-door {
        width: 70vw;
        height: 70vw;
        max-width: 280px;
        max-height: 280px;
    }

    .door-handle {
        width: 80px;
        height: 80px;
    }

    .bolt {
        width: 20px;
        height: 20px;
    }

    .preloader-logo {
        width: 150px;
    }

    .vault-glow {
        width: 80vw;
        height: 80vw;
        max-width: 350px;
        max-height: 350px;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .preloader,
    .vault-door,
    .vault-glow,
    .preloader-logo,
    .main-content {
        animation: none !important;
        transition: opacity 0.3s ease !important;
    }

    .vault-door {
        transform: none !important;
    }

    .preloader {
        display: flex;
        opacity: 1;
    }

    .preloader-logo {
        opacity: 1;
    }
}

/* ==========================================
   THREE.JS 3D VAULT STYLES
   ========================================== */

/* 3D Vault Container - Fullscreen */
.vault-container-3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 10000;
    pointer-events: none;
}

.vault-container-3d canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Logo Overlay for 3D Vault - Hidden (logo is on door now) */
.preloader-logo-3d {
    display: none;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.8))
                drop-shadow(0 0 60px rgba(255, 140, 0, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 140, 0, 1))
                drop-shadow(0 0 80px rgba(255, 140, 0, 0.6));
    }
}

/* Responsive adjustments for 3D vault */
@media (max-width: 768px) {
    /* Hide vault preloader on mobile for better performance and UX */
    .preloader,
    #preloader {
        display: none !important;
    }

    .vault-container-3d {
        display: none !important;
    }

    .preloader-logo-3d {
        display: none !important;
    }

    /* Show main content immediately on mobile */
    .main-content,
    #main-content {
        opacity: 1 !important;
    }

    /* Remove all fade-in animations on mobile - no second loading */
    .fade-in-up,
    .fade-in-right,
    .fade-in-down,
    .fade-in-left {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-text,
    .hero-visual {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem 2rem;
    }

    .hero-prefix {
        font-size: 0.9rem;
    }

    .hero-main {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .stat {
        min-width: 100%;
    }

    /* Vault preloader already hidden on mobile from 768px media query */
    .vault-container-3d {
        display: none !important;
    }

    .preloader-logo-3d {
        display: none !important;
    }

    .logo img {
        height: 60px;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .neon-video-tile {
        width: 100%;
        height: 220px;
    }
}

/* ==========================================
   NEON VIDEO TILE
   ========================================== */

.neon-video-tile {
    position: relative;
    width: 600px;
    height: 340px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.neon-video-tile:hover {
    transform: scale(1.05) !important;
}

.neon-video-tile video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.neon-border {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 15px;
    background: linear-gradient(90deg,
        #ff8c00 0%,
        #ffd700 25%,
        #ff8c00 50%,
        #ffd700 75%,
        #ff8c00 100%);
    background-size: 400% 400%;
    animation: neon-run 2s linear infinite;
    z-index: -1;
    pointer-events: none;
    padding: 4px;
    box-shadow:
        0 0 20px rgba(255, 140, 0, 0.6),
        0 0 40px rgba(255, 140, 0, 0.3),
        inset 0 0 20px rgba(255, 140, 0, 0.2);
}

.neon-border::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #000;
    border-radius: 12px;
    z-index: -1;
}

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

@keyframes neon-run {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 400% 0%;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    animation: scaleIn 0.3s ease;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 140, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff8c00;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .neon-video-tile {
        width: 100%;
        max-width: 500px;
        height: 280px;
    }

    .close-modal {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet and below - 968px */
@media (max-width: 968px) {
    /* Navigation - Mobile Menu */
    nav {
        padding: 1rem;
    }

    .nav-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .nav-links {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
        background: rgba(0, 0, 0, 0.95);
        border-radius: 15px;
        padding: 1rem;
    }

    .nav-links li {
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem;
    }

    .auth-buttons {
        gap: 0.5rem;
    }

    /* Hero Section */
    .hero {
        min-height: 60vh;
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Giveaway Section */
    .giveaway-split-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gtr-image-container {
        height: 250px;
    }

    .countdown-container {
        gap: 0.5rem;
    }

    .countdown-box {
        min-width: 65px;
        padding: 0.8rem 0.5rem;
    }

    /* Flow Section - Replace 3D with mobile version */
    .flow-split-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #flowCanvas {
        display: none !important;
    }

    .flow-visual-side {
        display: none;
    }

    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Tablet view for NPO grid - 2 columns */
@media (max-width: 1024px) and (min-width: 769px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Games & Token Economy */
    .games-token-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    /* Typography Adjustments */
    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.7rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    /* Section Spacing */
    section {
        padding: 2.5rem 1rem !important;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content .subtitle {
        font-size: 0.9rem;
    }

    /* Countdown */
    .countdown-box {
        min-width: 60px;
        padding: 0.6rem 0.4rem;
    }

    .countdown-number {
        font-size: 1.4rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    /* GTR Image */
    .gtr-image-container {
        height: 200px;
    }

    /* Partner/Benefit Cards */
    .benefit-partner-card {
        padding: 1.5rem;
    }

    .partner-logo-container {
        height: 100px;
    }

    .benefit-content h3 {
        font-size: 1.1rem;
    }

    .benefit-content p {
        font-size: 0.85rem;
    }

    .benefit-features {
        gap: 0.4rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    /* Games */
    .games-grid {
        grid-template-columns: 1fr;
    }

    .game-card {
        padding: 1.5rem;
    }

    .game-icon {
        font-size: 2.5rem;
    }

    /* Token Economy */
    .token-plan-box {
        padding: 1.5rem;
    }

    .token-plan-box h4 {
        font-size: 1.2rem;
    }

    .token-benefits li {
        font-size: 0.85rem;
    }

    .plan-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    /* Flow Step Info */
    .flow-step-info {
        padding: 1.5rem;
    }

    .flow-step-info h3 {
        font-size: 1.3rem;
    }

    .flow-step-info p {
        font-size: 0.9rem;
    }

    /* Navigation Dots */
    .nav-dots {
        gap: 0.4rem;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }

    /* Stats */
    .stat-box {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-icon-large i {
        font-size: 2.5rem;
    }

    /* Buttons */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .btn-mega {
        padding: 1.1rem 2.2rem;
        font-size: 1.05rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    /* Hero */
    .hero {
        padding: 2rem 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content .subtitle {
        font-size: 0.85rem;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.4rem;
    }

    .section-header p {
        font-size: 0.85rem;
    }

    /* Countdown */
    .countdown-container {
        gap: 0.3rem;
    }

    .countdown-box {
        min-width: 55px;
        padding: 0.5rem 0.3rem;
    }

    .countdown-number {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    /* GTR Image */
    .gtr-image-container {
        height: 150px;
    }

    /* Game Cards */
    .game-icon {
        font-size: 2rem;
    }

    .game-card h4 {
        font-size: 1rem;
    }

    .game-card p {
        font-size: 0.8rem;
    }

    /* Token */
    .plan-badge {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }

    .token-plan-box h4 {
        font-size: 1.1rem;
    }

    .token-benefits li {
        font-size: 0.8rem;
    }

    .token-highlight {
        flex-direction: column;
        text-align: center;
        font-size: 0.85rem;
    }

    /* Stats */
    .stat-number {
        font-size: 1.6rem;
    }

    .stat-icon-large i {
        font-size: 2rem;
    }

    /* Buttons */
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .btn-large, .btn-mega {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    /* Logo */
    .logo img {
        height: 35px;
    }

    /* Auth Buttons in Nav */
    .auth-buttons .btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
}

/* Desktop/Mobile Visibility Toggles */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 968px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

/* Mobile Flow Diagram Styles */
.mobile-flow-diagram {
    display: none; /* Hidden by default on desktop */
}

@media (max-width: 968px) {
    .mobile-flow-diagram {
        display: grid;
        gap: 1.5rem;
        padding: 1rem;
        max-width: 600px;
        margin: 0 auto;
    }
}

.mobile-flow-step {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 140, 0, 0.4);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.15);
}

.mobile-flow-step:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.25);
}

.mobile-flow-step::after {
    content: "↓";
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #ff8c00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    animation: bounce 2s ease-in-out infinite;
}

.mobile-flow-step:last-child::after {
    display: none;
}

.mobile-flow-step .step-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.6));
    animation: float 3s ease-in-out infinite;
}

.mobile-flow-step .step-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-flow-step .step-desc {
    font-size: 0.95rem;
    color: #aaa;
    font-weight: 400;
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@media (max-width: 480px) {
    .mobile-flow-step {
        padding: 1.5rem 1rem;
    }

    .mobile-flow-step .step-icon {
        font-size: 2.8rem;
    }

    .mobile-flow-step .step-label {
        font-size: 1rem;
    }

    .mobile-flow-step .step-desc {
        font-size: 0.85rem;
    }

    .mobile-flow-step::after {
        font-size: 2rem;
        bottom: -1.5rem;
    }

    .mobile-flow-diagram {
        gap: 1rem;
    }
}

/* ========================================
   BENEFIT REDEMPTION FLOW SECTION
   ======================================== */

.benefit-redemption-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.03) 0%, rgba(255, 215, 0, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.redemption-flow-container {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Side: Visual Flow Cards */
.redemption-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.redemption-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.redemption-card:hover {
    transform: translateX(10px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
}

.redemption-card .card-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 140, 0, 0.15);
    line-height: 1;
}

.redemption-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
}

.redemption-card .card-icon i {
    font-size: 2.5rem;
    color: #000;
}

.redemption-card h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.redemption-card p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
}

.redemption-card .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.redemption-card:hover .card-glow {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

.flow-arrow {
    text-align: center;
    color: #ff8c00;
    font-size: 2.5rem;
    margin: 0.5rem 0;
    animation: bounce-vertical 2s ease-in-out infinite;
}

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

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

/* Right Side: Info Boxes */
.redemption-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.info-box.highlighted {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.info-box .info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-box .info-icon i {
    font-size: 1.8rem;
    color: #ffd700;
}

.info-box h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-box p {
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.info-box p strong {
    color: #ffd700;
    font-weight: 600;
}

.redemption-info .btn {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .redemption-flow-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .redemption-card {
        padding: 2rem;
    }

    .redemption-card .card-icon {
        width: 70px;
        height: 70px;
    }

    .redemption-card .card-icon i {
        font-size: 2rem;
    }

    .redemption-card h3 {
        font-size: 1.4rem;
    }

    .flow-arrow {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .benefit-redemption-section {
        padding: 3rem 1rem;
    }

    .redemption-card {
        padding: 1.5rem;
    }

    .redemption-card .card-number {
        font-size: 3rem;
        top: 0.5rem;
        right: 1rem;
    }

    .redemption-card .card-icon {
        width: 60px;
        height: 60px;
    }

    .redemption-card .card-icon i {
        font-size: 1.6rem;
    }

    .redemption-card h3 {
        font-size: 1.2rem;
    }

    .redemption-card p {
        font-size: 0.9rem;
    }

    .info-box {
        padding: 1.5rem;
    }

    .info-box h3 {
        font-size: 1.2rem;
    }

    .info-box p {
        font-size: 0.9rem;
    }
}

/* ==========================================
   PREMIUM PARTNERS SECTION - BENEFITS PAGE
   ========================================== */

.premium-partners-section {
    padding: 5rem 2rem;
}

.premium-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.premium-benefit-card {
    position: relative;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ffd700);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 140, 0, 0.6);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.3);
}

.premium-benefit-card:hover::before {
    opacity: 1;
}

.premium-benefit-card.featured {
    border-color: rgba(255, 215, 0, 0.5);
    background: linear-gradient(145deg, rgba(30, 25, 10, 0.95), rgba(20, 15, 5, 0.95));
}

.premium-benefit-card.featured::before {
    opacity: 1;
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(255, 215, 0, 0.2));
    border: 1px solid rgba(255, 140, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffd700;
}

.benefit-badge i {
    font-size: 1rem;
}

.partner-logo-container {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.partner-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.premium-benefit-card:hover .partner-logo-container img {
    transform: scale(1.1);
}

.logo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.premium-benefit-card:hover .logo-shine {
    left: 150%;
}

.benefit-content h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-content p {
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.benefit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #ff8c00;
}

.feature-tag i {
    color: #ffd700;
    font-size: 0.7rem;
}

.member-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 10px;
    margin-top: 1.5rem;
}

.member-value-label {
    font-size: 0.9rem;
    color: #bbb;
}

.member-value-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700;
}

.premium-cta-section {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(255, 140, 0, 0.05), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 20px;
}

.premium-cta-section h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.premium-cta-section p {
    color: #bbb;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-cta {
    text-align: center;
    margin-top: 4rem;
}

.partners-cta .cta-text {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* ==========================================
   GIVEAWAY PAGE PREMIUM EFFECTS
   ========================================== */

.giveaway-hero {
    position: relative;
    overflow: hidden;
}

.giveaway-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.15), transparent 50%),
                radial-gradient(ellipse at bottom, rgba(255, 140, 0, 0.15), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Floating Prize Elements */
.floating-prizes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.prize-float {
    position: absolute;
    font-size: 2rem;
    opacity: 0.4;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.prize-float i {
    display: block;
    filter: drop-shadow(0 0 10px currentColor);
}

/* Diamonds - Glowing effect */
.diamond-1, .diamond-2, .diamond-3 {
    color: #00d4ff;
    animation: floatDiamond 8s infinite;
}

.diamond-1 {
    top: 10%;
    left: 5%;
    font-size: 3rem;
    animation-delay: 0s;
    animation: floatDiamond 8s infinite, glowPulse 2s infinite;
}

.diamond-2 {
    top: 60%;
    right: 10%;
    font-size: 2.5rem;
    animation-delay: 2s;
    animation: floatDiamond 10s infinite, glowPulse 2.5s infinite;
}

.diamond-3 {
    top: 30%;
    right: 5%;
    font-size: 2rem;
    animation-delay: 4s;
    animation: floatDiamond 12s infinite, glowPulse 3s infinite;
}

/* Cash - Falling and floating */
.cash-1, .cash-2, .cash-3 {
    color: #00ff00;
}

.cash-1 {
    top: 5%;
    left: 15%;
    font-size: 2.5rem;
    animation: floatCash 10s infinite;
    animation-delay: 1s;
}

.cash-2 {
    top: 50%;
    left: 8%;
    font-size: 2rem;
    animation: floatCash 12s infinite;
    animation-delay: 3s;
}

.cash-3 {
    top: 75%;
    right: 15%;
    font-size: 2.2rem;
    animation: floatCash 9s infinite;
    animation-delay: 5s;
}

/* Trophies - Golden glow */
.trophy-1, .trophy-2 {
    color: #ffd700;
    animation: floatTrophy 7s infinite, goldGlow 2s infinite;
}

.trophy-1 {
    top: 20%;
    left: 80%;
    font-size: 3rem;
    animation-delay: 0.5s;
}

.trophy-2 {
    top: 70%;
    left: 5%;
    font-size: 2.5rem;
    animation-delay: 3.5s;
}

/* Car */
.car-1 {
    top: 40%;
    left: 85%;
    font-size: 3.5rem;
    color: #ff6600;
    animation: floatCar 15s infinite;
    animation-delay: 2s;
}

/* Gifts */
.gift-1, .gift-2 {
    color: #ff1493;
}

.gift-1 {
    top: 15%;
    left: 70%;
    font-size: 2rem;
    animation: floatGift 8s infinite;
    animation-delay: 1.5s;
}

.gift-2 {
    top: 85%;
    left: 20%;
    font-size: 2.5rem;
    animation: floatGift 10s infinite;
    animation-delay: 4s;
}

/* Stars - Twinkling */
.star-1, .star-2, .star-3 {
    color: #fff;
    animation: floatStar 6s infinite, twinkle 1.5s infinite;
}

.star-1 {
    top: 8%;
    left: 40%;
    font-size: 1.5rem;
    animation-delay: 0s;
}

.star-2 {
    top: 45%;
    left: 25%;
    font-size: 1.8rem;
    animation-delay: 2s;
}

.star-3 {
    top: 65%;
    right: 30%;
    font-size: 1.6rem;
    animation-delay: 4s;
}

/* Animations */
@keyframes floatDiamond {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(-60px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

@keyframes floatCash {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-100px) translateX(30px) rotate(180deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
        opacity: 0.4;
    }
}

@keyframes floatTrophy {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-50px) scale(1.1);
    }
}

@keyframes floatCar {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-50px) translateY(-30px);
    }
}

@keyframes floatGift {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-40px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translateY(-80px) rotate(240deg) scale(0.9);
    }
}

@keyframes floatStar {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-40px) scale(1.3);
    }
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px currentColor);
        opacity: 0.4;
    }
    50% {
        filter: drop-shadow(0 0 30px currentColor) drop-shadow(0 0 60px currentColor);
        opacity: 0.8;
    }
}

@keyframes goldGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px #ffd700);
    }
    50% {
        filter: drop-shadow(0 0 30px #ffd700) drop-shadow(0 0 50px #ff8c00);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* Enhanced stat icons with glow */
.giveaway-hero .stat-icon {
    animation: iconGlow 3s infinite;
}

@keyframes iconGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 140, 0, 0.4);
    }
}

/* GTR Image in Giveaway Showcase */
.gtr-image-showcase {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.gtr-car-main {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(255, 140, 0, 0.5));
    animation: carGlow 3s ease-in-out infinite;
}

@keyframes carGlow {
    0%, 100% {
        filter: drop-shadow(0 20px 50px rgba(255, 140, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 25px 60px rgba(255, 215, 0, 0.7));
    }
}

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

/* Mobile - Reduce floating elements */
@media (max-width: 968px) {
    .prize-float {
        font-size: 1.5rem;
    }

    .diamond-1, .trophy-1, .car-1 {
        font-size: 2rem;
    }

    /* Hide some elements on mobile for performance */
    .cash-3, .gift-2, .star-3, .diamond-3 {
        display: none;
    }

    .gtr-image-showcase {
        max-width: 100%;
    }
}

/* ==========================================
   GAMES PAGE GAMIFICATION EFFECTS
   ========================================== */

.games-hero {
    position: relative;
    overflow: hidden;
}

.games-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(138, 43, 226, 0.15), transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(75, 0, 130, 0.15), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Floating Game Elements */
.floating-games {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.game-float {
    position: absolute;
    font-size: 2rem;
    opacity: 0.4;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.game-float i {
    display: block;
    filter: drop-shadow(0 0 10px currentColor);
}

/* Dice - Rolling effect */
.dice-1, .dice-2, .dice-3 {
    color: #ff1493;
    animation: rollDice 6s infinite;
}

.dice-1 {
    top: 15%;
    left: 10%;
    font-size: 3rem;
    animation-delay: 0s;
}

.dice-2 {
    top: 70%;
    right: 8%;
    font-size: 2.5rem;
    animation-delay: 2s;
}

.dice-3 {
    top: 40%;
    left: 5%;
    font-size: 2rem;
    animation-delay: 4s;
}

/* Game Controllers - Pulse and float */
.controller-1, .controller-2 {
    color: #8a2be2;
    animation: floatController 8s infinite, controllerPulse 2s infinite;
}

.controller-1 {
    top: 20%;
    right: 15%;
    font-size: 3.5rem;
    animation-delay: 1s;
}

.controller-2 {
    top: 65%;
    left: 12%;
    font-size: 3rem;
    animation-delay: 3s;
}

/* Coins - Spinning gold */
.coin-1, .coin-2, .coin-3 {
    color: #ffd700;
    animation: spinCoin 4s infinite, coinGlow 2s infinite;
}

.coin-1 {
    top: 8%;
    left: 35%;
    font-size: 2.5rem;
    animation-delay: 0s;
}

.coin-2 {
    top: 50%;
    right: 20%;
    font-size: 2rem;
    animation-delay: 1.5s;
}

.coin-3 {
    top: 80%;
    left: 25%;
    font-size: 2.2rem;
    animation-delay: 3s;
}

/* Tokens - Orange glow */
.token-1, .token-2, .token-3 {
    color: #ff8c00;
    animation: floatToken 5s infinite, tokenPulse 1.5s infinite;
}

.token-1 {
    top: 25%;
    left: 75%;
    font-size: 1.8rem;
    animation-delay: 0.5s;
}

.token-2 {
    top: 55%;
    right: 5%;
    font-size: 2rem;
    animation-delay: 2s;
}

.token-3 {
    top: 85%;
    right: 25%;
    font-size: 1.6rem;
    animation-delay: 3.5s;
}

/* Puzzle Pieces - Rotate */
.puzzle-1, .puzzle-2 {
    color: #00bfff;
    animation: floatPuzzle 7s infinite;
}

.puzzle-1 {
    top: 12%;
    left: 60%;
    font-size: 2.5rem;
    animation-delay: 1s;
}

.puzzle-2 {
    top: 75%;
    left: 50%;
    font-size: 2rem;
    animation-delay: 3.5s;
}

/* Stars - Twinkling */
.star-game-1, .star-game-2 {
    color: #fff;
    animation: floatStar 6s infinite, twinkle 1.5s infinite;
}

.star-game-1 {
    top: 5%;
    left: 45%;
    font-size: 1.5rem;
    animation-delay: 0s;
}

.star-game-2 {
    top: 60%;
    left: 80%;
    font-size: 1.8rem;
    animation-delay: 3s;
}

/* Game Animations */
@keyframes rollDice {
    0%, 100% {
        transform: rotate(0deg) translateY(0);
    }
    25% {
        transform: rotate(90deg) translateY(-30px);
    }
    50% {
        transform: rotate(180deg) translateY(-60px);
    }
    75% {
        transform: rotate(270deg) translateY(-30px);
    }
}

@keyframes floatController {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-40px) translateX(20px);
    }
}

@keyframes controllerPulse {
    0%, 100% {
        filter: drop-shadow(0 0 15px currentColor);
        opacity: 0.4;
    }
    50% {
        filter: drop-shadow(0 0 30px currentColor);
        opacity: 0.7;
    }
}

@keyframes spinCoin {
    0% {
        transform: rotateY(0deg) translateY(0);
    }
    50% {
        transform: rotateY(180deg) translateY(-30px);
    }
    100% {
        transform: rotateY(360deg) translateY(0);
    }
}

@keyframes coinGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px #ffd700);
    }
    50% {
        filter: drop-shadow(0 0 30px #ffd700) drop-shadow(0 0 50px #ff8c00);
    }
}

@keyframes floatToken {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-50px) scale(1.2);
    }
}

@keyframes tokenPulse {
    0%, 100% {
        opacity: 0.3;
        filter: drop-shadow(0 0 10px currentColor);
    }
    50% {
        opacity: 0.7;
        filter: drop-shadow(0 0 25px currentColor);
    }
}

@keyframes floatPuzzle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-40px) rotate(120deg);
    }
    66% {
        transform: translateY(-80px) rotate(240deg);
    }
}

/* Enhanced stat icons with game glow */
.games-hero .stat-icon {
    animation: gameIconGlow 3s infinite;
}

@keyframes gameIconGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(138, 43, 226, 0.6), 0 0 60px rgba(75, 0, 130, 0.4);
    }
}

/* Mobile - Reduce floating elements */
@media (max-width: 968px) {
    .game-float {
        font-size: 1.5rem;
    }

    .controller-1, .dice-1 {
        font-size: 2rem;
    }

    /* Hide some elements on mobile for performance */
    .dice-3, .coin-3, .token-3, .puzzle-2, .star-game-2 {
        display: none;
    }
}

/* ==========================================
   BENEFITS PAGE THEMED EFFECTS
   ========================================== */

.benefits-hero {
    position: relative;
    overflow: hidden;
}

.benefits-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(0, 191, 255, 0.15), transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(255, 140, 0, 0.15), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Floating Benefit Elements */
.floating-benefits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.benefit-logo-float {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: visible;
    opacity: 0.4;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    padding: 5px;
    background: rgba(0, 0, 0, 0.3);
}

/* Logo 1 - Africa Life - Neon Green Glow */
.logo-1 {
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8), 0 0 50px rgba(0, 255, 0, 0.5), 0 0 70px rgba(0, 255, 0, 0.3);
    border: 2px solid rgba(0, 255, 0, 0.6);
}

/* Logo 2 - Pani (was Crypto Cartel) - Neon Blue Glow */
.logo-2 {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8), 0 0 50px rgba(0, 212, 255, 0.5), 0 0 70px rgba(0, 212, 255, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.6);
}

/* Logo 3 - L&L Financial - White Glow */
.logo-3 {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 50px rgba(255, 255, 255, 0.5), 0 0 70px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

/* Logo 4 - Employed2020 - Neon Green Glow */
.logo-4 {
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8), 0 0 50px rgba(0, 255, 0, 0.5), 0 0 70px rgba(0, 255, 0, 0.3);
    border: 2px solid rgba(0, 255, 0, 0.6);
}

/* Logo 5 - ServicePay - Neon Pink Glow */
.logo-5 {
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.8), 0 0 50px rgba(255, 0, 110, 0.5), 0 0 70px rgba(255, 0, 110, 0.3);
    border: 2px solid rgba(255, 0, 110, 0.6);
}

/* Logo 6 - Pani (alternative position) - Neon Blue Glow */
.logo-6 {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8), 0 0 50px rgba(0, 212, 255, 0.5), 0 0 70px rgba(0, 212, 255, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.6);
}

.benefit-logo-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* Logo positioning and animations */
.logo-1 {
    top: 15%;
    left: 8%;
    animation: floatLogo1 25s infinite;
    animation-delay: 0s;
}

.logo-2 {
    top: 20%;
    right: 12%;
    animation: floatLogo2 28s infinite;
    animation-delay: 1s;
}

.logo-3 {
    top: 50%;
    left: 5%;
    animation: floatLogo3 26s infinite;
    animation-delay: 2s;
}

.logo-4 {
    top: 25%;
    right: 8%;
    animation: floatLogo4 30s infinite;
    animation-delay: 0.5s;
}

.logo-5 {
    top: 65%;
    right: 15%;
    animation: floatLogo5 24s infinite;
    animation-delay: 3s;
}

.logo-6 {
    top: 70%;
    left: 25%;
    animation: floatLogo6 27s infinite;
    animation-delay: 1.5s;
}

/* Logo Float Animations */
@keyframes floatLogo1 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(40px, -50px) rotate(5deg) scale(1.15);
        opacity: 0.6;
    }
    50% {
        transform: translate(80px, -30px) rotate(-3deg) scale(1.1);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, -60px) rotate(7deg) scale(1.2);
        opacity: 0.65;
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
}

@keyframes floatLogo2 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(-50px, 40px) rotate(-6deg) scale(1.12);
        opacity: 0.55;
    }
    50% {
        transform: translate(-70px, 80px) rotate(4deg) scale(1.18);
        opacity: 0.6;
    }
    75% {
        transform: translate(-35px, 50px) rotate(-5deg) scale(1.08);
        opacity: 0.5;
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
}

@keyframes floatLogo3 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(60px, -40px) rotate(8deg) scale(1.14);
        opacity: 0.58;
    }
    50% {
        transform: translate(90px, -70px) rotate(-6deg) scale(1.2);
        opacity: 0.65;
    }
    75% {
        transform: translate(50px, -35px) rotate(4deg) scale(1.1);
        opacity: 0.52;
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
}

@keyframes floatLogo4 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(-45px, 55px) rotate(-7deg) scale(1.16);
        opacity: 0.62;
    }
    50% {
        transform: translate(-80px, 100px) rotate(5deg) scale(1.22);
        opacity: 0.68;
    }
    75% {
        transform: translate(-40px, 60px) rotate(-4deg) scale(1.12);
        opacity: 0.55;
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
}

@keyframes floatLogo5 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(55px, -45px) rotate(6deg) scale(1.13);
        opacity: 0.57;
    }
    50% {
        transform: translate(85px, -85px) rotate(-7deg) scale(1.19);
        opacity: 0.63;
    }
    75% {
        transform: translate(45px, -50px) rotate(5deg) scale(1.08);
        opacity: 0.5;
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
}

@keyframes floatLogo6 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(-60px, 45px) rotate(-8deg) scale(1.17);
        opacity: 0.6;
    }
    50% {
        transform: translate(-95px, 75px) rotate(6deg) scale(1.21);
        opacity: 0.67;
    }
    75% {
        transform: translate(-50px, 40px) rotate(-5deg) scale(1.11);
        opacity: 0.53;
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
}

/* Old Benefit Animations (kept for compatibility) */
@keyframes floatShield {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-40px) rotate(10deg);
    }
}

@keyframes shieldPulse {
    0%, 100% {
        filter: drop-shadow(0 0 15px currentColor);
        opacity: 0.4;
    }
    50% {
        filter: drop-shadow(0 0 30px currentColor);
        opacity: 0.7;
    }
}

@keyframes floatHands {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-35px) scale(1.1);
    }
}

@keyframes floatChart {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-45px) translateX(15px);
    }
}

@keyframes chartGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px #ffd700);
    }
    50% {
        filter: drop-shadow(0 0 30px #ffd700) drop-shadow(0 0 50px #ff8c00);
    }
}

@keyframes floatWallet {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes spinCrypto {
    0% {
        transform: rotateY(0deg) translateY(0);
    }
    50% {
        transform: rotateY(180deg) translateY(-40px);
    }
    100% {
        transform: rotateY(360deg) translateY(0);
    }
}

@keyframes cryptoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px currentColor);
    }
    50% {
        filter: drop-shadow(0 0 35px currentColor) drop-shadow(0 0 60px currentColor);
    }
}

@keyframes floatCryptoChart {
    0%, 100% {
        transform: translateY(0) scaleX(1);
    }
    50% {
        transform: translateY(-40px) scaleX(1.1);
    }
}

@keyframes floatBriefcase {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-35px) rotate(-10deg);
    }
}

@keyframes floatUserTie {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

@keyframes floatMoneyCheck {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-40px) translateX(-15px);
    }
}

@keyframes moneyGlow {
    0%, 100% {
        filter: drop-shadow(0 0 12px currentColor);
    }
    50% {
        filter: drop-shadow(0 0 25px currentColor);
    }
}

@keyframes floatHandMoney {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-35px) rotate(15deg);
    }
}

@keyframes floatAmbulance {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-30px) translateY(-20px);
    }
}

@keyframes emergencyFlash {
    0%, 100% {
        filter: drop-shadow(0 0 15px #ff0000);
        opacity: 0.4;
    }
    50% {
        filter: drop-shadow(0 0 40px #ff0000) drop-shadow(0 0 60px #ff4500);
        opacity: 0.8;
    }
}

@keyframes ringPhone {
    0%, 100% {
        transform: rotate(0deg) translateY(0);
    }
    10%, 30% {
        transform: rotate(-15deg) translateY(-10px);
    }
    20%, 40% {
        transform: rotate(15deg) translateY(-10px);
    }
    50% {
        transform: rotate(0deg) translateY(0);
    }
}

/* Enhanced stat icons with benefit glow */
.benefits-hero .stat-icon {
    animation: benefitIconGlow 3s infinite;
}

@keyframes benefitIconGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 191, 255, 0.6), 0 0 60px rgba(255, 140, 0, 0.4);
    }
}

/* Mobile - Reduce floating elements */
@media (max-width: 968px) {
    .benefit-logo-float {
        width: 60px;
        height: 60px;
    }

    /* Hide some logos on mobile for performance */
    .logo-3, .logo-5, .logo-6 {
        display: none;
    }
}

/* Mobile Responsive for Premium Partners */
@media (max-width: 1200px) {
    .premium-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .premium-partners-section {
        padding: 4rem 1.5rem;
    }

    .premium-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .premium-benefit-card {
        padding: 2rem 1.5rem;
    }

    .partner-logo-container {
        height: 180px;
    }

    .benefit-content h3 {
        font-size: 1.5rem;
    }

    .premium-cta-section {
        padding: 2rem;
    }

    .premium-cta-section h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .premium-partners-section {
        padding: 3rem 1rem;
    }

    .premium-benefit-card {
        padding: 1.5rem 1rem;
    }

    .featured-ribbon {
        font-size: 0.65rem;
        padding: 0.4rem 2.5rem;
    }

    .partner-logo-container {
        height: 150px;
    }

    .benefit-content h3 {
        font-size: 1.3rem;
    }

    .benefit-content p {
        font-size: 0.9rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .member-value {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .member-value-amount {
        font-size: 1.2rem;
    }

    .premium-cta-section {
        padding: 1.5rem;
    }

    .premium-cta-section h3 {
        font-size: 1.4rem;
    }

    .premium-cta-section p {
        font-size: 1rem;
    }
}

/* ===================================
   PLANS PAGE STYLES
   =================================== */

.plans-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(26, 26, 46, 0.6));
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card.featured {
    border: 2px solid rgba(255, 215, 0, 0.5);
    position: relative;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-period {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.benefit-badge {
    text-align: center;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.plan-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    font-size: 1.2rem;
}

/* Mobile responsive for plans */
@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .plan-card.featured {
        transform: scale(1) !important;
    }
}

@media (max-width: 968px) {
    .plans-section {
        padding: 4rem 1.5rem;
    }

    .plan-card {
        padding: 2rem;
    }

    .plan-price {
        font-size: 2.5rem;
    }

    .plan-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .plans-section {
        padding: 3rem 1rem;
    }

    .plan-card {
        padding: 1.5rem;
    }

    .plan-price {
        font-size: 2rem;
    }

    .benefit-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

/* Height-based Media Query - For screens with limited vertical space */
@media (max-height: 900px) {
    .hero {
        padding: 6rem 4rem 3rem;
    }

    .hero-main {
        font-size: 5.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .hero-stats {
        margin: 1rem 0;
        gap: 1.5rem;
    }

    .stat {
        transform: scale(0.9);
    }

    .hero-cta {
        margin-top: 1rem;
    }
}

@media (max-height: 800px) {
    .hero {
        padding: 5rem 4rem 2.5rem;
    }

    .hero-main {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .hero-stats {
        margin: 0.8rem 0;
        gap: 1rem;
    }

    .stat {
        transform: scale(0.85);
    }
}

@media (max-height: 700px) {
    .hero {
        padding: 4rem 4rem 2rem;
    }

    .hero-main {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
    }

    .hero-stats {
        margin: 0.6rem 0;
        gap: 0.8rem;
    }

    .stat {
        transform: scale(0.8);
    }

    .hero-cta .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ========================================
   PHONE MOCKUP WITH DASHBOARD SCREENSHOTS
   ======================================== */

.phone-mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 650px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    perspective: 1200px;
    padding-top: 50px;
}

/* Floating Icons Around Phone */
.phone-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.phone-float-icon {
    position: absolute;
    opacity: 0.15;
    animation: phoneFloat 5s ease-in-out infinite, iconGlowPulse 2s ease-in-out infinite;
    will-change: transform, opacity;
    transition: all 0.3s ease;
}

/* Individual icon colors with subtle glow effects */
.phone-float-icon.fa-gift {
    color: #ff8c00;
    filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.4));
}

.phone-float-icon.fa-star {
    color: #ffd700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.phone-float-icon.fa-trophy {
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.phone-float-icon.fa-coins {
    color: #ffaa00;
    filter: drop-shadow(0 0 8px rgba(255, 170, 0, 0.4));
}

.phone-float-icon.fa-gem {
    color: #00d4ff;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
}

.phone-float-icon.fa-heart {
    color: #ff69b4;
    filter: drop-shadow(0 0 8px rgba(255, 105, 180, 0.3));
}

.phone-float-icon.fa-bolt {
    color: #ff8c00;
    filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.4));
}

.phone-float-icon.fa-crown {
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-15px) scale(1.05) rotate(5deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-25px) scale(1.08) rotate(-3deg);
        opacity: 0.45;
    }
    75% {
        transform: translateY(-15px) scale(1.05) rotate(3deg);
        opacity: 0.5;
    }
}

@keyframes iconGlowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px currentColor);
        opacity: 0.4;
    }
    50% {
        filter: drop-shadow(0 0 20px currentColor) drop-shadow(0 0 40px currentColor);
        opacity: 0.7;
    }
}

/* Phone Device */
.phone-device {
    position: relative;
    width: 280px;
    height: 520px;
    animation: floatPhone 6s ease-in-out infinite;
    transform-style: preserve-3d;
    z-index: 10;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

@keyframes floatPhone {
    0%, 100% {
        transform: translateY(0) rotateY(3deg) rotateX(-2deg);
    }
    50% {
        transform: translateY(-15px) rotateY(-3deg) rotateX(2deg);
    }
}

/* Phone Frame - Realistic iPhone Style */
.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2c2c2c 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-radius: 50px;
    padding: 12px;
    box-shadow:
        inset 0 0 0 2px #3a3a3a,
        inset 0 0 0 3px #1a1a1a,
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 10px 20px rgba(0, 0, 0, 0.4);
    overflow: visible;
}

/* Phone Notch - Realistic with Camera & Speaker */
.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 32px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 102;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.notch-camera {
    width: 11px;
    height: 11px;
    background: radial-gradient(circle, #1a3d5c 0%, #0a1929 100%);
    border-radius: 50%;
    border: 1px solid #0d2438;
    position: relative;
}

.notch-camera::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.notch-speaker {
    width: 50px;
    height: 5px;
    background: #0a0a0a;
    border-radius: 10px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Status Bar */
.phone-status-bar {
    position: absolute;
    top: 8px;
    left: 20px;
    right: 20px;
    height: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    z-index: 101;
    padding: 0 10px;
}

.status-time {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.status-icons {
    display: flex;
    gap: 6px;
    font-size: 11px;
}

/* Dashboard Slideshow - Properly Contained */
.dashboard-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 38px;
    overflow: hidden;
    background: #000;
}

.dashboard-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: scaleY(1.15);
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.dashboard-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Home Indicator - iPhone Style Bottom Bar */
.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    z-index: 101;
}

/* Side Buttons - Realistic Power & Volume */
.phone-button {
    position: absolute;
    background: linear-gradient(90deg, #2a2a2a 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-radius: 2px;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.5);
}

.phone-button-power {
    right: -3px;
    top: 150px;
    width: 3px;
    height: 80px;
    border-radius: 0 2px 2px 0;
}

.phone-button-volume-up {
    left: -3px;
    top: 120px;
    width: 3px;
    height: 50px;
    border-radius: 2px 0 0 2px;
}

.phone-button-volume-down {
    left: -3px;
    top: 180px;
    width: 3px;
    height: 50px;
    border-radius: 2px 0 0 2px;
}

/* Phone Glowing Border Effect - Subtle */
.phone-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, rgba(221, 132, 72, 0.4), rgba(255, 215, 0, 0.3));
    border-radius: 54px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(15px);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.01);
    }
}

/* Responsive Phone Mockup */
@media (max-width: 1024px) {
    .phone-mockup-container {
        min-height: 580px;
        padding-top: 40px;
    }

    .phone-device {
        width: 280px;
        height: 560px;
    }
}

@media (max-width: 768px) {
    .phone-mockup-container {
        min-height: 500px;
        padding-top: 30px;
    }

    .phone-device {
        width: 240px;
        height: 480px;
    }

    .phone-frame {
        border-radius: 40px;
        padding: 10px;
    }

    .phone-notch {
        width: 130px;
        height: 28px;
    }

    .phone-status-bar {
        font-size: 10px;
    }

    .dashboard-slideshow {
        border-radius: 32px;
    }

    .phone-button-power,
    .phone-button-volume-up,
    .phone-button-volume-down {
        width: 2px;
    }

    /* Adjust floating icons for tablets */
    .phone-float-icon {
        opacity: 0.35;
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .phone-mockup-container {
        min-height: 420px;
        padding-top: 20px;
    }

    .phone-device {
        width: 200px;
        height: 400px;
    }

    .phone-frame {
        border-radius: 35px;
        padding: 8px;
    }

    .phone-notch {
        width: 110px;
        height: 24px;
    }

    .notch-camera {
        width: 9px;
        height: 9px;
    }

    .notch-speaker {
        width: 40px;
        height: 4px;
    }

    .phone-status-bar {
        font-size: 9px;
        padding: 0 5px;
    }

    .dashboard-slideshow {
        border-radius: 28px;
    }

    .phone-home-indicator {
        width: 100px;
        height: 4px;
    }

    /* Adjust floating icons for mobile */
    .phone-float-icon {
        opacity: 0.3;
        font-size: 1.2rem !important;
    }

    @keyframes phoneFloat {
        0%, 100% {
            transform: translateY(0) scale(1) rotate(0deg);
            opacity: 0.3;
        }
        50% {
            transform: translateY(-10px) scale(1.03) rotate(-2deg);
            opacity: 0.5;
        }
    }
}

/* ==========================================
   GTR VIDEO FLOATING TAG - HOMEPAGE (LEFT SIDE)
   ========================================== */

/* Allow overflow for homepage GTR card */
.giveaway-countdown-side {
    overflow: visible !important;
}

.current-prize-card {
    overflow: visible !important;
}

/* GTR Video - Floating Tag Style Outside Container - LEFT SIDE */
.gtr-video-container-homepage {
    position: absolute;
    top: -160px;
    left: -130px;
    width: 220px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.8),
        0 0 60px rgba(255, 215, 0, 0.6),
        0 0 90px rgba(255, 215, 0, 0.4),
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(255, 215, 0, 0.2);
    border: 4px solid rgba(255, 215, 0, 0.9);
    animation: videoTagFloatHomepage 4s ease-in-out infinite, videoNeonPulseHomepage 3s ease-in-out infinite, videoRotateHomepage 20s linear infinite;
    z-index: 100;
    transform-origin: center;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
}

.gtr-video-showcase-homepage {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.15);
}

@keyframes videoNeonPulseHomepage {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 60px rgba(255, 215, 0, 0.6),
            0 0 90px rgba(255, 215, 0, 0.4),
            0 10px 40px rgba(0, 0, 0, 0.5),
            inset 0 0 30px rgba(255, 215, 0, 0.2);
        border-color: rgba(255, 215, 0, 0.9);
    }
    50% {
        box-shadow:
            0 0 45px rgba(255, 215, 0, 1),
            0 0 90px rgba(255, 215, 0, 0.8),
            0 0 135px rgba(255, 215, 0, 0.6),
            0 15px 50px rgba(0, 0, 0, 0.7),
            inset 0 0 45px rgba(255, 215, 0, 0.3);
        border-color: rgba(255, 215, 0, 1);
    }
}

@keyframes videoTagFloatHomepage {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    25% {
        transform: translateY(-15px) translateX(-5px) scale(1.02);
    }
    50% {
        transform: translateY(-20px) translateX(0px) scale(1.05);
    }
    75% {
        transform: translateY(-15px) translateX(5px) scale(1.02);
    }
}

@keyframes videoRotateHomepage {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-3deg);
    }
}

/* Mobile responsive for homepage GTR video */
@media (max-width: 968px) {
    .gtr-video-container-homepage {
        top: -120px;
        left: -95px;
        width: 180px;
    }
}

@media (max-width: 768px) {
    .gtr-video-container-homepage {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 180px;
        margin: 0 auto 20px;
        animation: videoNeonPulseHomepage 3s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    .gtr-video-container-homepage {
        width: 100%;
        max-width: 140px;
    }
}

