/* ===== Fugu Casino — мобильный красочный сайт ===== */
:root {
  --bg-dark: #0d0a14;
  --bg-card: rgba(255, 255, 255, 0.06);
  --gold: #f4c430;
  --gold-dim: #d4a82a;
  --teal: #00d4aa;
  --teal-dim: #00b894;
  --pink: #ff6b9d;
  --violet: #a855f7;
  --cyan: #22d3ee;
  --orange: #fb923c;
  --white: #f8fafc;
  --muted: rgba(248, 250, 252, 0.75);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--teal);
  color: var(--bg-dark);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--white);
  background: var(--bg-dark);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
}

/* ===== HEADER ===== */
.header {
  position: relative;
  padding: 2rem 1.25rem 2.5rem;
  overflow: hidden;
}

.header-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(168, 85, 247, 0.4), transparent 50%),
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(0, 212, 170, 0.25), transparent 45%),
    radial-gradient(ellipse 70% 50% at 20% 60%, rgba(255, 107, 157, 0.2), transparent 40%),
    linear-gradient(180deg, #1a1525 0%, var(--bg-dark) 100%);
  z-index: 0;
}

.header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.logo-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 0 20px rgba(244, 196, 48, 0.5));
}

.logo h1 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dim) 100%);
  color: var(--bg-dark);
  box-shadow: 0 4px 24px rgba(0, 212, 170, 0.4);
}

.btn-primary:hover,
.btn-primary:active {
  transform: scale(1.03);
  box-shadow: 0 6px 28px rgba(0, 212, 170, 0.5);
}

/* ===== STICKY NAV ===== */
.nav-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(13, 10, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-sticky a {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-sticky a:hover {
  color: var(--teal);
  background: rgba(0, 212, 170, 0.12);
}

/* ===== MAIN — центрирование контента ===== */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== SECTIONS ===== */
.section {
  padding: 2rem 1.25rem;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.section-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
  padding-left: 0.75rem;
  border-left: 4px solid var(--teal);
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.section p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.section p:last-child {
  margin-bottom: 0;
}

.note {
  font-size: 0.9rem;
  opacity: 0.9;
}

.content-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.content-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.content-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.75rem;
}

.vip-list li {
  padding: 0.75rem 1rem 0.75rem 1.35rem;
  margin-bottom: 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--gold);
}

/* ===== CARDS GRID (INFO) ===== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.card {
  padding: 1.1rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:active {
  transform: scale(0.98);
}

.card-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.35rem;
}

.card h3 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.card p {
  font-size: 0.8rem;
  margin: 0;
  color: var(--muted);
}

.card p a {
  color: var(--teal);
  text-decoration: none;
  word-break: break-all;
}

.card-gold { border-left: 4px solid var(--gold); }
.card-teal { border-left: 4px solid var(--teal); }
.card-pink { border-left: 4px solid var(--pink); }
.card-violet { border-left: 4px solid var(--violet); }
.card-cyan { border-left: 4px solid var(--cyan); }
.card-orange { border-left: 4px solid var(--orange); }

.info-block {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(0, 212, 170, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 1rem;
}

.info-block p {
  margin: 0;
  font-size: 0.95rem;
}

/* ===== REGISTRATION ===== */
.section-reg .reg-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.25rem 0;
}

.reg-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 107, 157, 0.12) 0%, rgba(168, 85, 247, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reg-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.5rem;
}

.reg-card h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.reg-card p {
  margin: 0;
  font-size: 0.9rem;
}

/* ===== MIRROR & APP ===== */
.section-mirror {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.06) 0%, transparent 100%);
  border-radius: var(--radius);
}

.section-app {
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.06) 0%, transparent 100%);
  border-radius: var(--radius);
}

/* ===== PAYMENTS ===== */
.pay-list {
  list-style: none;
  margin: 1rem 0;
}

.pay-list li {
  padding: 0.6rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 212, 170, 0.1);
  border-left: 4px solid var(--teal);
  color: var(--white);
  font-weight: 600;
}

/* ===== BONUS HERO ===== */
.bonus-hero {
  padding: 1.75rem;
  margin: 1.25rem 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(244, 196, 48, 0.2) 0%, rgba(251, 146, 60, 0.15) 50%, rgba(255, 107, 157, 0.15) 100%);
  border: 1px solid rgba(244, 196, 48, 0.3);
  text-align: center;
}

.bonus-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.bonus-hero p {
  margin: 0.25rem 0;
  color: var(--white);
  font-size: 1.05rem;
}

.wager {
  font-size: 0.9rem !important;
  color: var(--muted) !important;
  margin-top: 0.5rem !important;
}

/* ===== VIP LEVELS ===== */
.vip-levels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.vip-card {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.vip-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}

.vip-card p {
  margin: 0;
  font-size: 0.9rem;
}

/* ===== SUPPORT ===== */
.section-support .btn {
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 1.25rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.footer p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.25rem 0;
}

/* ===== RESPONSIVE: чуть шире на планшетах ===== */
@media (min-width: 480px) {
  .section {
    max-width: 560px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cards-grid {
    gap: 1rem;
  }

  .card {
    padding: 1.25rem;
  }
}

@media (min-width: 640px) {
  .section {
    max-width: 620px;
  }

  .header-content {
    max-width: 620px;
  }

  .footer {
    max-width: 620px;
  }

  .header h1 {
    font-size: 2.25rem;
  }
}
