 /* =========== ROOT VARIABLES =========== */
        :root {
            --primary-red: #FF4757;
            --primary-blue: #4A2CFF;
            --accent-orange: #FF9F43;
            --accent-green: #2ED573;
            --accent-yellow: #FFD700;
            --accent-purple: #9B59B6;
            --dark-bg: #0F172A;
            --light-bg: #F8FAFC;
            --text-dark: #1E293B;
            --text-light: #64748B;
            --white: #FFFFFF;
            --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
            --radius: 16px;
            --radius-sm: 8px;
            --transition: all 0.3s ease;
            --transition-slow: all 0.5s ease;
        }

        /* =========== RESET & BASE =========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--light-bg);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        /* =========== TYPOGRAPHY =========== */
        h1, h2, h3, h4 {
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 1rem;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.125rem;
            color: var(--text-light);
        }

        .lead {
            font-size: 1.25rem;
            font-weight: 500;
        }

        .section-subtitle {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        /* =========== BUTTONS =========== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            min-width: 200px;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-red), #FF6B81);
            color: var(--white);
            box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 71, 87, 0.4);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary-red);
            border: 2px solid var(--primary-red);
        }

        .btn-secondary:hover {
            background: var(--primary-red);
            color: var(--white);
            transform: translateY(-5px);
        }

        .btn-accent {
            background: linear-gradient(135deg, var(--accent-purple), #8e44ad);
            color: var(--white);
            box-shadow: 0 10px 30px rgba(155, 89, 182, 0.3);
        }

        .btn-accent:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(155, 89, 182, 0.4);
        }

        .btn-large {
            padding: 20px 40px;
            font-size: 1.25rem;
        }

        .btn-block {
            width: 100%;
        }

        /* =========== NAVBAR =========== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .navbar.scrolled {
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.98);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary-black);
            text-decoration: none;
            transition: var(--transition);
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            font-size: 2.5rem;
            color: var(--primary-black);
            transition: var(--transition);
        }

        .logo:hover .logo-icon {
            transform: rotate(15deg);
        }

        /* Desktop Navigation */
        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-main-items {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-main-items a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 15px;
            border-radius: 8px;
            position: relative;
            white-space: nowrap;
        }

        .nav-main-items a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--primary-red);
            border-radius: 3px;
            transition: var(--transition);
            transform: translateX(-50%);
        }

        .nav-main-items a:hover::after {
            width: 80%;
        }

        .nav-main-items a:hover {
            color: var(--primary-red);
        }

        .nav-main-items a i {
            font-size: 1.1rem;
        }

        .nav-explore-btn {
            background: linear-gradient(135deg, var(--accent-purple), var(--primary-blue));
            color: white !important;
            padding: 10px 20px !important;
            border-radius: 50px;
            margin-left: 5px;
        }

        .nav-explore-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(155, 89, 182, 0.3);
        }

        .nav-explore-btn::after {
            display: none;
        }

        .nav-cta {
            background: var(--primary-red);
            color: white !important;
            padding: 10px 24px !important;
            border-radius: 50px;
            margin-left: 10px;
        }

        .nav-cta:hover {
            background: var(--accent-orange);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 71, 87, 0.3);
        }

        .nav-cta::after {
            display: none;
        }

        /* Explore Dropdown Menu */
        .explore-dropdown {
            position: relative;
        }

        .explore-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 300px;
            box-shadow: var(--shadow-lg);
            border-radius: 15px;
            padding: 20px;
            z-index: 1001;
            margin-top: 10px;
        }

        .explore-content.active {
            display: block;
            animation: fadeInUp 0.3s ease;
        }

        .explore-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .explore-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            text-decoration: none;
            color: var(--text-dark);
            border-radius: 10px;
            transition: var(--transition);
        }

        .explore-item:hover {
            background: rgba(255, 71, 87, 0.1);
            transform: translateX(5px);
        }

        .explore-item i {
            font-size: 1.2rem;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: white;
        }

        .explore-item.pink i { background: #ff6b8b; }
        .explore-item.blue i { background: #3498db; }
        .explore-item.purple i { background: #9b59b6; }
        .explore-item.orange i { background: #ff9f43; }
        .explore-item.green i { background: #2ed573; }
        .explore-item.yellow i { background: #f1c40f; }
        .explore-item.red i { background: #ff4757; }
        .explore-item.teal i { background: #00cec9; }

        /* Mobile Navigation Button */
        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--primary-red);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            z-index: 1001;
        }

        .mobile-menu-btn:hover {
            background: rgba(255, 71, 87, 0.1);
            transform: rotate(90deg);
        }

        .mobile-menu-btn.active {
            transform: rotate(90deg);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            z-index: 9999;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-menu-overlay.active {
            display: flex;
            opacity: 1;
        }

        .mobile-menu-content {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            border-radius: 24px;
            padding: 40px;
            width: 90%;
            max-width: 400px;
            max-height: 85vh;
            overflow-y: auto;
            color: white;
            box-shadow: var(--shadow-lg);
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .mobile-menu-overlay.active .mobile-menu-content {
            transform: translateY(0);
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-menu-title {
            font-size: 1.5rem;
            color: var(--accent-yellow);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-close-btn {
            background: var(--primary-red);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .mobile-close-btn:hover {
            background: #ff6b81;
            transform: rotate(90deg);
        }

        .mobile-menu-grid {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 30px;
        }

        .mobile-menu-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 18px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border-left: 4px solid transparent;
        }

        .mobile-menu-item:hover {
            background: rgba(255, 255, 255, 0.1);
            border-left-color: var(--primary-red);
            transform: translateX(10px);
        }

        .mobile-menu-item i {
            font-size: 1.3rem;
            width: 30px;
            text-align: center;
        }

        .mobile-menu-item.pink { border-left-color: #ff6b8b; }
        .mobile-menu-item.blue { border-left-color: #3498db; }
        .mobile-menu-item.purple { border-left-color: #9b59b6; }
        .mobile-menu-item.orange { border-left-color: #ff9f43; }
        .mobile-menu-item.green { border-left-color: #2ed573; }
        .mobile-menu-item.yellow { border-left-color: #f1c40f; }
        .mobile-menu-item.red { border-left-color: #ff4757; }
        .mobile-menu-item.teal { border-left-color: #00cec9; }

        .mobile-social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .mobile-social-link:hover {
            transform: translateY(-5px);
        }

        .mobile-social-link.facebook:hover { background: #1877F2; }
        .mobile-social-link.twitter:hover { background: #1DA1F2; }
        .mobile-social-link.instagram:hover { background: linear-gradient(45deg, #405DE6, #E1306C, #FD1D1D, #F56040, #FFDC80); }
        .mobile-social-link.tiktok:hover { background: #000000; }

        /* Content Page Overlay */
        .content-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 10000;
            display: none;
            flex-direction: column;
            padding: 20px;
            overflow: hidden;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .content-overlay.active {
            display: flex;
            opacity: 1;
        }

        .content-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .back-btn {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            white-space: nowrap;
        }

        .back-btn:hover {
            background: #ff6b81;
            transform: translateX(-5px);
        }

        #content-title {
            color: white;
            margin: 0;
            font-size: clamp(1.5rem, 3vw, 1.8rem);
            flex: 1;
            text-align: center;
        }

        .content-scroll-area {
            flex: 1;
            overflow-y: auto;
            padding-right: 10px;
            padding-bottom: 20px;
        }

        /* Custom scrollbar */
        .content-scroll-area::-webkit-scrollbar {
            width: 6px;
        }

        .content-scroll-area::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
        }

        .content-scroll-area::-webkit-scrollbar-thumb {
            background: var(--primary-red);
            border-radius: 10px;
        }

        /* =========== HERO SECTION =========== */
        .hero {
            position: relative;
            color: var(--white);
            padding: 180px 0 120px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: url('banner2.jpg') center/cover no-repeat;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5));
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            text-align: center;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            color: white;
        }

        .hero p {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 20px;
            margin-top: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .stat-item {
            text-align: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.2);
        }

        .stat-number {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 900;
            color: var(--white);
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* =========== COMPETITION SECTION =========== */
        .competition-section {
            background: linear-gradient(135deg, #000000 0%, #000000  100%);
            color: white;
            padding: 100px 0;
        }

        .competition-card {
            background: white;
            border-radius: var(--radius);
            padding: 0px;
            box-shadow: var(--shadow-lg);
            margin-top: 40px;
            border: 5px solid #f1c40f;
            position: relative;
        }

        .competition-card::before {
            content: "🏆";
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            background: #f1c40f;
            color: #2c3e50;
            font-size: 2rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .competition-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .competition-header h2 {
            color: #8e44ad;
            margin-bottom: 10px;
        }

        .competition-meta {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .meta-item {
            text-align: center;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            min-width: 150px;
        }

        .meta-item i {
            font-size: 2rem;
            color: #8e44ad;
            margin-bottom: 10px;
        }

        .countdown {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 30px 0;
        }

        .countdown-item {
            background: #8e44ad;
            color: white;
            padding: 0px;
            border-radius: 10px;
            min-width: 80px;
            text-align: center;
        }

        .countdown-number {
            font-size: 2rem;
            font-weight: bold;
            display: block;
        }

        .countdown-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .registration-info {
            text-align: center;
            margin: 30px 0;
            padding: 20px;
            background: #f8f9fa;
            border-radius: var(--radius);
            border-left: 5px solid #27ae60;
        }

        .registration-info h3 {
            color: #27ae60;
            margin-bottom: 15px;
        }

        .prize-amount {
            font-size: 2.6rem;
            font-weight: bold;
            color: #8e44ad;
            margin: 20px 0;
        }

        @media (max-width: 768px) {
    .competition-card {
        padding: 25px 20px;
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
        width: calc(100% + 40px);
        max-width: calc(100% + 40px);
        border-left: none;
        border-right: none;
        border-top-width: 3px;
        border-bottom-width: 3px;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px 10px;
        flex: 1;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .registration-info {
        margin: 30px -10px 0;
        padding: 25px 20px;
    }
}

        /* =========== NEWS & EVENTS SECTION =========== */
        .news-section {
            background: var(--white);
        }

        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .news-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-top: 30px;
        }

        .news-articles {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .news-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .news-image {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            flex-shrink: 0;
        }

        .news-content {
            padding: 30px;
            flex: 1;
        }

        .news-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .news-category {
            background: rgba(255, 71, 87, 0.1);
            color: var(--primary-red);
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: 600;
        }

        .news-tags {
            display: flex;
            gap: 8px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .news-tag {
            background: rgba(155, 89, 182, 0.1);
            color: var(--accent-purple);
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
        }

        .events-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .events-card {
            background: white;
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
        }

        .events-card h3 {
            color: var(--accent-purple);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f1f5f9;
        }

        .event-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #f1f5f9;
        }

        .event-item:last-child {
            border-bottom: none;
        }

        .event-date {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-red), #FF6B81);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .event-day {
            font-size: 1.5rem;
            font-weight: bold;
            line-height: 1;
        }

        .event-month {
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        .event-info h4 {
            margin-bottom: 5px;
            font-size: 1rem;
        }

        .event-info p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
        }

        /* =========== FEATURES SECTION =========== */
        .features {
            background: #f8fafc;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
        }

        /* =========== TESTIMONIALS SECTION =========== */
        .testimonials {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 100%);
            color: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.9);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
        }

        /* =========== FAQ SECTION =========== */
        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: var(--radius);
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .faq-question {
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: rgba(255, 71, 87, 0.05);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition-slow);
        }

        .faq-answer.active {
            padding: 20px 30px;
            max-height: 500px;
        }

        .faq-toggle {
            transition: var(--transition);
        }

        .faq-toggle.active {
            transform: rotate(45deg);
        }

        /* =========== CTA SECTION =========== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
            color: white;
            text-align: center;
            padding: 100px 0;
        }

        .cta-section h2 {
            color: white;
            margin-bottom: 20px;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        /* =========== FOOTER =========== */
        .main-footer {
            background: var(--dark-bg);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary-red);
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-links h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-red);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary-red);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* =========== MOBILE FOOTER =========== */
        .mobile-footer {
            display: none;
            background: var(--dark-bg);
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        .mobile-footer-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary-red);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .mobile-footer-tagline {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 30px;
            font-size: 1rem;
            line-height: 1.6;
        }

        .mobile-social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .mobile-footer-copyright {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 20px;
        }

        /* =========== RESPONSIVE DESIGN =========== */
        @media (max-width: 1024px) {
            section {
                padding: 80px 0;
            }
            
            .nav-main-items a span {
                display: none;
            }
            
            .nav-main-items a {
                padding: 8px 12px;
                font-size: 0;
            }
            
            .nav-main-items a i {
                font-size: 1.3rem;
            }
            
            .explore-content {
                left: -100px;
                min-width: 250px;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .news-image {
                width: 150px;
                height: 150px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 12px 0;
            }
            
            .nav-desktop {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .hero {
                padding: 140px 0 80px;
                background-attachment: scroll;
                background-position: center center;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .stat-item {
                padding: 12px;
            }
            
            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .content-header {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .back-btn {
                align-self: flex-start;
            }
            
            .competition-card {
                padding: 30px 20px;
            }
            
            .countdown {
                flex-wrap: wrap;
            }
            
            .countdown-item {
                min-width: 70px;
            }
            
            .news-card {
                flex-direction: column;
            }
            
            .news-image {
                width: 100%;
                height: 200px;
            }
            
            .main-footer {
                display: none;
            }
            
            .mobile-footer {
                display: block;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 60px 0;
            }
            
            .btn {
                width: 100%;
                min-width: unset;
            }
            
            .mobile-menu-content {
                padding: 25px;
            }
            
            .mobile-menu-item {
                padding: 15px;
                font-size: 1rem;
            }
            
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .competition-meta {
                flex-direction: column;
                align-items: center;
            }
            
            .meta-item {
                width: 100%;
                max-width: 250px;
            }
            
            .news-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* =========== ANIMATIONS =========== */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.8s ease forwards;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: var(--primary-red);
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Progress bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-red), var(--accent-orange));
            z-index: 1001;
            transition: width 0.3s ease;
        }

        /* Info Card Styles */
        .info-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .prize-item {
            background: #fff8e1;
            border: 1px solid #ffd54f;
            padding: 10px;
            border-radius: 8px;
            font-size: 13px;
            color: #5d4037;
            text-align: center;
        }