/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0b0c10;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    text-align: center;
    padding-bottom: 4rem;
  }
  
  /* Background: Stars + Animation Layers */
  .stars, .twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
  }
  .stars {
    background: url('https://i.imgur.com/6M513yy.png') repeat;
    animation: starsMove 200s linear infinite;
  }
  .twinkling {
    background: url('https://i.imgur.com/XLF3XPF.png') repeat;
    animation: twinkleMove 100s linear infinite;
    opacity: 0.25;
  }
  @keyframes starsMove {
    from { background-position: 0 0; }
    to { background-position: -10000px 5000px; }
  }
  @keyframes twinkleMove {
    from { background-position: 0 0; }
    to { background-position: 10000px 5000px; }
  }
  
  /* Page Content */
  .Header {
    padding: 5rem 2rem 2rem;
  }
  .Header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  .Header p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 2rem;
  }
  
  .Button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #3b82f6;
    color: white;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transition: background 0.3s ease, transform 0.2s ease;
  }
  .Button:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
  }
  
  .Container {
    margin: 2rem auto;
    padding: 2rem;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .Container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .Container p {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.6;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .Header h1 {
      font-size: 2.2rem;
    }
    .Header p {
      font-size: 1rem;
    }
    .Container {
      padding: 1.5rem;
      margin: 1.5rem 1rem;
    }
  }
  
  /* Optional Floating Lines (subtle) */
  .lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    display: flex;
    justify-content: space-between;
  }
  .line {
    width: 1px;
    height: 100%;
    overflow: hidden;
  }
  .line::after {
    content: '';
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -20%;
    left: 0;
    background: linear-gradient(to bottom, transparent, #38bdf8);
    animation: floatLine 8s infinite;
    opacity: 0.4;
  }
  .line:nth-child(odd)::after { animation-delay: 2s; }
  .line:nth-child(even)::after { animation-delay: 4s; }
  
  @keyframes floatLine {
    0% { top: -20%; }
    100% { top: 120%; }
  }
