        :root {
            --dark-bg: #0a0e17;
            --primary: #00e6f6;
            --accent: #a020f0;
            --light-text: #e6f1ff;
            --mid-gray: #2a3b4d;
            --dark-card: #121c29;
        }

        html {
            scroll-behavior: smooth;
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--dark-bg);
            color: var(--light-text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .header {
            background: linear-gradient(135deg, rgba(10, 14, 23, 0.9) 0%, rgba(25, 40, 65, 0.8) 100%);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--mid-gray);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

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

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-icon {
            color: var(--primary);
            font-size: 2.5rem;
            margin-right: 15px;
        }

        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 2px;
            background: linear-gradient(to right, var(--primary), #ffffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 40px;
        }

        .nav-link {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            transition: all 0.3s;
            padding: 8px 0;
        }

        .nav-link:hover {
            color: var(--primary);
        }

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

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

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.2;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 2;
        }

        .hero-tagline {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 20px;
        }

        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            letter-spacing: 2px;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(to bottom, #ffffff, #6a7b8d);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            max-width: 700px;
            margin-bottom: 50px;
            font-weight: 300;
        }

        .hero-btn {
            display: inline-block;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            color: var(--dark-bg);
            text-decoration: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 230, 246, 0.3);
        }

        .hero-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 230, 246, 0.5);
        }

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

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 80px;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            height: 4px;
            width: 80px;
            background: var(--primary);
            margin: 20px auto 0;
            border-radius: 10px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .card {
            background: var(--dark-card);
            border: 1px solid var(--mid-gray);
            border-radius: 15px;
            padding: 40px 30px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 230, 246, 0.4);
            box-shadow: 0 15px 40px rgba(0, 230, 246, 0.2);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(0, 230, 246, 0.05), transparent);
            z-index: 1;
        }

        .card-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 30px;
        }

        .card-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .card-text {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .member-card {
            background: var(--dark-card);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
        }

        .member-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 230, 246, 0.2);
        }

        .member-img {
            height: 280px;
            background: linear-gradient(135deg, var(--mid-gray), var(--dark-card));
            position: relative;
            overflow: hidden;
        }

        .member-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10, 14, 23, 0.9), transparent);
            display: flex;
            justify-content: center;
            align-items: flex-end;
            padding: 20px;
        }

        .member-icon {
            width: 60px;
            height: 60px;
            background: rgba(0, 230, 246, 0.1);
            border: 1px solid var(--primary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 5px;
            color: var(--primary);
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .member-icon:hover {
            background: var(--primary);
            color: var(--dark-bg);
        }

        .member-info {
            padding: 25px;
        }

        .member-name {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--light-text);
        }

        .member-role {
            color: var(--primary);
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .achievements {
            display: flex;
            justify-content: space-between;
            margin-top: 80px;
            text-align: center;
        }

        .achievement {
            padding: 30px;
            position: relative;
        }

        .achievement::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), transparent);
            border-radius: 10px;
        }

        .achievement-count {
            font-family: 'Orbitron', sans-serif;
            font-size: 4.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1;
        }

        .achievement-title {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
        }

        .footer {
            background: rgba(12, 20, 33, 0.9);
            border-top: 1px solid var(--mid-gray);
            padding: 70px 0 30px;
            position: relative;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .footer-title {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--primary);
        }

        .footer-text {
            font-size: 1.1rem;
            max-width: 500px;
            line-height: 1.8;
            margin-bottom: 30px;
            opacity: 0.8;
        }

        .contact-list {
            list-style: none;
        }

        .contact-item {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(0, 230, 246, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary);
            font-size: 1.2rem;
            margin-right: 15px;
        }

        .copyright {
            text-align: center;
            padding-top: 50px;
            font-size: 0.9rem;
            opacity: 0.6;
            letter-spacing: 1px;
        }

        /* Animated particles */
        .particle {
            position: absolute;
            border-radius: 50%;
            background: var(--primary);
            opacity: 0.3;
        }

        /* Media Queries */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 4rem;
            }

            .achievements {
                flex-direction: column;
            }

            .achievement::before {
                width: 100%;
                height: 3px;
                background: linear-gradient(to right, var(--primary), transparent);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-title {
                font-size: 3rem;
            }

            .grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }
        }