    /* ================= GLOBAL & THEME ================= */
    :root {
      --bg-dark: #050a15;
      --bg-panel: #0a1128;
      --electric-blue: #00d4ff;
      --text-main: #e2e8f0;
      --text-muted: #94a3b8;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      background-color: var(--bg-dark);
      background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      color: var(--text-main);
      scroll-behavior: smooth;
      line-height: 1.6;
    }

    h1, h2, h3 {
      font-family: 'Courier New', Courier, monospace;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--electric-blue);
    }

    @keyframes pulseGlow {
      0% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.2); }
      50% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.6); }
      100% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.2); }
    }

    /* ================= NAVBAR ================= */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(5, 10, 21, 0.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0, 212, 255, 0.2);
      padding: 20px 0;
      text-align: center;
      z-index: 1000;
    }

    nav a {
      color: var(--text-main);
      margin: 0 25px;
      text-decoration: none;
      font-family: 'Courier New', Courier, monospace;
      font-weight: bold;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: color 0.3s;
    }

    nav a:hover {
      color: var(--electric-blue);
      text-shadow: 0 0 10px var(--electric-blue);
    }

    /* ================= SECTIONS ================= */
    section {
      min-height: 100vh;
      padding: 120px 20px 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    section:not(:first-of-type) {
      border-top: 1px solid rgba(0, 212, 255, 0.1);
    }

    /* ================= CONTENT & INTRO ================= */
    h1 {
        text-align: center;
        font-size: 2.8rem;
        margin-bottom: 30px;
        text-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
    }

    h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 30px;
        color: white;
    }

    .content {
      max-width: 800px;
      margin: auto;
      text-align: left;
      font-size: 1.15rem;
      background: var(--bg-panel);
      padding: 40px;
      border-left: 4px solid var(--electric-blue);
      border-radius: 0 8px 8px 0;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .content em {
        color: var(--electric-blue);
        font-style: normal;
        font-weight: bold;
    }

    /* ================= TEAM GRID ================= */
    .team-section {
        width: 100%;
        max-width: 1100px;
        margin-bottom: 60px;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 30px;
    }

    .team-card {
        background: var(--bg-panel);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 30px 20px;
        border-radius: 12px;
        text-align: center;
        transition: 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .team-card img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--text-muted);
        margin-bottom: 15px;
        transition: border-color 0.3s;
    }

    .advisor-grid {
        display: flex;
        justify-content: center;
    }

    .advisor-grid .team-card {
        width: 250px;
        margin-top: 10px;
    }

    /* THE EMPHASIZED ENGINEER TAG */
    .role {
        display: inline-block;
        color: var(--electric-blue);
        font-family: 'Courier New', Courier, monospace;
        font-size: 0.75rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: 1px solid rgba(0, 212, 255, 0.5);
        padding: 4px 12px;
        border-radius: 4px;
        background: rgba(0, 212, 255, 0.05);
        margin-bottom: 15px;
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.1);
    }

    .team-card:hover {
        transform: translateY(-5px);
        border-color: var(--electric-blue);
    }
    
    .team-card:hover img {
        border-color: var(--electric-blue);
    }

    .team-card:hover .role {
        background: rgba(0, 212, 255, 0.15);
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
        border-color: var(--electric-blue);
    }

    .desc {
        color: var(--text-muted);
        font-size: 0.85rem;
        line-height: 1.5;
        margin: 0;
    }

    /* ================= DOCS & VIDEO GRID ================= */
    .docs-container {
        width: 100%;
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .docs-group {
        background: var(--bg-panel);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 40px;
    }

    .docs-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-bottom: 40px;
    }

    .doc-btn {
        display: inline-block;
        padding: 12px 24px;
        border: 1px solid var(--electric-blue);
        color: var(--electric-blue);
        text-decoration: none;
        font-family: 'Courier New', Courier, monospace;
        font-weight: bold;
        border-radius: 4px;
        transition: 0.3s;
    }

    .doc-btn:hover {
        background: rgba(0, 212, 255, 0.1);
        animation: pulseGlow 1.5s infinite alternate;
    }

    .video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 20px;
    }

    .video-card {
        background: rgba(5, 10, 21, 0.4);
        padding: 15px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .video-title {
        color: var(--text-main);
        font-size: 1rem;
        margin-bottom: 12px;
        text-align: center;
        letter-spacing: 1px;
    }

    .video {
        position: relative;
        padding-bottom: 56.25%; 
        height: 0;
        overflow: hidden;
        border-radius: 6px;
        border: 1px solid rgba(0, 212, 255, 0.2);
    }

    .video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
