:root {
            --font-display: 'Orbitron', sans-serif;
            --font-heading: 'Rajdhani', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        [data-theme="dark"] {
            --bg-primary: #0a0a0f;
            --bg-secondary: #0f0f18;
            --bg-tertiary: #151521;
            --bg-card: #18182a;
            --bg-card-hover: #1e1e36;
            --border-color: #252540;
            --border-accent: #ff2d55;
            --text-primary: #f0f0f8;
            --text-secondary: #a0a0c0;
            --text-muted: #6b6b8a;
            --accent: #ff2d55;
            --accent-glow: rgba(255, 45, 85, 0.4);
            --accent-secondary: #00e5ff;
            --accent-secondary-glow: rgba(0, 229, 255, 0.4);
            --accent-tertiary: #7b2fff;
            --success: #00e676;
            --discord: #5865f2;
            --gradient-hero: linear-gradient(135deg, #0a0a14 0%, #1a0a20 40%, #0a1420 100%);
            --gradient-card: linear-gradient(145deg, #18182a 0%, #1a1a30 100%);
            --gradient-accent: linear-gradient(135deg, #ff2d55, #ff6b8a);
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
            --shadow-glow: 0 0 40px rgba(255, 45, 85, 0.15);
            --noise-opacity: 0.03;
        }

        [data-theme="light"] {
            --bg-primary: #f5f5fa;
            --bg-secondary: #ffffff;
            --bg-tertiary: #eeeef5;
            --bg-card: #ffffff;
            --bg-card-hover: #f8f8ff;
            --border-color: #dcdce8;
            --border-accent: #e0245e;
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a6a;
            --text-muted: #8888a8;
            --accent: #e0245e;
            --accent-glow: rgba(224, 36, 94, 0.25);
            --accent-secondary: #0097b2;
            --accent-secondary-glow: rgba(0, 151, 178, 0.2);
            --accent-tertiary: #6b21d4;
            --success: #00b34b;
            --discord: #5865f2;
            --gradient-hero: linear-gradient(135deg, #f0f0f8 0%, #fae8f0 40%, #e8f0fa 100%);
            --gradient-card: linear-gradient(145deg, #ffffff 0%, #fafaff 100%);
            --gradient-accent: linear-gradient(135deg, #e0245e, #ff4d7a);
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
            --shadow-glow: 0 0 40px rgba(224, 36, 94, 0.1);
            --noise-opacity: 0.02;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            transition: background 0.35s ease, color 0.35s ease;
            position: relative;
            min-height: 100vh;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: var(--noise-opacity);
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.5'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: 200px 200px;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.25s ease;
            text-decoration: none;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient-accent);
            color: #fff;
            box-shadow: 0 4px 18px var(--accent-glow);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px var(--accent-glow);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--accent-secondary);
            color: var(--accent-secondary);
            box-shadow: 0 0 20px var(--accent-secondary-glow);
        }
        .btn-outline:hover {
            background: var(--accent-secondary);
            color: #000;
            box-shadow: 0 8px 30px var(--accent-secondary-glow);
            transform: translateY(-2px);
        }

        .btn-discord {
            background: var(--discord);
            color: #fff;
            font-weight: 600;
        }
        .btn-discord:hover {
            background: #4752c4;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(88, 101, 242, 0.4);
        }

        .btn-sm {
            padding: 8px 18px;
            font-size: 0.85rem;
            letter-spacing: 0.3px;
        }

        .btn-admin {
            background: var(--bg-tertiary);
            border: 1px solid var(--accent);
            color: var(--accent);
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            transition: all 0.25s ease;
            text-decoration: none;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        .btn-admin:hover {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 0 16px var(--accent-glow);
            transform: translateY(-1px);
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .badge-online {
            background: rgba(0, 230, 118, 0.15);
            color: var(--success);
            border: 1px solid var(--success);
        }

        .pulse-dot {
            display: inline-block;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            animation: pulse 1.8s infinite;
            background: var(--success);
            box-shadow: 0 0 10px var(--success);
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.35; }
        }

        
        .section-title {
            font-family: var(--font-display);
            font-size: 2.4rem;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 8px;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 60%;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
            box-shadow: 0 0 18px var(--accent-glow);
        }
        .section-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 48px;
            font-family: var(--font-heading);
            letter-spacing: 0.4px;
        }

        
        .navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-color);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: background 0.35s ease;
        }
        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            flex-wrap: wrap;
            gap: 12px;
        }
        .navbar-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--text-primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .navbar-logo span {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .navbar-links {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .navbar-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 8px 14px;
            border-radius: 6px;
            transition: all 0.2s ease;
            font-family: var(--font-heading);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .navbar-links a:hover,
        .navbar-links a.active {
            color: var(--accent);
            background: rgba(255, 45, 85, 0.06);
        }
        .navbar-controls {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .navbar-toggle {
            display: none;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            padding: 10px 14px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.2s ease;
        }
        .navbar-toggle:hover {
            border-color: var(--accent);
            box-shadow: 0 0 12px var(--accent-glow);
        }
        .theme-toggle {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            padding: 8px 14px;
            border-radius: 6px;
            cursor: pointer;
            font-family: var(--font-heading);
            font-size: 0.85rem;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .theme-toggle:hover {
            border-color: var(--accent);
            box-shadow: 0 0 12px var(--accent-glow);
        }

        
        .hero {
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            background: var(--gradient-hero);
        }
        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            border: 1px solid var(--accent);
            border-radius: 30px;
            font-family: var(--font-display);
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 24px;
            box-shadow: 0 0 24px var(--accent-glow);
        }
        .hero h1 {
            font-family: var(--font-display);
            font-size: 3.8rem;
            font-weight: 900;
            letter-spacing: 3px;
            line-height: 1.15;
            margin-bottom: 20px;
        }
        .hero h1 .highlight {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 36px;
            font-family: var(--font-heading);
            letter-spacing: 0.4px;
        }

        section {
            padding: 80px 0;
        }
        section:nth-child(even) {
            background: var(--bg-secondary);
        }

        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            margin-top: 20px;
        }

        .team-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.35s ease;
            position: relative;
        }
        .team-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-glow);
            transform: translateY(-6px);
        }
        .team-card-header {
            position: relative;
            padding: 40px 24px 0;
            text-align: center;
            background: linear-gradient(180deg, rgba(255,45,85,0.05) 0%, transparent 100%);
        }
        .team-avatar {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 3px solid var(--accent);
            margin: 0 auto 16px;
            position: relative;
            background: var(--bg-tertiary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            color: var(--text-muted);
            overflow: hidden;
            box-shadow: 0 0 30px var(--accent-glow);
        }
        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .team-status {
            position: absolute;
            bottom: 8px;
            right: 8px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 3px solid var(--bg-card);
            background: var(--success);
        }
        .team-card-body {
            padding: 20px 28px 32px;
            text-align: center;
        }
        .team-name {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }
        .team-role {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(255, 45, 85, 0.1);
            border: 1px solid rgba(255, 45, 85, 0.3);
            border-radius: 20px;
            color: var(--accent);
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }
        .team-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .team-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 20px;
        }
        .skill-tag {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            padding: 6px 14px;
            border-radius: 20px;
            font-family: var(--font-heading);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: var(--accent-secondary);
            transition: all 0.2s ease;
        }
        .skill-tag:hover {
            border-color: var(--accent-secondary);
            box-shadow: 0 0 12px var(--accent-secondary-glow);
            transform: translateY(-1px);
        }
        .team-contacts {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .contact-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        .contact-link:hover {
            border-color: var(--accent);
            color: var(--accent);
            box-shadow: 0 0 14px var(--accent-glow);
        }
		
.nav-item {
    position: relative;
}
.nav-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-item > a .fa-chevron-down {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}
.nav-item:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    box-shadow: var(--shadow-card);
    z-index: 1001;
}
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.15s ease;
    border-bottom: 1px solid transparent;
}
.dropdown-menu a:hover {
    background: rgba(255, 45, 85, 0.06);
    color: var(--accent);
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--bg-tertiary);
        border: none;
        border-radius: 0;
        box-shadow: none;
        display: none;
        padding: 0;
    }
    .nav-item.open-mobile .dropdown-menu {
        display: block;
    }
    .nav-item > a .fa-chevron-down {
        display: none;
    }
}
        .contact-link.discord:hover {
            border-color: #5865f2;
            color: #5865f2;
            box-shadow: 0 0 14px rgba(88, 101, 242, 0.4);
        }
        .contact-link.github:hover {
            border-color: #8b949e;
            color: #f0f6fc;
            box-shadow: 0 0 14px rgba(139, 148, 158, 0.3);
        }

        
        .join-section {
            text-align: center;
            padding: 60px 0;
        }
        .join-card {
            background: var(--bg-card);
            border: 2px solid var(--accent);
            border-radius: 16px;
            padding: 48px 32px;
            max-width: 700px;
            margin: 0 auto;
            box-shadow: var(--shadow-glow);
        }
        .join-card h3 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        .join-card p {
            color: var(--text-secondary);
            margin-bottom: 24px;
            font-size: 1.05rem;
        }

        
        footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            padding: 32px 0;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        footer a {
            color: var(--accent-secondary);
        }

        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.4rem;
                letter-spacing: 1px;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .team-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin-left: auto;
                margin-right: auto;
            }
            .navbar-inner {
                flex-direction: row;
                flex-wrap: wrap;
            }
            .navbar-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .navbar-links {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 2px;
                background: var(--bg-secondary);
                border-radius: 8px;
                padding: 8px 0;
                border: 1px solid var(--border-color);
            }
            .navbar-links.open {
                display: flex;
            }
            .navbar-links a {
                padding: 12px 16px;
                border-radius: 0;
                font-size: 0.95rem;
                border-bottom: 1px solid var(--border-color);
            }
            .navbar-links a:last-child {
                border-bottom: none;
            }
            .navbar-controls {
                flex-wrap: wrap;
            }
        }

        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .team-card {
            animation: fadeInUp 0.5s ease forwards;
        }
        .team-card:nth-child(1) { animation-delay: 0.1s; }
        .team-card:nth-child(2) { animation-delay: 0.2s; }
        .team-card:nth-child(3) { animation-delay: 0.3s; }
        .team-card:nth-child(4) { animation-delay: 0.4s; }
        .team-card:nth-child(5) { animation-delay: 0.5s; }
