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

:root {
  --gold: #e5c200;
  --gold-light: #ffd700;
  --gold-dark: #b89a00;
  --purple-dark: #0d0520;
  --purple-mid: #1a0a3e;
  --purple-light: #2a1260;
  --red: #c0392b;
  --red-light: #e74c3c;
  --text: #f0e6ff;
  --text-muted: #a89cc8;
  --card-bg: rgba(26,10,62,0.85);
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: var(--purple-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,5,32,0.97);
  border-bottom: 2px solid var(--gold-dark);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(8px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(229,194,0,.5);
}

.logo img { height: 38px; border-radius: 6px; }

nav { display: flex; align-items: center; gap: 24px; }
nav a { font-size: 14px; color: var(--text-muted); font-weight: 600; letter-spacing: .5px; transition: color .2s; }
nav a:hover { color: var(--gold); }

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #e5c200, #b89a00);
  color: #0d0520 !important;
  font-weight: 900;
  font-size: 15px;
  border-radius: 8px;
  padding: 10px 24px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 18px rgba(229,194,0,.35);
  letter-spacing: .5px;
  text-align: center;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(229,194,0,.55); }
.btn:active { transform: translateY(0); }

.btn-red {
  background: linear-gradient(135deg, #e74c3c, #9b1a12);
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(231,76,60,.35);
}
.btn-red:hover { box-shadow: 0 8px 28px rgba(231,76,60,.55); }

.btn-lg { font-size: 18px; padding: 16px 40px; border-radius: 10px; }
.btn-full { width: 100%; display: block; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: url('images/azinobanner.png') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(13,5,32,0.75) 0%,
    rgba(13,5,32,0.55) 50%,
    rgba(13,5,32,0.92) 100%);
}

.hero-inner { position: relative; z-index: 1; max-width: 820px; }

.hero-badge {
  display: inline-block;
  background: var(--red-light);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(30px, 6vw, 58px);
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(229,194,0,.6);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p {
  font-size: clamp(15px, 2.5vw, 19px);
  color: var(--text);
  max-width: 620px;
  margin: 0 auto 36px;
  opacity: .92;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.stat-box {
  background: rgba(26,10,62,.75);
  border: 1px solid rgba(229,194,0,.25);
  border-radius: 10px;
  padding: 18px 12px;
  text-align: center;
}

.stat-box .num {
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
}

.stat-box .lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── SECTIONS ── */
section { padding: 80px 24px; }

.container { max-width: 1200px; margin: 0 auto; }

.section-title {
  text-align: center;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ── GAMES GRID ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid rgba(229,194,0,.18);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(229,194,0,.2);
  border-color: rgba(229,194,0,.5);
}

.game-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.game-card-body {
  padding: 12px 14px;
}

.game-card-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.game-card-body span {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

/* ── CATEGORIES ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  text-decoration: none;
  height: 180px;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.cat-card:hover img { transform: scale(1.07); }

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13,5,32,.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.cat-card-overlay h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--gold);
}

/* ── BONUSES ── */
.bonus-section { background: var(--purple-mid); }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.bonus-card {
  background: rgba(13,5,32,.7);
  border: 1px solid rgba(229,194,0,.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}

.bonus-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.bonus-icon {
  font-size: 44px;
  margin-bottom: 12px;
}

.bonus-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}

.bonus-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }

.bonus-amount {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #e5c200, #b89a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
}

/* ── SEO TEXT ── */
.seo-section { background: var(--purple-dark); }

.seo-content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.85;
}

.seo-content h2 {
  color: var(--gold);
  font-size: 24px;
  font-weight: 800;
  margin: 40px 0 14px;
}

.seo-content h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
}

.seo-content p { margin-bottom: 16px; }
.seo-content strong { color: var(--text); }
.seo-content ul { padding-left: 20px; margin-bottom: 16px; }
.seo-content ul li { margin-bottom: 8px; }

/* ── MIRROR BANNER ── */
.mirror-banner {
  background: linear-gradient(135deg, #1a0a3e, #2a1260);
  border: 1px solid rgba(229,194,0,.3);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

.mirror-banner h2 {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
}

.mirror-banner p { color: var(--text-muted); max-width: 560px; margin: 0 auto 24px; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(229,194,0,.15);
  padding: 20px 0;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  cursor: pointer;
  user-select: none;
}

.faq-item h3:hover { color: var(--gold); }

.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  overflow: hidden;
  max-height: 200px;
  transition: max-height .3s ease;
}

.faq-item.collapsed p { max-height: 0; margin-bottom: 0; }

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid rgba(229,194,0,.18);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0520;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h3 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.step-card p { color: var(--text-muted); font-size: 14px; }

/* ── FOOTER ── */
footer {
  background: #080212;
  border-top: 2px solid rgba(229,194,0,.2);
  padding: 48px 24px 28px;
  text-align: center;
}

.footer-logo {
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-links a { color: var(--text-muted); font-size: 14px; }
.footer-links a:hover { color: var(--gold); }

.footer-disclaimer {
  font-size: 12px;
  color: #5a4e78;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(229,194,0,.4); }
  50% { box-shadow: 0 8px 36px rgba(229,194,0,.75); }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { display: none; }
  .hero h1 { font-size: 28px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-lg { font-size: 16px; padding: 14px 28px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mirror-banner { padding: 24px 16px; }
  section { padding: 56px 16px; }
  .sticky-cta { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 auto 40px;
}

.tag {
  display: inline-block;
  background: rgba(229,194,0,.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
