/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #f0a500;
  --gold-light:  #f5d020;
  --gold-dark:   #c47f00;
  --red:         #e63946;
  --bg-deep:     #05020f;
  --bg-dark:     #0d0820;
  --bg-card:     #131030;
  --bg-card2:    #1a1540;
  --text:        #f0eafa;
  --text-muted:  #9588b8;
  --border:      rgba(240,165,0,0.22);
  --radius:      14px;
  --shadow-gold: 0 0 24px rgba(240,165,0,0.28);
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }

/* ===== HEADER / NAV ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(5,2,15,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.55rem; font-weight: 800; letter-spacing: 1px;
  color: var(--gold);
}

.logo img { width: 42px; height: 42px; }

.logo span { color: #fff; }

.nav { display: flex; align-items: center; gap: 28px; }

.nav a {
  font-size: 0.9rem; font-weight: 600; color: var(--text-muted);
  transition: color .25s;
  letter-spacing: 0.5px;
}

.nav a:hover { color: var(--gold); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000 !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px;
  transition: box-shadow .25s, transform .2s !important;
}

.nav-cta:hover {
  box-shadow: 0 0 20px rgba(240,165,0,0.55);
  transform: translateY(-1px);
  color: #000 !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/azinobanner.png'), url('images/pinco.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,2,15,0.45) 0%,
    rgba(5,2,15,0.62) 50%,
    rgba(5,2,15,0.92) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 60px 24px 80px;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  background: rgba(240,165,0,0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

.hero h1 .brand { color: var(--gold); }

.hero p {
  font-size: 1.15rem;
  color: rgba(240,234,255,0.85);
  max-width: 580px;
  margin: 0 auto 38px;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1rem; font-weight: 800;
  padding: 16px 38px;
  border-radius: 50px;
  cursor: pointer;
  transition: all .25s;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #000;
  box-shadow: 0 6px 28px rgba(240,165,0,0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(240,165,0,0.65);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: rgba(240,165,0,0.12);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-red {
  background: linear-gradient(135deg, #ff4757, #e63946);
  color: #fff;
  box-shadow: 0 6px 28px rgba(230,57,70,0.4);
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(230,57,70,0.6);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(90deg, rgba(13,8,32,0.98), rgba(20,12,48,0.98));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}

.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: space-around; align-items: center;
}

.stat-item { text-align: center; }

.stat-num {
  font-size: 1.9rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== SECTION ===== */
.section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ===== GAME CARDS ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55), var(--shadow-gold);
  border-color: rgba(240,165,0,0.5);
}

.game-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
  display: block;
}

/* CSS fallback when image missing */
.game-card-img-wrap {
  width: 100%; height: 200px;
  position: relative;
  overflow: hidden;
}

.game-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

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

.game-card-img-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  min-height: 200px;
}

.gc-slots    { background: linear-gradient(135deg, #1a0535 0%, #3d0068 50%, #6a00b8 100%); }
.gc-live     { background: linear-gradient(135deg, #001a35 0%, #00306a 50%, #0055b8 100%); }
.gc-roulette { background: linear-gradient(135deg, #0a1a00 0%, #1a4000 50%, #2d6a00 100%); }
.gc-jackpot  { background: linear-gradient(135deg, #1a1000 0%, #3d2b00 50%, #6a4900 100%); }
.gc-poker    { background: linear-gradient(135deg, #1a0010 0%, #3d0028 50%, #6a0045 100%); }
.gc-bonus    { background: linear-gradient(135deg, #001a1a 0%, #003d3d 50%, #006a6a 100%); }

.game-card-body { padding: 20px; }

.game-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.game-card-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.game-card-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
}

.card-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  transition: all .2s;
}

.card-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ===== BONUS BANNER ===== */
.bonus-section {
  background: linear-gradient(135deg, #0d0820 0%, #1a0840 50%, #0d0820 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}

.bonus-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.bonus-content h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.bonus-content h2 span { color: var(--gold); }

.bonus-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.bonus-perks { list-style: none; margin-bottom: 36px; }

.bonus-perks li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.bonus-perks li:last-child { border-bottom: none; }

.perk-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(240,165,0,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

.bonus-visual {
  display: flex; flex-direction: column; gap: 20px;
}

.bonus-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: transform .3s;
}

.bonus-card:hover { transform: translateY(-4px); }

.bonus-amount {
  font-size: 2.2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-card p {
  font-size: 0.85rem; color: var(--text-muted);
  margin-top: 6px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform .3s, border-color .3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: rgba(240,165,0,0.45);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.feature-item h3 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== SEO TEXT ===== */
.seo-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 80px 24px;
}

.seo-inner {
  max-width: 900px; margin: 0 auto;
}

.seo-inner h2 {
  font-size: 1.7rem; font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
}

.seo-inner h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--gold-light);
  margin-top: 32px; margin-bottom: 12px;
}

.seo-inner p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.seo-checklist {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.seo-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-muted);
  padding: 8px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.seo-checklist li::before { content: "✓"; color: var(--gold); font-weight: 900; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 90px 24px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(240,165,0,0.08) 0%, transparent 70%);
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-section h2 span { color: var(--gold); }

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(5,2,15,0.97);
  border-top: 1px solid var(--border);
  padding: 50px 24px 30px;
}

.footer-inner {
  max-width: 1100px; margin: 0 auto;
}

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}

.footer-brand h3 {
  font-size: 1.4rem; font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color .2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.age-badge {
  background: rgba(240,165,0,0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 6px;
}

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

.sticky-cta a {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 14px 26px;
  border-radius: 50px;
  box-shadow: 0 6px 30px rgba(240,165,0,0.5);
  transition: transform .2s, box-shadow .2s;
}

.sticky-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(240,165,0,0.7);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(240,165,0,0.5); }
  50% { box-shadow: 0 8px 45px rgba(240,165,0,0.75); }
}

/* ===== COUNTDOWN BAR ===== */
.countdown-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #1a0535 0%, #2a0a4a 50%, #1a0535 100%);
  border-bottom: 2px solid var(--gold);
  height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.countdown-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.countdown-bar-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.countdown-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--gold);
  color: #000;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .15s;
}

.countdown-num.pulse {
  transform: scale(1.25);
}

.countdown-skip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
}

.countdown-skip:hover {
  box-shadow: 0 0 16px rgba(240,165,0,0.6);
  transform: translateY(-1px);
}

.countdown-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  width: 100%;
  transform-origin: left;
  transition: width linear;
}

/* Header pushes down when bar is visible */
body.has-countdown .header { top: 52px; }

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 80px 24px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s;
}

.faq-item.open {
  border-color: rgba(240,165,0,0.45);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  transition: color .2s;
}

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

.faq-arrow {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.faq-answer .btn {
  margin: 0 24px 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .bonus-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top  { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .nav { gap: 14px; }
}

@media (max-width: 640px) {
  .nav .nav-links { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 320px; }
  .footer-top { grid-template-columns: 1fr; }
  .sticky-cta a { font-size: 0.82rem; padding: 12px 18px; }
}
