:root {
    --primary: #00ffff;
    --bg-dark: #0a0f1a;
    --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;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    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-top: 90px;
  }
  
  header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    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;
  }
  
  .hero {
    height: 100vh;
    background: url('your-background.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
  }
  /* MAIN CONTAINER */
  .container {
    max-width: 970px;
    margin: auto;
    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);
  }
  
  /* TITLES */
  h1 {
    text-align: center;
    font-size: 2.4rem;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
    margin-bottom: 2rem;
    animation: glowPulse 3s infinite ease-in-out;
  }
  
  h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .date {
    color: #b2ebf2;
    font-weight: bold;
    margin-bottom: 0.8rem;
  }
  
  /* TIMELINE STYLING */
  .timeline .phase {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-left: 2px solid var(--primary);
    animation: fadeIn 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
  }
  
  .timeline .phase.right {
    border-left: none;
    border-right: 2px solid var(--primary);
    text-align: right;
  }
  
  ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
  }
  
  ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
  }
  
  /* ANIMATIONS */
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @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); }
  }
  
    /* 🔻 ریسپانسیو */
  
    @media (max-width: 768px) {
        .hero h1 {
          font-size: 2.2rem;
        }
      
        .hero p {
          font-size: 1rem;
        }
      
        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;
        }
      
        nav.active {
          display: flex;
        }
      
        .menu-toggle {
          display: block;
        }
      }
      
      @media (max-width: 480px) {
        .hero h1 {
          font-size: 1.8rem;
        }
      
        .hero p {
          font-size: 0.9rem;
        }
      
        .btn {
          padding: 9px 20px;
          font-size: 0.9rem;
        }
      
        header {
          padding: 15px 20px;
        }
      }
    .title {
    font-size: 2rem;
    }
    .timeline .phase {
      text-align: left !important;
      border-right: none !important;
      border-left: 2px solid var(--primary) !important;
    }
  
  
  