:root {
    --bg: #ff8c1a;
    --accent: #ffbb55;
    --text: #fff6ed;
    --muted: rgba(255,255,255,0.8);
    --glass: rgba(255,255,255,0.15);
    --radius: 16px;
    --maxw: 900px;
    color-scheme: dark;
  }
  
  * { box-sizing: border-box; margin: 0; padding: 0; }
  
  html, body { height: 100%; }
  
  body {
    font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: radial-gradient(1200px 600px at 10% 10%, rgba(255,255,255,0.1), transparent),
                radial-gradient(900px 400px at 90% 90%, rgba(255,255,255,0.06), transparent),
                var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    padding: 32px;
  }
  
  .wrap {
    width: 100%;
    max-width: var(--maxw);
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  }
  
  .logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  }
  
  h1 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  
  p.lead {
    color: var(--muted);
    max-width: 600px;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .card {
    background: rgba(0,0,0,0.2);
    padding: 20px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  
  .progress {
    height: 10px;
    border-radius: 999px;
    background: var(--glass);
    overflow: hidden;
    margin-top: 10px;
  }
  
  .bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #ffe1a1);
    transition: width 1.2s ease;
  }
  
  .progress-text {
    margin-top: 6px;
    font-size: 14px;
    opacity: 0.8;
  }
  
  .discord-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5865f2, #7289da);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(88,101,242,0.3);
  }
  
  .discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88,101,242,0.5);
  }
  
  footer {
    margin-top: 30px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
  }
  