/* ================================
   Global Theme Variables
================================== */
:root {
    --primary-color: #00aaff;
    --accent-color: #ffd944;
    --background-dark: #050509;
    --background-section: #0c0c12;
    --card-bg: #14141f;
    --text-light: #ffffff;
    --text-dim: #a8a8b3;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --card-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    --radius-lg: 16px;
    --transition-fast: 0.25s ease;
  }
  
  /* ================================
     Reset & Base
  ================================== */
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    background: radial-gradient(circle at top left, #101023, #050509 55%);
  }
  
  .container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  h2, h3, h4 {
    font-weight: 600;
  }
  
  /* ================================
     Header / Navbar
  ================================== */
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 9, 0.96);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(16px);
    z-index: 1000;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
  }
  
  .logo {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--primary-color);
  }
  
  .plus {
    color: var(--accent-color);
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    align-items: center;
  }
  
  nav ul li a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.98rem;
    position: relative;
    transition: color var(--transition-fast);
  }
  
  nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width var(--transition-fast);
  }
  
  nav ul li a:hover {
    color: var(--text-light);
  }
  
  nav ul li a:hover::after {
    width: 100%;
  }
  
  /* ================================
     Mobile Nav
  ================================== */
  
  .mobile-menu-btn {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--text-light);
  }
  
  nav {
    transition: transform 0.3s ease;
  }
  
  nav.active {
    transform: translateX(0);
  }
  
  @media (max-width: 700px) {
    nav {
      position: fixed;
      top: 70px;
      right: 0;
      width: 200px;
      background: #0d0d15;
      padding: 16px 20px;
      border-left: 1px solid var(--border-subtle);
      box-shadow: -5px 0 20px rgba(0, 0, 0, 0.4);
      transform: translateX(100%);
    }
  
    nav ul {
      flex-direction: column;
      gap: 18px;
    }
  
    .mobile-menu-btn {
      display: block;
    }
  }
  
  /* ================================
     Hero Section
  ================================== */
  
  .hero-section {
    padding: 130px 0 96px;
    background: transparent;
    position: relative;
  }
  
  .hero-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
  }
  
  /* Hero cards */
  .hero-content {
    flex: 1 1 320px;
    max-width: 520px;
    background: radial-gradient(circle at top left, #17172b, #0c0c16);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-subtle);
  }
  
  .hero-content h2 {
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 16px;
  }
  
  .hero-content p {
    font-size: 0.98rem;
    color: var(--text-dim);
    margin-bottom: 26px;
  }
  
  /* CTA Button */
  .primary-cta {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color), #4cc3ff);
    box-shadow: 0 12px 30px rgba(0, 170, 255, 0.35);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  }
  
  .primary-cta:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow: 0 16px 38px rgba(0, 170, 255, 0.45);
  }
  
  /* ================================
     Glowing Gradient Blobs
  ================================== */
  
  .gradient-blob {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.5;
    z-index: -1;
  }
  
  .blob-blue {
    background: #00aaff;
    top: 180px;
    left: -120px;
  }
  
  .blob-gold {
    background: #ffd944;
    top: 320px;
    right: -150px;
  }
  
  /* ================================
     Scroll Animation
  ================================== */
  
  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .reveal {
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
  }
  
  .delay-1 { animation-delay: 0.2s; }
  .delay-2 { animation-delay: 0.4s; }
  .delay-3 { animation-delay: 0.6s; }
  
  /* ================================
     Team Section
  ================================== */
  
  .project-section {
    padding: 40px 0 80px;
    background: var(--background-section);
    border-top: 1px solid var(--border-subtle);
    border-radius: 32px 32px 0 0;
    margin-top: -18px;
    text-align: center;
  }
  
  .section-subtitle {
    color: var(--text-dim);
    max-width: 520px;
    margin: 0 auto 36px;
    font-size: 0.98rem;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
  
  /* Developer Cards */
  .developer-card {
    background: var(--card-bg);
    padding: 20px 18px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-subtle);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  }
  
  .developer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 170, 255, 0.6);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.7);
  }
  
  .dev-img {
    width: 96px;
    height: 96px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 3px solid rgba(0, 170, 255, 0.8);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
  }
  
  .profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .developer-card h4 {
    font-size: 1.07rem;
    margin-bottom: 2px;
  }
  
  .developer-card .role {
    font-size: 0.86rem;
    color: var(--primary-color);
    margin-bottom: 12px;
  }
  
  .social-links a {
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 217, 68, 0.4);
    background: rgba(255, 217, 68, 0.04);
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  }
  
  .social-links a:hover {
    background: var(--accent-color);
    color: #1a1a20;
    border-color: transparent;
    transform: translateY(-2px);
  }
  
  /* ================================
     Footer
  ================================== */
  
  footer {
    background: #050508;
    padding: 18px 0;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
  }
  
  footer p {
    color: var(--text-dim);
    font-size: 0.85rem;
  }
  
  /* ================================
     Responsive Layout
  ================================== */
  
  @media (max-width: 900px) {
    .hero-section {
      padding-top: 110px;
    }
  
    .hero-section .container {
      flex-direction: column;
    }
  
    .team-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .logo {
      font-size: 1.6rem;
    }
  
    nav ul {
      gap: 14px;
    }
  
    .hero-section {
      padding: 104px 0 70px;
    }
  
    .hero-content {
      padding: 24px 20px;
    }
  
    .team-grid {
      grid-template-columns: 1fr;
    }
  }
  .warning-section { padding: 40px 0; }
        .warning-card {
            background: var(--warning-bg);
            border: 1px solid rgba(255, 193, 7, 0.2);
            padding: 32px;
            border-radius: 24px;
            display: flex;
            align-items: flex-start;
            gap: 24px;
            backdrop-filter: blur(10px);
        }
        .warning-icon { color: var(--accent); font-size: 1.5rem; font-weight: 800; }
        .warning-card h5 { color: var(--accent); margin-bottom: 8px; text-transform: uppercase; }
        .warning-card p { font-size: 0.9rem; opacity: 0.8; }