:root{
  --bg-1:#0d1226;
  --bg-2:#111633;
  --primary:#5865F2;
  --primary-hover:#4752C4;
  --card:#1c2033cc;      
  --card-solid:#1c2033;  
  --text:#ffffff;
  --muted:#cbd5e1;
  --shadow:0 10px 40px rgba(0,0,0,.45);
  --radius:14px;
}

/* --- Reset / base --- */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Inter", "Segoe UI", Roboto, Arial, "Helvetica Neue", "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color:var(--text);
  background: radial-gradient(1200px 60% at 70% 10%, rgba(255,255,255,.06) 0%, rgba(255,255,255,0) 60%) ,
              linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
  overflow:hidden;
}

body::after{
  content:"";
  position:fixed; inset:-10%;
  box-shadow: inset 0 0 180px rgba(0,0,0,.45);
  pointer-events:none;
}

.screen{
  position:relative;
  height:100vh;
  width:100vw;
  padding:0 6vw;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:min(6vw,90px);
}

.brand{
  display:flex;
  align-items:center;
  gap:22px;
  transform:translateY(10px);
}

.brand-logo{
  width:88px; height:88px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, #7a88ff 0%, #5865F2 55%, #3e49b6 100%);
  display:grid; place-items:center;
  box-shadow:0 12px 30px rgba(69,79,191,.45);
  overflow:hidden;
}
.brand-logo img{
  width:72%; height:72%;
  object-fit:contain; display:block;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.25));
}

.brand-title{
  margin:0;
  font-weight:800;
  letter-spacing:.2px;
  font-size: clamp(28px, 3.2vw, 40px);
  color:#eef2ff;
  text-shadow: 0 1px 0 rgba(0,0,0,.2);
}

.card{
  width:min(460px, 90vw);
  border-radius:var(--radius);
  background:var(--card);
  backdrop-filter: blur(10px);
  box-shadow:var(--shadow);
}
.card-body{
  padding:28px 28px 10px 28px;
  text-align:center;
}
.card-title{
  margin:0 0 18px 0;
  font-weight:650;
  font-size: clamp(16px, 1.5vw, 20px);
  color:#e8ecff;
}

.btn-discord{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  padding:13px 14px;
  border-radius:10px;
  font-weight:700;
  font-size:16px;
  text-decoration:none;
  color:#fff;
  background:var(--primary);
  box-shadow: 0 6px 18px rgba(88,101,242,.35);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn-discord:hover{
  background:var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(71,82,196,.45);
}

.card-footer{
  margin:18px 10px 10px;
  background:linear-gradient(0deg, rgba(0,0,0,.28), rgba(0,0,0,.28));
  border-radius:10px;
  padding:10px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.footer-pill{
  background:transparent;
  border:0;
  color:#cfd7ff;
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:8px;
  font-weight:500;
  cursor:pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.footer-pill:hover{
  background:rgba(255,255,255,.06);
  color:#ffffff;
  transform: translateY(-1px);
}
.footer-pill i{font-size:16px}

@media (max-width: 900px){
  .screen{
    padding:6vw 5vw;
    flex-direction:column;
    justify-content:center;
    gap:28px;
  }
  .brand{
    justify-content:center;
  }
}
