
        /* ========== ROOT VARIABLES ========== */
        :root {
            --cosmic-black: #010112;
            --deep-space: #0a0a2a;
            --nebula-purple: #2a0f5c;
            --starlight-blue: #4a7dff;
            --planet-cyan: #00d4ff;
            --accent-gold: #ffd166;
            --moon-yellow: #f5f3ce;
            --text-light: #f0f8ff;
            --text-dim: #a0a8d0;
            --glass-white: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --font-primary: 'Space Grotesk', system-ui, -apple-system, sans-serif;
            --font-secondary: 'Inter', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: var(--font-secondary);
            background-color: var(--cosmic-black);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5 {
            font-family: var(--font-primary);
            font-weight: 600;
            line-height: 1.2;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== LOGO ========== */
        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 1000;
        }

        .logo-svg {
            height: 55px;
            filter: drop-shadow(3px 2px 10px rgba(118, 130, 179, 0.347));
        }

        .logo-text {
            font-family: var(--font-primary);
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--starlight-blue), var(--planet-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ========== NAVIGATION ========== */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s ease;
            background-color: rgba(1, 1, 18, 0.9);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(74, 125, 255, 0.2);
        }

        header.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
            background-color: rgba(1, 1, 18, 0.95);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            padding: 5px 0;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--planet-cyan);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, var(--starlight-blue), var(--planet-cyan));
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(to right, var(--starlight-blue), var(--planet-cyan));
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(74, 125, 255, 0.3);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(74, 125, 255, 0.5);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
        }

        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 100px;
        }

        .hero-bg-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--text-light), var(--planet-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
        }

        .motto {
            font-size: 1.6rem;
            margin-bottom: 30px;
            color: var(--accent-gold);
            font-style: italic;
            font-weight: 500;
            text-shadow: 0 0 15px rgba(255, 209, 102, 0.5);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: var(--text-dim);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .secondary-button {
            display: inline-block;
            background: transparent;
            color: var(--text-light);
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--starlight-blue);
        }

        .secondary-button:hover {
            background: rgba(74, 125, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(74, 125, 255, 0.3);
        }

        /* Moon */
        .moon {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, var(--moon-yellow), #c9c7a3);
            box-shadow: 0 0 80px rgba(245, 243, 206, 0.7);
            top: 19.5%;
            right: 11%;
            z-index: 1;
            overflow: hidden;
        }

        .moon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle at 70% 20%, rgba(0,0,0,0.2), transparent 70%);
        }

        .moon-crater {
            position: absolute;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.1);
        }
        .moon-crater:nth-child(1) { width: 30px; height: 30px; top: 40px; left: 60px; }
        .moon-crater:nth-child(2) { width: 45px; height: 45px; top: 100px; left: 30px; }
        .moon-crater:nth-child(3) { width: 25px; height: 25px; top: 120px; right: 50px; }
        .moon-crater:nth-child(4) { width: 35px; height: 35px; bottom: 60px; left: 80px; }

        /* Floating Stars */
        .floating-star {
            position: absolute;
            background-color: white;
            border-radius: 50%;
            z-index: 1;
            animation: float 2s infinite ease-in-out;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        .star-1 { width: 3px; height: 3px; top: 20%; left: 10%; animation-delay: 0s; }
        .star-2 { width: 2px; height: 2px; top: 40%; left: 15%; animation-delay: 0.5s; }
        .star-3 { width: 4px; height: 4px; top: 60%; left: 5%; animation-delay: 1s; }
        .star-4 { width: 2px; height: 2px; top: 80%; left: 20%; animation-delay: 1.5s; }
        .star-5 { width: 3px; height: 3px; top: 30%; right: 15%; animation-delay: 0.2s; }
        .star-6 { width: 2px; height: 2px; top: 50%; right: 10%; animation-delay: 0.8s; }
        .star-7 { width: 4px; height: 4px; top: 70%; right: 5%; animation-delay: 1.2s; }

        /* Twinkling Stars */
        .twinkling-star {
            position: absolute;
            background-color: white;
            border-radius: 50%;
            z-index: 1;
            animation: twinkle 2s infinite;
        }
        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }
        .t-star-1 { width: 2px; height: 2px; top: 15%; left: 25%; animation-delay: 0.1s; }
        .t-star-2 { width: 1px; height: 1px; top: 35%; left: 30%; animation-delay: 0.4s; }
        .t-star-3 { width: 3px; height: 3px; top: 55%; left: 40%; animation-delay: 0.7s; }
        .t-star-4 { width: 2px; height: 2px; top: 75%; left: 35%; animation-delay: 1s; }
        .t-star-5 { width: 1px; height: 1px; top: 25%; right: 25%; animation-delay: 0.3s; }
        .t-star-6 { width: 2px; height: 2px; top: 45%; right: 30%; animation-delay: 0.6s; }
        .t-star-7 { width: 1px; height: 1px; top: 65%; right: 20%; animation-delay: 0.9s; }

        /* ========== SECTION COMMON ========== */
        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--starlight-blue), var(--planet-cyan));
            border-radius: 2px;
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        /* Objectives */
        .objectives-section {
            background: linear-gradient(to bottom, var(--cosmic-black), var(--deep-space));
        }
        .objectives-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        .objective-card {
            background: rgba(10, 10, 42, 0.4);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid var(--glass-border);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .objective-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(74, 125, 255, 0.1), transparent);
            transition: left 0.7s ease;
        }
        .objective-card:hover::before {
            left: 100%;
        }
        .objective-card:hover {
            transform: translateY(-10px);
            border-color: var(--planet-cyan);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
        }
        .objective-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--planet-cyan);
        }
        .objective-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--text-light);
        }

        /* About */
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.8s ease;
        }
        .about-image:hover img {
            transform: scale(1.05);
        }
        .about-content h3 {
            font-size: 2.5rem;
            margin-bottom: 30px;
        }
        .mission-vision {
            margin-top: 40px;
        }
        .mission, .vision {
            margin-bottom: 30px;
            padding: 25px;
            background: rgba(10, 10, 42, 0.4);
            border-radius: 15px;
            border-left: 4px solid var(--planet-cyan);
        }
        .mission h4, .vision h4 {
            color: var(--planet-cyan);
            font-size: 1.3rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* ========== TEAM SECTION ========== */
        .team-section {
            background: linear-gradient(to bottom, var(--deep-space), rgba(10, 10, 42, 0.9));
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }
        .team-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(74,125,255,0.1)"/></svg>') repeat;
            opacity: 0.5;
            z-index: 1;
        }
        .team-container {
            position: relative;
            z-index: 2;
        }
        .team-filter {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .filter-btn {
            background: transparent;
            border: 1px solid rgba(74, 125, 255, 0.3);
            color: var(--text-light);
            padding: 10px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-family: var(--font-primary);
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .filter-btn:hover {
            background: rgba(74, 125, 255, 0.2);
            border-color: var(--starlight-blue);
        }
        .filter-btn.active {
            background: linear-gradient(to right, var(--starlight-blue), var(--planet-cyan));
            color: white;
            border: none;
            box-shadow: 0 5px 15px rgba(74, 125, 255, 0.4);
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .team-member {
            background: rgba(10, 10, 42, 0.7);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .team-member:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: var(--planet-cyan);
            box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
            z-index: 10;
        }
        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--starlight-blue), var(--planet-cyan));
            z-index: 2;
        }
        .member-image-container {
            position: relative;
            height: 280px;
            overflow: hidden;
            background: linear-gradient(to bottom, var(--nebula-purple), var(--deep-space));
        }
        .member-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        .team-member:hover .member-image {
            transform: scale(1.1);
        }
        .member-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10, 10, 42, 0.9) 20%, transparent 50%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .team-member:hover .member-overlay {
            opacity: 1;
        }
        .member-badge {
            display: inline-block;
            background: rgba(0, 212, 255, 0.2);
            color: var(--planet-cyan);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
            align-self: flex-start;
        }
        .member-info {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .member-name {
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: var(--text-light);
            line-height: 1.3;
        }
        .member-position {
            color: var(--planet-cyan);
            font-size: 0.95rem;
            margin-bottom: 15px;
            font-weight: 600;
            line-height: 1.4;
            min-height: 40px;
        }
        .member-edu {
            color: var(--text-dim);
            margin-bottom: 14px;
            font-size: 0.85rem;
            line-height: 1.6;
        }
        .member-social {
            display: flex;
            gap: 15px;
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .social-link {
            color: var(--text-dim);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }
        .social-link:hover {
            color: var(--planet-cyan);
            background: rgba(74, 125, 255, 0.2);
            transform: translateY(-3px) scale(1.1);
        }
        .team-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            flex-wrap: wrap;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(10, 10, 42, 0.6);
            border-radius: 15px;
            min-width: 150px;
            border: 1px solid var(--glass-border);
            transition: all 0.4s ease;
        }
        .stat-item:hover {
            transform: translateY(-10px);
            border-color: var(--planet-cyan);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--starlight-blue), var(--planet-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }
        .stat-label {
            color: var(--text-dim);
            font-size: 1rem;
        }
        .team-quote {
            text-align: center;
            max-width: 800px;
            margin: 60px auto 0;
            padding: 40px;
            background: rgba(10, 10, 42, 0.6);
            border-radius: 20px;
            border-left: 4px solid var(--accent-gold);
            position: relative;
            overflow: hidden;
        }
        .team-quote::before {
            content: '"';
            position: absolute;
            top: -30px;
            left: 20px;
            font-size: 8rem;
            color: var(--accent-gold);
            opacity: 0.2;
            font-family: serif;
            line-height: 1;
        }
        .team-quote p {
            font-size: 1.3rem;
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        .team-quote-author {
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Projects */
        .projects-section {
            background: linear-gradient(to bottom, var(--deep-space), var(--cosmic-black));
        }
        .projects-container {
            margin-top: 60px;
        }
        .project-card {
            background: rgba(10, 10, 42, 0.6);
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 40px;
            border: 1px solid var(--glass-border);
            transition: all 0.4s ease;
        }
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            border-color: var(--planet-cyan);
        }
        .project-header {
            padding: 30px;
            background: linear-gradient(to right, var(--nebula-purple), var(--starlight-blue));
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .project-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        .project-support {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .support-text {
            font-size: 1.5rem;
            color: #ffffff;
            font-weight: 600;
        }
        .support-logo {
            height: 140px;
            filter: brightness(1) invert(1);
        }
        .project-content {
            padding: 30px;
        }
        .project-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .highlight {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .highlight-icon {
            color: var(--planet-cyan);
            font-size: 1.5rem;
            margin-top: 5px;
        }
        .quote {
            font-style: italic;
            padding: 25px;
            background: rgba(74, 125, 255, 0.1);
            border-radius: 15px;
            margin-top: 30px;
            border-left: 4px solid var(--accent-gold);
            position: relative;
        }
        .quote::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 4rem;
            color: var(--accent-gold);
            opacity: 0.5;
            font-family: serif;
        }
        .quote-author {
            margin-top: 15px;
            text-align: right;
            font-weight: 600;
            color: var(--accent-gold);
        }

        /* Events */
        .events-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        .event-card {
            background: rgba(10, 10, 42, 0.6);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            transition: all 0.4s ease;
            position: relative;
        }
        .event-card:hover {
            transform: translateY(-10px);
            border-color: var(--planet-cyan);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
        }
        .event-date {
            background: linear-gradient(to right, var(--nebula-purple), var(--starlight-blue));
            color: white;
            padding: 15px;
            text-align: center;
        }
        .event-date .day {
            font-size: 2rem;
            font-weight: 700;
            display: block;
        }
        .event-content {
            padding: 25px;
        }
        .event-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        .event-desc {
            color: var(--text-dim);
            margin-bottom: 20px;
        }
        .read-more {
            color: var(--planet-cyan);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.3s ease;
        }
        .read-more:hover {
            gap: 10px;
        }

        /* Featured Highlights */
        .featured-section {
            background: linear-gradient(to bottom, var(--cosmic-black), var(--deep-space));
            padding: 100px 0;
        }
        .featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        .featured-link {
            display: block;
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.4s ease;
            background: var(--deep-space);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .featured-link:hover {
            transform: translateY(-10px);
            border-color: var(--planet-cyan);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
        }
        .featured-link img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .featured-link:hover img {
            transform: scale(1.05);
        }
        .featured-note {
            text-align: center;
            color: var(--text-dim);
            margin-top: 40px;
            font-size: 1.1rem;
            font-style: italic;
        }

        /* YouTube Section */
        .youtube-section {
            background: linear-gradient(to bottom, var(--deep-space), var(--cosmic-black));
            padding: 100px 0;
        }
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }
        .video-card {
            background: rgba(10, 10, 42, 0.6);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .video-card:hover {
            transform: translateY(-10px);
            border-color: var(--planet-cyan);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
        }
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background: var(--deep-space);
        }
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        .video-title {
            font-size: 1.2rem;
            margin: 20px 20px 10px;
            color: var(--planet-cyan);
            font-weight: 600;
        }
        .channel-link {
            text-align: center;
            margin-top: 40px;
        }
        .channel-link .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            padding: 15px 40px;
            background: linear-gradient(to right, #ff0000, #cc0000);
            box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
        }
        .channel-link .cta-button:hover {
            background: linear-gradient(to right, #ff1a1a, #e60000);
            box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
        }
        .channel-link .cta-button i {
            font-size: 1.5rem;
        }

        /* ========== FAQ SECTION (JS Accordion) ========== */
        .faq-section {
            background: linear-gradient(to bottom, var(--deep-space), var(--cosmic-black));
        }
        .faq-container {
            max-width: 900px;
            margin: 60px auto 0;
        }
        .faq-category {
            margin-bottom: 20px;
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            overflow: hidden;
            background: rgba(10, 10, 42, 0.6);
        }
        .faq-category-header {
            padding: 1rem 1.5rem;
            background: rgba(74, 125, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 0.2s;
        }
        .faq-category-header:hover {
            background: rgba(74, 125, 255, 0.2);
        }
        .faq-category-header h4 {
            margin: 0;
            font-size: 1.2rem;
            color: var(--planet-cyan);
        }
        .faq-category-icon i {
            transition: transform 0.3s;
        }
        .faq-category.open .faq-category-icon i {
            transform: rotate(180deg);
        }
        .faq-category-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: rgba(10, 10, 42, 0.4);
        }
        .faq-category.open .faq-category-content {
            max-height: 2000px; /* large enough for content */
        }
        .faq-item {
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 0.2s;
        }
        .faq-question:hover {
            background: rgba(255,255,255,0.02);
        }
        .faq-question h4 {
            margin: 0;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-light);
        }
        .faq-icon i {
            transition: transform 0.3s;
        }
        .faq-item.open .faq-icon i {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 1.5rem;
            color: var(--text-dim);
        }
        .faq-item.open .faq-answer {
            max-height: 500px; /* large enough for answer */
            padding-bottom: 1rem;
        }
        .faq-answer p {
            margin: 0;
        }

        /* ========== CONTACT SECTION ========== */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-top: 60px;
        }
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(74, 125, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            color: var(--planet-cyan);
        }
        .contact-text h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        .contact-text p {
            color: var(--text-dim);
        }
        .contact-form {
            background: rgba(10, 10, 42, 0.6);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--glass-border);
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            color: var(--text-light);
            font-family: var(--font-secondary);
            transition: all 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--planet-cyan);
            box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* ========== FOOTER ========== */
        footer {
            background: var(--deep-space);
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(74, 125, 255, 0.2);
        }
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-bottom: 50px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--text-light);
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            color: var(--text-dim);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-col ul li a:hover {
            color: var(--planet-cyan);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--glass-border);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        .devoloper {
            color: #ffffff;
        }
        .devoloper a {
            color: #9CCFFF;
            outline-color: #F0FFC3;
        }

        /* ========== SHOOTING STARS ========== */
        .shooting-star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 0 10px 2px white;
            z-index: 1;
        }
        .shooting-star::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, white, transparent);
            transform: rotate(-45deg);
            transform-origin: left;
        }

        /* ========== ANIMATIONS ========== */
        .reveal {
            opacity: 1;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        .reveal.active {
            opacity: 1 !important;
            transform: translateY(0);
        }

        /* ========== CUSTOM SCROLLBAR ========== */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--deep-space);
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, var(--starlight-blue), var(--planet-cyan));
            border-radius: 5px;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(1, 1, 18, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                gap: 10px;
                transition: right 0.4s ease;
                z-index: 1000;
                padding-top: 100px;
                padding-bottom: 30px;
                overflow-y: auto;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
            }
            .nav-links a {
                font-size: 1rem;
                padding: 12px 15px;
                display: block;
                width: 100%;
                max-width: 280px;
                margin: 0 auto;
            }
            .nav-links .cta-button {
                margin-top: 15px;
                width: 80%;
                max-width: 200px;
                text-align: center;
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            body.menu-open {
                overflow: hidden;
            }
            .container {
                width: 95%;
                padding: 0 15px;
            }
            .hero {
                padding-top: 130px;
                min-height: 90vh;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .motto {
                font-size: 1.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            .moon {
                display: none;
            }
            .team-section {
                padding: 70px 0;
                z-index: 10;
                background: var(--deep-space);
            }
            .team-grid {
                grid-template-columns: 1fr;
            }
            .member-image-container {
                height: 250px;
            }
            .objectives-container,
            .events-container,
            .about-container,
            .contact-container,
            .footer-container {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .gallery-container {
                grid-template-columns: 1fr;
            }
            .team-filter {
                flex-direction: column;
                align-items: center;
            }
            .filter-btn {
                width: 100%;
                max-width: 250px;
            }
            .team-stats {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (min-width: 769px) {
            .nav-links {
                display: flex !important;
            }
            .mobile-menu-btn {
                display: none;
            }
        }

        @media (min-width: 481px) and (max-width: 768px) {
            .objectives-container,
            .events-container,
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ========== FIXED SUPERVISOR SECTION ========== */

        /* ========== SUPERVISOR SECTION (ORIGINAL RATIO) ========== */
        .supervisor-section {
            background: linear-gradient(to bottom, var(--deep-space), var(--cosmic-black));
            padding: 100px 0;
        }

        .supervisor-card {
            display: grid;
            grid-template-columns: minmax(300px, 450px) 1fr;
            gap: 50px;
            align-items: flex-start;
            background: rgba(10, 10, 42, 0.6);
            border-radius: 20px;
            border: 1px solid var(--glass-border);
            padding: 40px;
        }

        .supervisor-image-wrap {
            background: transparent;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            height: fit-content;
        }

        .supervisor-image-container {
            width: 100%;
            display: block;
        }

        .supervisor-image {
            width: 100%;
            height: auto;
            display: block;
            transition: none;
            transform: none !important;
        }

        .supervisor-card:hover .supervisor-image {
            transform: none !important;
        }

        .supervisor-card:hover {
            border-color: var(--planet-cyan);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
        }

        .supervisor-content {
            display: flex;
            flex-direction: column;
        }

        .supervisor-name {
            font-size: 2.2rem;
            color: var(--text-light);
            margin-bottom: 5px;
        }

        .supervisor-role {
            color: var(--planet-cyan);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .supervisor-bio {
            color: var(--text-dim);
            font-size: 1rem;
            line-height: 1.7;
        }

        @media (max-width: 900px) {
            .supervisor-card {
                grid-template-columns: 1fr;
            }
            .supervisor-image-wrap {
                max-width: 320px;
                margin: 0 auto;
            }
        }
