* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: #000;
    color: #fff;
}

/* VIDEO SECTION */
.video-section {
    margin-top: 80px;
    padding: 60px;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08), transparent);
    border: 1px solid rgba(215, 17, 156, 0.732);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.video-section h2 {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ec4899, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-section p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 30px;
}




/* BACK BUTTON */
.back-btn {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 999;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.back-btn:hover {
    background: rgba(236, 72, 153, 0.15);
    transform: translateX(-4px);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

/* MAIN CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px 60px;
}

/* HERO SECTION */
.hero-section {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 80px;
    position: relative;
    padding: 60px;
    background: radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1), transparent);
    border-radius: 16px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
}

.hero-content h3 {
    font-size: 24px;
    font-weight: 400;
    color: #ec4899;
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
    letter-spacing: 1px;
}

/* AWARDS SECTION */
.awards-section {
    margin-bottom: 80px;
}

.awards-section h2 {
    font-size: 48px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.award-card {
    padding: 40px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(243, 63, 94, 0.08));
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1), transparent);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.award-card:hover {
    transform: translateY(-12px);
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 25px 70px rgba(236, 72, 153, 0.3);
}

.award-card:hover::before {
    top: -20%;
    right: -20%;
}

.award-card.gold {
    border-top: 3px solid #fbbf24;
}

.award-card.gold .award-icon {
    color: #fbbf24;
}

.award-card.platinum {
    border-top: 3px solid #ffe100;
}

.award-card.platinum .award-icon {
    color: #e0e7ff;
}

.award-card.silver {
    border-top: 3px solid #0066ff;
}

.award-card.silver .award-icon {
    color: #d1d5db;
}

.award-icon {
    font-size: 64px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.award-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.award-subtitle {
    font-size: 14px;
    color: #ec4899;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.award-details {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.award-image {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.award-card:hover .award-image {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
}

/* RECOGNITION SECTION */
.recognition-section {
    margin-bottom: 80px;
}

.recognition-section h2 {
    font-size: 48px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.recognition-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.recognition-item {
    padding: 30px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(243, 63, 94, 0.05));
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.recognition-item:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.15);
}

.recognition-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 10px;
}

.recognition-item p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

/* STATS SECTION */
.stats-section {
    margin-bottom: 80px;
    padding: 60px;
    background: radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.08), transparent);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stats-section h2 {
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    padding: 40px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(243, 63, 94, 0.1));
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.08);
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.25);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.stat-card p {
    font-size: 18px;
    font-weight: 600;
    color: #d1d5db;
}

/* MOMENTS SECTION */
.moments-section {
    margin-bottom: 40px;
}

.moments-section h2 {
    font-size: 48px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.moment-image {
    width: 100%;
    border-radius: 12px;
    border: 2px solid rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.moment-image:hover {
    transform: scale(1.05);
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.3);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .container {
        padding: 80px 30px 40px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 80px 20px 40px;
    }

    .hero-section {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content h3 {
        font-size: 18px;
    }

    .awards-section h2,
    .recognition-section h2,
    .stats-section h2,
    .moments-section h2 {
        font-size: 36px;
    }

    .awards-grid {
        gap: 25px;
    }

    .award-card {
        padding: 30px;
    }

    .award-card h3 {
        font-size: 20px;
    }

    .recognition-items {
        gap: 15px;
    }

    .recognition-item {
        padding: 20px;
    }

    .stats-section {
        padding: 40px 20px;
    }

    .stats-grid {
        gap: 20px;
    }

    .stat-card {
        padding: 30px;
    }

    .stat-number {
        font-size: 40px;
    }

    .moments-grid {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 70px 15px 30px;
    }

    .hero-section {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h3 {
        font-size: 16px;
    }

    .awards-section h2,
    .recognition-section h2,
    .stats-section h2,
    .moments-section h2 {
        font-size: 28px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .award-card {
        padding: 20px;
    }

    .award-icon {
        font-size: 48px;
    }

    .award-card h3 {
        font-size: 18px;
    }

    .recognition-items {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .recognition-item {
        padding: 15px;
    }

    .recognition-item h4 {
        font-size: 16px;
    }

    .stats-section {
        padding: 25px 15px;
    }

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

    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

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