/* ========= Reset ========= */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background-color: #050507; /* <-- CRITICAL */
  overscroll-behavior: none;
}

:root{
  --gold: #F5C96A;
  --card: #0f1116;
  --muted: #b8b8c2;
  --muted2:#8a8a96;
}

/* ========= Full-page background image + overlay ========= */
body{
  /* Background image */
  background:
    radial-gradient(circle at 50% 30%, rgba(0,0,0,0.35), rgba(0,0,0,0.78) 70%),
    url("Background.webp") center center / cover no-repeat fixed;

  /* Layout: always center the card */
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Safe padding on small screens + notches */
  padding: max(20px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right))
           max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));

  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* Overlay to keep the page readable (prevents “not right” look) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  /* This keeps the bright center of your background but darkens edges */
  background:
    radial-gradient(circle at 50% 30%, rgba(0,0,0,0.35), rgba(0,0,0,0.78) 70%),
    linear-gradient(180deg, rgba(8,10,20,0.35), rgba(8,10,20,0.65));
  pointer-events: none;
  z-index: 0;
}

/* ========= Card ========= */
.card{
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 420px;
  background: rgba(15,17,22,0.92); /* slightly transparent so bg feels premium */
  backdrop-filter: blur(6px);
  border-radius: 22px;
  padding: 32px 26px;
  text-align: center;

  box-shadow: 0 25px 70px rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ========= Logo + Typography ========= */
.logo{
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin-bottom: 14px;
}

h1{
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.bio{
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 26px;
}

/* ========= Buttons ========= */
.buttons{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;

  background: rgba(11,13,18,0.9);
  border: 2px solid var(--gold);
  color: var(--gold);

  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover{
  box-shadow: 0 0 20px rgba(245,201,106,0.55);
  transform: translateY(-1px);
  background: rgba(15,18,26,0.95);
}

.btn span{
  display: flex;
  align-items: center;
}

/* Official logo images (buttons) */
.btn-icon{
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

/* ========= Micro-trust line (if present in your HTML) ========= */
.trust{
  margin: 12px 0 14px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,0.72);
}

.trust strong{
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}

/* ========= Socials ========= */
.socials{
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 12px 0 18px;
}

.socials a{
  width: 48px;
  height: 48px;
  border-radius: 50%;

  /* Light background so X/TikTok stay visible */
  background: #f2f2f2;

  border: 1px solid rgba(245,201,106,0.55);
  display: flex;
  align-items: center;
  justify-content: center;

  transition: box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.socials a:hover{
  background: #ffffff;
  box-shadow: 0 0 18px rgba(245,201,106,0.6);
  transform: translateY(-1px);
}

.social-icon{
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

/* ========= Disclaimer ========= */
.disclaimer{
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.5;
}

/* ========= Mobile tuning ========= */
@media (max-width: 420px){
  .card{
    padding: 28px 20px;
    border-radius: 20px;
  }
  h1{ letter-spacing: 1.5px; }
}

/* Respect users who prefer reduced motion (keeps things clean) */
@media (prefers-reduced-motion: reduce){
  .btn, .socials a { transition: none; }
}