:root {
    --primary: #00ffff;
    --bg-dark: #0a0f1a;
    --bg-dark-alt: #101a2e;
    --text-light: #dff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
  }
  
  body {
    background: var(--bg-dark);
    background-image: url(./assets/bg_wolfpack.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 2rem 1rem;
    animation: backgroundFade 10s ease-in-out infinite alternate;
  }
  
  /* Header Navigation */
  header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(0, 0, 0, 0.3);
  }
  
  .logo {
    font-size: 1.3rem;
    font-weight: 700;
  }
  
  nav {
    display: flex;
    gap: 30px;
  }
  
  nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
  }
  
  nav a:hover {
    color: #00bcd4;
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
  }
  
  /* Container */
  .container {
    max-width: 970px;
    margin: auto;
    margin-top:70px;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
    animation: fadeIn 1s ease-in-out;
    justify-content: center;
  }
  
  .container > * {
    animation: slideFadeIn 0.8s ease forwards;
    animation-delay: 0.3s;
  }
  
  /* Typography */
  h1, h2 {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
    animation: glowPulse 3s infinite ease-in-out;
  }
  
  h1 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 1.5rem;
    margin: 2rem 0 0.8rem;
  }
  
  p, li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  /* Table */
  .roadmap-table {
    width: 100%;
    margin-top: 1rem;
    border-collapse: collapse;
  }
  
  .roadmap-table th, .roadmap-table td {
    border: 1px solid var(--border);
    padding: 0.8rem;
    color: #b2ebf2;
  }
  
  .roadmap-table th {
    background-color: rgba(0, 255, 255, 0.1);
    color: var(--primary);
  }
  
  /* CTA Button */
  .cta {
    margin-top: 3rem;
    text-align: center;
  }
  
  .cta a {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: #000;
    font-weight: bold;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 0 15px var(--primary);
    transition: 0.3s ease-in-out;
    animation: pulse 2s infinite;
  }
  
  .cta a:hover {
    background: #00cccc;
    box-shadow: 0 0 25px #00cccc;
  }
  
  /* Reveal Animation */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes backgroundFade {
    from { background-color: var(--bg-dark); }
    to { background-color: var(--bg-dark-alt); }
  }
  
  @keyframes glowPulse {
    0% { text-shadow: 0 0 10px var(--primary); }
    50% { text-shadow: 0 0 35px var(--primary); }
    100% { text-shadow: 0 0 10px var(--primary); }
  }
  
  @keyframes slideFadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 15px var(--primary); }
    50% { transform: scale(1.05); box-shadow: 0 0 25px var(--primary); }
    100% { transform: scale(1); box-shadow: 0 0 15px var(--primary); }
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.3rem; }
    p, li { font-size: 1rem; }
  
    .container {
      padding: 2rem 1.5rem;
    }
  
    nav {
      display: none;
      flex-direction: column;
      background: rgba(0, 0, 0, 0.8);
      position: absolute;
      top: 70px;
      right: 40px;
      padding: 15px 20px;
      border-radius: 8px;
      z-index: 1000;
    }
  
    nav.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }
 
  