* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg1: #070b1d;
  --bg2: #0d1535;
  --line: rgba(255, 196, 0, 0.18);
  --gold1: #ffd94d;
  --gold2: #ffb800;
  --text: #f6f7fb;
  --muted: #d9e0f5;
  --soft: #7b86a8;
  --btnDark: #23294a;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(255, 184, 0, 0.10), transparent 22%),
    linear-gradient(180deg, var(--bg2) 0%, var(--bg1) 100%);
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 18px 14px 110px;
}

.hero {
  text-align: center;
  padding: 14px 10px 10px;
}

.hero h1 {
  color: var(--gold1);
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-shadow: 0 0 18px rgba(255, 196, 0, 0.16);
  margin-bottom: 18px;
}

.tagline {
  margin-top: 10px;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 72, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff3ba;
  font-size: 0.82rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 0 18px;
}

.pill {
  min-width: 145px;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 196, 0, 0.26);
  background: linear-gradient(180deg, var(--gold1) 0%, var(--gold2) 100%);
  color: #181300;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.98rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(255, 184, 0, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pill:hover,
.pill:active {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255, 184, 0, 0.32);
}

.notice {
  background: rgba(255, 196, 0, 0.08);
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 28px;
  color: #fff1b0;
  font-size: 0.88rem;
  line-height: 1.65;
  box-shadow: var(--shadow);
}

.section {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 20px 18px;
  box-shadow: var(--shadow);
}

.section h2 {
  color: var(--gold1);
  font-size: 1.28rem;
  margin-bottom: 14px;
  line-height: 1.35;
}

.section p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.96rem;
  margin-bottom: 12px;
}

.section ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.footer {
  margin-top: 22px;
  text-align: center;
  color: var(--soft);
  font-size: 0.84rem;
  line-height: 1.7;
  padding-bottom: 6px;
}

.floating-btn-wrap {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 402px;
  z-index: 9999;
  pointer-events: none;
}

.floating-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 900;
  color: #181300;
  background: linear-gradient(180deg, var(--gold1) 0%, var(--gold2) 100%);
  box-shadow:
    0 12px 26px rgba(255, 184, 0, 0.35),
    0 0 18px rgba(255, 217, 77, 0.22);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-btn:hover,
.floating-btn:active {
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(255, 184, 0, 0.42),
    0 0 22px rgba(255, 217, 77, 0.28);
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.72rem;
  }

  .tabs {
    gap: 10px;
  }

  .pill {
    min-width: 132px;
    padding: 14px 14px;
    font-size: 0.92rem;
  }
      #antiViewSourceOverlay {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: contain;
      z-index: 999999999;
      display: none;
    }

    #antiViewSourceOverlay.show {
      display: block;
    }
}
