* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Helvetica, Arial, sans-serif;
    background: #0f172a;
    color: #e5e7eb;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .container {
    text-align: center;
    max-width: 560px;
    padding: 24px;
  }

  .logo {
    width: 200px;
    max-width: 80%;
    height: auto;
    margin-bottom: 32px;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }
  
  .subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
  }
  
  .divider {
    width: 60px;
    height: 2px;
    background: #38bdf8;
    margin: 32px auto;
  }
  
  .note {
    font-size: 0.95rem;
    color: #cbd5f5;
    line-height: 1.6;
  }
  
  footer {
    margin-top: 48px;
    font-size: 0.8rem;
    color: #64748b;
  }
  