        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #00ff9d;
            --secondary: #00cc7a;
            --accent: #00e6ff;
            --dark: #0a0a0a;
            --darker: #050505;
            --light: #f5f5f5;
            --gray: #333;
        }

        body {
            background-color: var(--darker);
            color: var(--light);
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(5, 5, 5, 0.122);
            backdrop-filter: blur(3px);
            border-bottom: 1px solid rgba(0, 255, 157, 0.2);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo img {
            margin-right: 10px;
            width: 60px;        
            height: 60px;      
            object-fit: contain;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .northern-lights {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            background: linear-gradient(to bottom, #050505, #0a1a14, #050505);
        }

        .stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, #eee, transparent),
                radial-gradient(2px 2px at 40px 70px, #fff, transparent),
                radial-gradient(1px 1px at 90px 40px, #ddd, transparent),
                radial-gradient(1px 1px at 130px 80px, #fff, transparent),
                radial-gradient(2px 2px at 160px 30px, #ddd, transparent),
                radial-gradient(1px 1px at 210px 90px, #eee, transparent),
                radial-gradient(1px 1px at 250px 40px, #fff, transparent),
                radial-gradient(2px 2px at 290px 70px, #ddd, transparent),
                radial-gradient(1px 1px at 330px 20px, #fff, transparent);
            background-repeat: repeat;
            background-size: 350px 250px;
            animation: stars-move 80s linear infinite;
        }

        @keyframes stars-move {
            from {
                transform: translateY(0);
            }
            to {
                transform: translateY(-250px);
            }
        }

        .aurora-layer {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0.7;
            filter: blur(20px);
        }

        .aurora-1 {
            background: 
                linear-gradient(0deg, transparent 0%, rgba(0, 255, 157, 0.1) 20%, rgba(0, 230, 120, 0.2) 40%, transparent 60%),
                linear-gradient(90deg, transparent 0%, rgba(0, 200, 100, 0.15) 25%, transparent 50%);
            animation: aurora-wave-1 25s ease-in-out infinite alternate;
        }

        .aurora-2 {
            background: 
                linear-gradient(180deg, transparent 0%, rgba(0, 230, 150, 0.1) 15%, rgba(0, 255, 200, 0.25) 35%, transparent 55%),
                linear-gradient(270deg, transparent 10%, rgba(0, 180, 120, 0.15) 30%, transparent 50%);
            animation: aurora-wave-2 30s ease-in-out infinite alternate;
            animation-delay: -5s;
        }

        .aurora-3 {
            background: 
                linear-gradient(45deg, transparent 5%, rgba(0, 255, 180, 0.1) 25%, rgba(0, 220, 140, 0.2) 45%, transparent 65%),
                linear-gradient(135deg, transparent 15%, rgba(0, 200, 150, 0.15) 35%, transparent 60%);
            animation: aurora-wave-3 35s ease-in-out infinite alternate;
            animation-delay: -10s;
        }

        .aurora-4 {
            background: 
                linear-gradient(120deg, transparent 0%, rgba(0, 180, 130, 0.1) 20%, rgba(0, 230, 170, 0.15) 40%, transparent 60%),
                linear-gradient(300deg, transparent 5%, rgba(0, 210, 140, 0.1) 25%, transparent 50%);
            animation: aurora-wave-4 40s ease-in-out infinite alternate;
            animation-delay: -15s;
        }

        @keyframes aurora-wave-1 {
            0% {
                transform: translateX(-10%) translateY(-5%) scale(1.1);
                opacity: 0.6;
            }
            25% {
                transform: translateX(5%) translateY(2%) scale(1.15);
                opacity: 0.7;
            }
            50% {
                transform: translateX(-5%) translateY(8%) scale(1.2);
                opacity: 0.8;
            }
            75% {
                transform: translateX(8%) translateY(-3%) scale(1.15);
                opacity: 0.7;
            }
            100% {
                transform: translateX(-12%) translateY(5%) scale(1.1);
                opacity: 0.6;
            }
        }

        @keyframes aurora-wave-2 {
            0% {
                transform: translateX(15%) translateY(3%) scale(1.05);
                opacity: 0.5;
            }
            33% {
                transform: translateX(-8%) translateY(-5%) scale(1.1);
                opacity: 0.6;
            }
            66% {
                transform: translateX(10%) translateY(7%) scale(1.15);
                opacity: 0.7;
            }
            100% {
                transform: translateX(-15%) translateY(-2%) scale(1.05);
                opacity: 0.5;
            }
        }

        @keyframes aurora-wave-3 {
            0% {
                transform: translateX(-20%) translateY(10%) scale(1.2);
                opacity: 0.4;
            }
            20% {
                transform: translateX(5%) translateY(-5%) scale(1.15);
                opacity: 0.5;
            }
            40% {
                transform: translateX(15%) translateY(8%) scale(1.1);
                opacity: 0.6;
            }
            60% {
                transform: translateX(-10%) translateY(-8%) scale(1.15);
                opacity: 0.5;
            }
            80% {
                transform: translateX(20%) translateY(5%) scale(1.2);
                opacity: 0.4;
            }
            100% {
                transform: translateX(-25%) translateY(-10%) scale(1.25);
                opacity: 0.3;
            }
        }

        @keyframes aurora-wave-4 {
            0% {
                transform: translateX(10%) translateY(-8%) scale(1.1);
                opacity: 0.3;
            }
            50% {
                transform: translateX(-15%) translateY(5%) scale(1.2);
                opacity: 0.5;
            }
            100% {
                transform: translateX(20%) translateY(-5%) scale(1.1);
                opacity: 0.3;
            }
        }

        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #ccc;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            color: var(--darker);
            text-decoration: none;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 255, 157, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 255, 157, 0.5);
        }

        .section {
            padding: 100px 50px;
            position: relative;
            z-index: 2;
            background: rgba(5, 5, 5, 0.7);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 2.5rem;
            color: var(--primary);
        }

        .section-title-comingsoon {
            text-align: center;
            margin-top: 50px;
            font-size: 60px;
            color: linear-gradient(45deg, var(--primary), var(--accent));
        }

        .prizes-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .prize-card {
            width: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s;
            border: 1px solid rgba(0, 255, 157, 0.1);
        }

        .prize-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 255, 157, 0.3);
        }

        .prize-image {
            height: 200px;
            background: var(--gray);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary);
            font-size: 3rem;
        }

        .prize-content {
            padding: 20px;
        }

        .prize-content h3 {
            margin-bottom: 10px;
            color: var(--primary);
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-text {
            flex: 1;
        }

        .about-text p {
            margin-bottom: 20px;
            line-height: 1.6;
            color: #ffffff;
            font-size: 20px;
        }

        .about-text strong {
            color: var(--primary);
            font-size: 30px;
        }

        .slideshow-container {
            flex: 1;
            position: relative;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s;
            background: var(--gray);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary);
            font-size: 2rem;
        }

        .slide.active {
            opacity: 1;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(0, 255, 157, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: rgba(0, 255, 157, 0.1);
        }

        .faq-question h3 {
            font-size: 1.2rem;
            color: var(--light);
        }

        .faq-toggle {
            color: var(--primary);
            font-size: 1.5rem;
            transition: transform 0.3s;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            background: rgba(5, 5, 5, 0.5);
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        footer {
            background: var(--dark);
            padding: 50px;
            text-align: center;
            border-top: 1px solid rgba(0, 255, 157, 0.1);
            position: relative;
            z-index: 2;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .social-links a {
            color: var(--light);
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--primary);
        }

        .copyright {
            color: #777;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }

            nav ul li {
                margin-left: 15px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

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

            .section {
                padding: 60px 20px;
            }

            .about-container {
                flex-direction: column;
            }

            .slideshow-container {
                width: 100%;
            }
        }


        /* Schedule Page Styles */
        .schedule-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .timeline {
            position: relative;
            padding: 20px 0;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 30px;
            position: relative;
        }

        .timeline-time {
            width: 80px;
            padding: 10px;
            background: rgba(0, 255, 157, 0.1);
            border-radius: 5px;
            text-align: center;
            font-weight: 600;
            color: var(--primary);
            margin-right: 20px;
            flex-shrink: 0;
        }

        .timeline-content {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid rgba(0, 255, 157, 0.1);
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            border-color: rgba(0, 255, 157, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .timeline-content h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .timeline-content p {
            color: #ccc;
            line-height: 1.5;
        }

        .calendar-container {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(0, 255, 157, 0.1);
            max-width: 1000px;
            margin: 0 auto;
        }

        .calendar-frame {
            width: 100%;
            height: 600px;
            border: none;
        }
        
        @media (max-width: 768px) {
            .timeline::before {
                left: 20px;
            }
            
            .timeline-time {
                width: 70px;
                margin-right: 15px;
            }
            
            .timeline-item::before {
                left: 14px;
            }
            
            .calendar-frame {
                height: 500px;
            }
        }

        /* Sponsor Section Styles */
        #sponsor {
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .sponsors-container {
            display: flex;
            align-items: center;
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }
        
        .sponsors-track {
            display: flex;
            animation: scroll 15s linear infinite;
        }
        
        .sponsor-item {
            flex-shrink: 0;
            width: 400px;
            height: 300px;
            margin: 0 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .sponsor-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .sponsor-item img {
            max-width: 100%;
            max-height: 100%;
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .sponsors-track:hover {
            animation-play-state: paused;
        }
        
        .sponsors-container::before,
        .sponsors-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
        }
        
        .sponsors-container::before {
            left: 0;
            background: linear-gradient(to right, rgba(10, 15, 30, 1), rgba(10, 15, 30, 0));
        }
        
        .sponsors-container::after {
            right: 0;
            background: linear-gradient(to left, rgba(10, 15, 30, 1), rgba(10, 15, 30, 0));
        }

        /* Contact Section Styles */
        #contact {
            padding: 80px 0;
            position: relative;
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgb(0, 255, 157) 0%, rgb(5, 103, 34) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            font-size: 20px;
            color: white;
        }
        
        .contact-details h3 {
            margin: 0 0 8px 0;
            color: #fff;
            font-size: 1.3rem;
        }
        
        .contact-details p {
            margin: 0;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }
        
        .contact-details a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-details a:hover {
            color: #0a4b19;
        }
        
        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #fff;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1d5406;
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, rgb(0, 255, 157) 0%, rgb(5, 103, 34) 100%);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(6, 136, 62, 0.3);
        }

        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .contact-form {
                padding: 30px 25px;
            }
        }

        @media (max-width: 768px) {
            .phone-only {
                display: block;
            }
            
            .desktop-only {
                display: none;
            }
            }

            @media (min-width: 769px) {
            .phone-only {
                display: none;
            }
            
            .desktop-only {
                display: block;
            }
            }
