/* Prizes Page - Specific Styles */

/* Page Body Styling */
body.prizes-page {
    font-family: 'Josefin Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Hero Section for Prizes - Ultra High Specificity to Override Main Styles */
html body.prizes-page section.hero,
html body.prizes-page .hero.hero,
html body.prizes-page .hero {
    background: linear-gradient(135deg, rgba(30, 42, 56, 0.5) 0%, rgba(15, 23, 42, 0.7) 100%), 
                url('assets/images/Prizes-hero.png') !important;
    /* Show more of the top part of the image for Windows */
    background-position: center 50% !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    /* Override default hero height on desktop */
    min-height: 80vh !important;
}

/* Copy mobilePan keyframes for prizes page */
@keyframes mobilePan {
    0% {
        background-position: 20% center;
    }
    50% {
        background-position: 60% center;
    }
    75% {
        background-position: 80% center;
    }
    100% {
        background-position: 20% center;
    }
}

/* Hero animated background particles */
body.prizes-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.hero-highlight {
    display: block;
    background: linear-gradient(135deg, #F59E0B, #FBBF24, #FCD34D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4.5rem;
    font-weight: 900;
    text-shadow: 0 0 40px rgba(245, 158, 11, 0.6);
    filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.4));
    animation: glow 3s ease-in-out infinite alternate;
    margin: 0.3rem 0;
}

@keyframes glow {
    from { filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.4)); }
    to { filter: drop-shadow(0 8px 25px rgba(245, 158, 11, 0.8)); }
}

