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

        :root {
            --primary: #4facfe;
            --secondary: #00f2fe;
            --accent: #b99af0;
            --dark: #1a1a2e;
        }

        body {
            background: linear-gradient(135deg, var(--dark), #16213e);
            color: #fff;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .nav-container {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            animation: slideDown 0.5s ease;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .nav-logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 1rem;
        }

        .nav-img {
            height: 40px;
            width: auto;
        }

        .nav-text {
            color: #fff;
            font-size: 1.5rem;
        }

        .nav-links {
            display: flex;
            gap: 1rem;
        }

        .nav-btn {
            background: transparent;
            border: 2px solid var(--primary);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .nav-btn a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
        }

        .nav-btn:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .main-content {
            max-width: 800px;
            text-align: center;
            position: relative;
            z-index: 1;
            animation: fadeIn 1s ease;
        }

        .title {
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite alternate;
        }

        .subtitle {
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 2rem;
            opacity: 0;
            animation: slideUp 0.5s ease forwards 0.5s;
        }

        .description {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0;
            animation: slideUp 0.5s ease forwards 0.7s;
        }

        .coordinators {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            backdrop-filter: blur(10px);
            opacity: 0;
            animation: slideUp 0.5s ease forwards 0.9s;
        }

        .coordinators h3 {
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .coordinators-row {
            display: flex;
            justify-content: space-evenly;
            gap: 3rem;
        }

        .coordinator {
            text-align: center;
        }

        .coordinator p {
            margin: 0.5rem 0;
        }

        .register-button {
            display: inline-block;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: #fff;
            text-decoration: none;
            padding: 1rem 3rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            opacity: 0;
            animation: slideUp 0.5s ease forwards 1.1s;
        }

        .register-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
        }

        .prize-section {
            text-align: center;
            padding: 4rem 2rem;
            background: rgba(26, 26, 46, 0.8);
            position: relative;
        }

        .prize-title {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 2rem;
        }

        /* Particle Animation */
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            pointer-events: none;
            animation: float 6s linear infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) scale(0);
                opacity: 0;
            }
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }

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

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

        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(79, 172, 254, 0.5),
                           0 0 20px rgba(79, 172, 254, 0.3),
                           0 0 30px rgba(79, 172, 254, 0.1);
            }
            to {
                text-shadow: 0 0 20px rgba(79, 172, 254, 0.6),
                           0 0 30px rgba(79, 172, 254, 0.4),
                           0 0 40px rgba(79, 172, 254, 0.2);
            }
        }

        @media (max-width: 768px) {
            .title {
                font-size: 3rem;
            }
            
            .coordinators-row {
                flex-direction: column;
                gap: 1.5rem;
            }

            .nav-text {
                display: none;
            }
        }
 /* New styles for highlights section */
        .highlights-section {
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            background: rgba(26, 26, 46, 0.5);
        }

        .highlights-title {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 2rem;
            animation: glow 2s ease-in-out infinite alternate;
        }

        .highlights-container {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .highlight-card {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .highlight-card:hover {
            transform: translateY(-10px);
        }

        .highlight-placeholder {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
        }

        .highlight-content {
            padding: 1.5rem;
        }

        /* Download button styles */
        .download-section {
            text-align: center;
            padding: 3rem 2rem;
            position: relative;
        }

        .download-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: #fff;
            text-decoration: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .download-button::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        .download-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
        }

        @keyframes shine {
            0% {
                transform: rotate(45deg) translateX(-100%);
            }
            100% {
                transform: rotate(45deg) translateX(100%);
            }
        }

        /* Add this to your existing media queries */
        @media (max-width: 768px) {
            .highlights-container {
                flex-direction: column;
                align-items: center;
            }
            
            .highlight-card {
                width: 100%;
            }
        }
 /* New footer styles */
        .bottom {
            background: rgba(26, 26, 46, 0.9);
            padding: 2rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .designers {
            margin-bottom: 1rem;
            line-height: 1.6;
            color: #fff;
        }

        .name-student {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 600;
        }

        .name-student:hover {
            color: var(--secondary);
        }

        .club-name {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .club-name:hover {
            color: var(--secondary);
        }

        .fa-heart {
            animation: heartBeat 1.5s ease infinite;
        }

        .disclaimer {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 1rem auto 0;
            line-height: 1.4;
        }

        @keyframes heartBeat {
            0% {
                transform: scale(1);
            }
            14% {
                transform: scale(1.3);
            }
            28% {
                transform: scale(1);
            }
            42% {
                transform: scale(1.3);
            }
            70% {
                transform: scale(1);
            }
        }

        /* Existing styles from your CSS */
.highlights-section {
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    background: rgba(26, 26, 46, 0.5);
}

.highlights-title {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.highlights-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced card styles */
.highlight-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

/* Media container styles */
.highlight-media-container {
    position: relative;
    width: 100%;
    height: 300px;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.highlight-video,
.highlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Loading overlay styles */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
}

/* Media fallback styles */
.media-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

.media-error .media-fallback {
    display: flex;
}

.media-fallback i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Content styles */
.highlight-content {
    padding: 1.5rem;
}

.highlight-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Animation keyframes */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .highlights-container {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-card {
        width: 100%;
    }
    
    .highlight-media-container {
        height: 250px;
    }
}


.club-name {
    font-weight: bold;
    background-image: linear-gradient(45deg, #e55c88, #532a5c, #3fb8ac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    text-decoration: none !important;
}