.hero-subtitle-text {
    display: block;
    font-size: 1.8rem;
    margin-top: 0.3rem;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

.hero-accent {
    color: #FBBF24;
    font-weight: 700;
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-stat {
    text-align: center;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 160px;
    flex: 1;
    max-width: 220px;
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FBBF24;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 1.5rem 0 0 0;
}

.btn-primary-hero,
.btn-secondary-hero {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    min-width: 180px;
    justify-content: center;
    cursor: pointer;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-primary-hero:hover {
    background: linear-gradient(135deg, #FBBF24, #FCD34D);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(245, 158, 11, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

/* Trust Badge */
.hero-trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 3rem;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.hero-trust-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 158, 11, 0.3);
}

.hero-trust-badge .trust-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.hero-trust-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Breadcrumb Styling */
body.prizes-page .breadcrumb {
    margin-bottom: 4rem;
    margin-top: -8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

body.prizes-page .breadcrumb a {
    color: #F59E0B;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

body.prizes-page .breadcrumb a:hover {
    opacity: 0.8;
}

body.prizes-page .breadcrumb i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

body.prizes-page .breadcrumb span {
    color: white;
}

/* Prize Pool Section */
.prize-pool-section {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    padding: 6rem 0;
    color: white;
    text-align: center;
}

.prize-pool-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prize-pool-total {
    font-size: 4rem;
    font-weight: 800;
    color: #F59E0B;
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
    margin: 2rem 0;
    letter-spacing: -2px;
}

/* Prize Cards Grid */
.prizes-breakdown-section .prizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Grand prize takes full width */
.prizes-breakdown-section .prize-card-grand {
    grid-column: 1 / -1;
}

.prize-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F59E0B, #FBBF24);
}

/* Prize Card Content */
.prize-rank {
    font-size: 1rem;
    color: #CBD5E1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.prize-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F59E0B;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.prize-description {
    color: #94A3B8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.prize-odds {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    padding: 0.8rem;
    color: #FBBF24;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Golden Line */
.golden-line {
    width: 750px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #F59E0B 25%, #FBBF24 50%, #F59E0B 75%, transparent 100%);
    margin: 2rem auto 3rem auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body.prizes-page .breadcrumb {
        margin-top: -6rem;
        margin-bottom: 2rem;
        font-size: 0.8rem;
    }

    /* Full screen hero on mobile - Account for navbar - HIGHEST SPECIFICITY */
    html body.prizes-page section.hero,
    html body.prizes-page .hero,
    body.prizes-page section.hero,
    body.prizes-page .hero,
    .prizes-page section.hero,
    .prizes-page .hero {
        min-height: calc(100vh - 80px) !important; /* Full viewport minus navbar */
        height: calc(100vh - 80px) !important; /* Enforce full height */
        max-height: calc(100vh - 80px) !important; /* Override max-height */
        padding: 2rem 0 !important; /* Reduced padding since we're accounting for navbar */
        margin-top: 80px !important; /* Push below fixed navbar */
        background-attachment: scroll !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        /* Add moving background animation for mobile */
        animation: mobilePan 15s ease-in-out infinite !important;
    }

    .hero-content {
        padding: 1rem;
    }

    /* Hero-stats pseudo-element golden line positioning for mobile */
    body.prizes-page .hero-stats::before {
        top: -2rem !important; /* Move up from -2.15rem to -3rem */
        width: 90% !important;
        max-width: 400px !important;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

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

    .hero-subtitle-text {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 0.8rem;
        margin: 1.5rem 0;
        align-items: center;
        justify-content: center;
    }

    .hero-stat {
        padding: 1rem 0.8rem;
        min-width: 120px;
        flex: 1;
        max-width: 160px;
    }

    .stat-number {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.2px;
    }

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

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 280px;
    }

    .hero-trust-badge {
        margin-top: 2rem;
        padding: 12px 20px;
        font-size: 0.85rem;
        max-width: 320px;
    }

    .hero-trust-badge .trust-icon {
        width: 24px;
        height: 24px;
    }

    .prize-pool-header h2 {
        font-size: 2rem;
    }

    .prize-pool-total {
        font-size: 2.5rem;
    }

    .prizes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

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

    .golden-line {
        width: 90%;
        max-width: 400px;
        margin: 3rem auto 4rem auto; /* Increased top and bottom margin for better spacing */
    }
}

/* Very small screens (iPhone SE, older phones) */
@media (max-width: 480px) {
    html body.prizes-page section.hero,
    html body.prizes-page .hero,
    body.prizes-page section.hero,
    body.prizes-page .hero,
    .prizes-page section.hero,
    .prizes-page .hero {
        min-height: calc(100vh - 80px) !important; /* Full screen minus navbar */
        height: calc(100vh - 80px) !important;
        max-height: calc(100vh - 80px) !important;
        padding: 1.5rem 0 !important; /* Reduced padding */
        margin-top: 80px !important; /* Account for fixed navbar */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-content {
        padding: 1rem !important;
        width: 100% !important;
        max-width: 95% !important;
        margin: 0 auto !important;
        transform: scale(0.9) !important; /* Scale down content for real mobile */
        transform-origin: center !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important; /* Smaller for real mobile */
        line-height: 1.1 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 280px;
    }
}

/* Landscape mode handling for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    html body.prizes-page section.hero,
    html body.prizes-page .hero,
    body.prizes-page section.hero,
    body.prizes-page .hero,
    .prizes-page section.hero,
    .prizes-page .hero {
        min-height: calc(100vh - 80px) !important; /* Full screen minus navbar */
        height: calc(100vh - 80px) !important;
        max-height: calc(100vh - 80px) !important;
        padding: 1rem 0 !important; /* Minimal padding in landscape */
        margin-top: 80px !important;
    }
}

/* Large screens optimization */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-highlight {
        font-size: 6rem;
    }

    .hero-subtitle-text {
        font-size: 3.5rem;
    }

    .hero-stats {
        gap: 2.5rem;
    }
    
    .hero-stat {
        padding: 1.5rem 1.5rem;
        max-width: 220px;
    }
}

/* Prize Breakdown Section */
.prizes-breakdown-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Add the same pattern overlay as other light sections */
.prizes-breakdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(30, 41, 59, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.prizes-breakdown-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 5%, rgba(30, 41, 59, 0.06) 95%, rgba(30, 41, 59, 0.06) 100%),
        linear-gradient(0deg, transparent 5%, rgba(30, 41, 59, 0.06) 95%, rgba(30, 41, 59, 0.06) 100%),
        radial-gradient(circle at 30px 30px, rgba(30, 41, 59, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(circle at 90px 90px, rgba(30, 41, 59, 0.06) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 120px 120px, 180px 180px;
    background-position: 0 0, 0 0, 0 0, 30px 30px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 2;
}

.prizes-breakdown-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.prizes-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.prizes-breakdown-section .golden-line {
    width: 750px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #F59E0B 25%, #FBBF24 50%, #F59E0B 75%, transparent 100%);
    margin: 1.5rem auto 2rem auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.prizes-section-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.prizes-section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* Prize Cards */
.prize-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Prize Card Animation States */
.prize-card.prize-hidden {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.prize-card.prize-visible {
    opacity: 1;
    transform: translateY(0px) scale(1);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    transition: all 0.3s ease;
}

.prize-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.prize-card:hover::before {
    background: linear-gradient(90deg, #F59E0B, #FBBF24, #F59E0B);
}

/* Grand Prize Specific Styling - Gold Theme */
.prize-card-grand .prize-rank {
    color: #FBBF24;
    font-weight: 700;
}

.prize-card-grand .prize-icon {
    color: #FBBF24;
}

.prize-card-grand .prize-amount {
    color: #ffffff;
}

/* Second Prize Specific Styling - Light Grey Theme */
.prize-card-second .prize-rank {
    color: #e2e8f0;
    font-weight: 600;
}

.prize-card-second .prize-icon {
    color: #e2e8f0;
}

/* Third Prize Specific Styling - Light Grey Theme */
.prize-card-third .prize-rank {
    color: #cbd5e1;
    font-weight: 600;
}

.prize-card-third .prize-icon {
    color: #cbd5e1;
}

/* Fourth Prize Specific Styling - Lighter Grey Theme */
.prize-card-fourth .prize-rank {
    color: #94a3b8;
    font-weight: 600;
}

.prize-card-fourth .prize-icon {
    color: #94a3b8;
}

/* Prize Card Elements */
.prize-rank {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.prize-amount {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.prize-quantity {
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.prize-description {
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.5;
    margin-bottom: 0rem;
}

.prize-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

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

/* Prize Statistics */
.prizes-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.prizes-stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Prize Stat Animation States */
.prizes-stat-item.stat-hidden {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.prizes-stat-item.stat-visible {
    opacity: 1;
    transform: translateY(0px) scale(1);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.prizes-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.prizes-stat-number {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.prizes-stat-label {
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 500;
}

/* Tablet Responsiveness - 2 columns for smaller prizes */
@media (max-width: 1024px) {
    .prizes-breakdown-section .prizes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prizes-breakdown-section .prize-card-grand {
        grid-column: 1 / -1;
    }
}

/* Mobile Responsiveness for Prize Breakdown */
@media (max-width: 768px) {
    .prizes-breakdown-section {
        padding: 3rem 0;
    }
    
    .prizes-breakdown-container {
        padding: 0 1rem;
    }
    
    .prizes-section-title {
        font-size: 2.5rem;
    }
    
    .prizes-section-subtitle {
        font-size: 1.1rem;
    }
    
    .prizes-breakdown-section .prizes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .prizes-breakdown-section .prize-card-grand {
        grid-column: 1;
    }
    
    .prize-card {
        padding: 2rem;
    }
    
    .prize-amount {
        font-size: 2.5rem;
    }
    
    .prize-icon {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
    }
    
    .prizes-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .prizes-stat-item {
        padding: 1.5rem;
    }
    
    .prizes-stat-number {
        font-size: 2rem;
    }
}

/* Current Drawing Status Section */
.current-status-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Dark section pattern overlay - same as participants section */
.current-status-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.current-status-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.status-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.status-section-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.current-status-section .golden-line {
    width: 750px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #F59E0B 25%, #FBBF24 50%, #F59E0B 75%, transparent 100%);
    margin: 1.5rem auto 2rem auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.status-section-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin: 0;
    font-weight: 400;
}

/* Progress Section */
.progress-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-numbers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.current-points,
.target-points {
    text-align: center;
}

.points-number,
.target-number {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    line-height: 1;
}

.points-label,
.target-label {
    font-size: 1.1rem;
    color: #cbd5e1;
    font-weight: 500;
    margin-top: 0.5rem;
}

.progress-bar-container {
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #F59E0B, #FBBF24, #F59E0B);
    border-radius: 6px;
    width: 0%;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-fill.animate {
    transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    filter: blur(8px);
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

.progress-percentage {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 1rem;
}

/* Status Cards */
.status-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.status-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Status Card Animation States */
.status-card.card-hidden {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.status-card.card-visible {
    opacity: 1;
    transform: translateY(0px) scale(1);
    transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.status-card.card-visible:hover,
.status-card:hover {
    transform: translateY(-8px) scale(1.02);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1), 0 5px 15px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.status-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.status-number {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.status-label {
    font-size: 1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.status-description {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.4;
}

/* Call to Action */
.status-cta {
    text-align: center;
    padding: 2.5rem;
    margin-top: 4rem;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    text-align: center;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: block;
}

.cta-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-align: center;
}

.cta-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin: 0 auto 2rem auto;
    padding: 0;
    line-height: 1.5;
    text-align: center;
    max-width: 100%;
    display: block;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-dark,
.btn-secondary-dark {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary-dark {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    color: #FFFFFF;
    border-color: #F59E0B;
}

.btn-primary-dark:hover {
    background: linear-gradient(135deg, #FBBF24 0%, #FCD34D 100%);
    border-color: #FBBF24;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.btn-secondary-dark {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-dark:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsiveness for Current Status */
@media (max-width: 768px) {
    .current-status-section {
        padding: 3rem 0;
    }
    
    .current-status-container {
        padding: 0 1rem;
    }
    
    .status-section-title {
        font-size: 2.5rem;
    }
    
    .status-section-subtitle {
        font-size: 1.1rem;
    }
    
    .progress-section {
        padding: 2rem;
    }
    
    .progress-numbers {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .points-number,
    .target-number {
        font-size: 3rem;
    }
    
    .status-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .status-card {
        padding: 1.5rem;
    }
    
    .status-cta {
        padding: 2rem;
        margin-top: 3rem;
        margin-bottom: 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-dark,
    .btn-secondary-dark {
        width: 100%;
        max-width: 300px;
    }
}

/* How Prizes Are Awarded Section */
.prizes-awarded-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Add the same pattern overlay as other light sections */
.prizes-awarded-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(30, 41, 59, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.prizes-awarded-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 5%, rgba(30, 41, 59, 0.06) 95%, rgba(30, 41, 59, 0.06) 100%),
        linear-gradient(0deg, transparent 5%, rgba(30, 41, 59, 0.06) 95%, rgba(30, 41, 59, 0.06) 100%),
        radial-gradient(circle at 30px 30px, rgba(30, 41, 59, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(circle at 90px 90px, rgba(30, 41, 59, 0.06) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 120px 120px, 180px 180px;
    background-position: 0 0, 0 0, 0 0, 30px 30px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 2;
}

.prizes-awarded-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.awarded-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.awarded-section-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.prizes-awarded-section .golden-line {
    width: 750px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #F59E0B 25%, #FBBF24 50%, #F59E0B 75%, transparent 100%);
    margin: 1.5rem auto 2rem auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.awarded-section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* Process Steps */
.process-steps {
    margin-bottom: 4rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-content {
    flex-grow: 1;
}

.step-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
}

.step-description {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.step-icon {
    width: 50px;
    height: 50px;
    color: #cbd5e1;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Important Information Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.prizes-awarded-section .info-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff !important;
    margin: 0 0 0.75rem 0;
}

.info-text {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
}

/* Awards CTA */
.awards-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.10);
    border-radius: 20px;
    border: 1px solid rgba(30, 41, 59, 0.1);
}

.awards-cta .cta-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem 0;
}

.awards-cta .cta-description {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0 auto 2rem auto;
    padding: 0;
    line-height: 1.5;
    text-align: center;
    max-width: 100%;
    display: block;
}

.awards-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-light,
.btn-secondary-light {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
    cursor: pointer;
    text-shadow: none;
}

.btn-primary-light {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    color: #ffffff;
    border-color: #F59E0B;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary-light:hover {
    background: linear-gradient(135deg, #FBBF24 0%, #FCD34D 100%);
    border-color: #FBBF24;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-secondary-light {
    background: rgba(30, 41, 59, 0.1);
    color: #1e293b;
    border-color: rgba(30, 41, 59, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary-light:hover {
    background: rgba(30, 41, 59, 0.15);
    border-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.2);
}

/* Mobile Responsiveness for Awards Section */
@media (max-width: 768px) {
    .prizes-awarded-section {
        padding: 3rem 0;
    }
    
    .prizes-awarded-container {
        padding: 0 1rem;
    }
    
    .awarded-section-title {
        font-size: 2.5rem;
    }
    
    .awarded-section-subtitle {
        font-size: 1.1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .step-content {
        order: 2;
    }
    
    .step-icon {
        order: 3;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
}

/* FINAL OVERRIDE - Must be at the end to beat main styles.css */
html body.prizes-page section.hero,
html body.prizes-page .hero.hero,
html body.prizes-page .hero {
    background-position: center 50% !important;
    background-size: cover !important;
    
    .awards-cta {
        padding: 2rem;
    }
    
    .awards-cta .cta-title {
        font-size: 1.75rem;
    }
    
    .awards-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-light,
    .btn-secondary-light {
        width: 100%;
        max-width: 300px;
    }
}

/* Authentication State Management - Override any conflicts */
body.prizes-page #login-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    pointer-events: auto !important;
}

body.prizes-page #profile-circle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
}

/* When JavaScript sets the authenticated state */
body.prizes-page #login-btn[style*="display: none"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
}

body.prizes-page #profile-circle[style*="display: block"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    pointer-events: auto !important;
}

/* Fix only the profile circle positioning without affecting nav-menu */
body.prizes-page .nav-auth {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

body.prizes-page #profile-circle {
    flex-shrink: 0 !important;
}

/* Removed custom user-avatar sizing - now using global styles.css for consistency */

/* Mobile Animation Override - Must be last to enable animation */
@media (max-width: 768px) {
    html body.prizes-page section.hero,
    html body.prizes-page .hero.hero,
    html body.prizes-page .hero {
        background-position: center center !important; /* Reset to allow animation */
        animation: mobilePan 15s ease-in-out infinite !important;
    }
}