@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #f5c97a;
  --gold-dark: #d4a23e;
  --gold-light: #fde68a;
  --bg-dark: #0e0e16;
  --bg-card: #16161f;
  --bg-card2: #1c1c28;
  --bg-header: rgba(10,10,18,0.96);
  --text: #e8e8f0;
  --text-muted: #888;
  --accent: #f5c97a;
  --red: #e74c3c;
  --green: #2ecc71;
  --border: rgba(245,201,122,0.15);
  --radius: 12px;
  --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 40px;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all .2s;
  white-space: nowrap;
}

nav a:hover, nav a.active {
  color: var(--gold);
  background: rgba(245,201,122,0.08);
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1000;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s;
  box-shadow: 0 4px 15px rgba(245,201,122,0.3);
}

.header-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,201,122,0.45);
}

/* TICKER */
.ticker-wrap {
  background: linear-gradient(90deg, #1a1a00, #252510, #1a1a00);
  border-bottom: 1px solid rgba(245,201,122,0.2);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: tickerMove 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
}

.ticker-item .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* MAIN WRAPPER */
.main-wrap {
  padding-top: 64px;
}

/* HERO BANNER */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0e0e16 0%, #1a1428 50%, #0e1428 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('guest_banner.webp');
  background-size: cover;
  background-position: center top;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,22,0.2) 0%, rgba(14,14,22,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: 480px;
}

.hero-left {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,201,122,0.12);
  border: 1px solid rgba(245,201,122,0.3);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-title {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-sub strong {
  color: var(--gold);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1000;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 6px 25px rgba(245,201,122,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(245,201,122,0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border: 1.5px solid rgba(245,201,122,0.5);
  color: var(--gold);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all .25s;
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(245,201,122,0.1);
  border-color: var(--gold);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonus-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bonus-card {
  background: rgba(22,22,31,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: border-color .2s;
}

.bonus-card:hover {
  border-color: rgba(245,201,122,0.4);
}

.bonus-card-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.bonus-card-val {
  font-family: 'Russo One', sans-serif;
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.bonus-card-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* SECTION COMMON */
section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 20px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-title {
  font-family: 'Russo One', sans-serif;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-link {
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed rgba(245,201,122,0.4);
  transition: border-color .2s;
}

.section-link:hover {
  border-color: var(--gold);
}

/* PROMO STRIP */
.promo-strip {
  background: linear-gradient(90deg, var(--bg-card), var(--bg-card2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.promo-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.promo-items {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 16px 0;
  scrollbar-width: none;
}

.promo-items::-webkit-scrollbar { display: none; }

.promo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,201,122,0.06);
  border: 1px solid rgba(245,201,122,0.15);
  border-radius: var(--radius);
  padding: 12px 18px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  color: inherit;
}

.promo-item:hover {
  background: rgba(245,201,122,0.12);
  border-color: rgba(245,201,122,0.35);
  transform: translateY(-2px);
}

.promo-item-icon { font-size: 24px; }

.promo-item-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

/* GAMES GRID */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 14px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--bg-card);
  group: true;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
  display: block;
}

.game-card:hover img {
  transform: scale(1.08);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity .25s;
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.game-play-btn {
  display: block;
  text-align: center;
  padding: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1000;
  font-weight: 700;
  font-size: 13px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform .15s;
}

.game-play-btn:hover {
  transform: scale(1.03);
}

.game-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}

.game-badge.new { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.game-badge.hot { background: linear-gradient(135deg, #e74c3c, #c0392b); }

/* LIVE WINS FEED */
.live-wins {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.live-wins-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card2);
}

.live-dot {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: livePulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 8px var(--green); }
  50% { box-shadow: 0 0 18px var(--green), 0 0 30px rgba(46,204,113,0.5); }
}

.live-wins-title {
  font-weight: 700;
  font-size: 15px;
}

.wins-list {
  max-height: 380px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.win-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background .2s;
  animation: slideIn .4s ease-out;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.win-item:hover { background: rgba(255,255,255,0.02); }

.win-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), #8b5e00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #1a1000;
  flex-shrink: 0;
  text-transform: uppercase;
}

.win-info {}
.win-name { font-size: 14px; font-weight: 600; color: var(--text); }
.win-game { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

.win-amount {
  font-family: 'Russo One', sans-serif;
  font-size: 16px;
  color: var(--green);
  white-space: nowrap;
}

.win-amount.big { color: var(--gold); }
.win-amount.mega {
  color: var(--gold);
  font-size: 18px;
  text-shadow: 0 0 15px rgba(245,201,122,0.6);
}

.win-time {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* INFO SECTION */
.info-section {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px;
}

.info-section h2 {
  font-family: 'Russo One', sans-serif;
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--gold);
}

.info-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--text);
}

.info-section p {
  font-size: 14px;
  line-height: 1.7;
  color: #aaa;
  margin-bottom: 12px;
}

.info-section ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.info-section ul li {
  font-size: 14px;
  line-height: 1.7;
  color: #aaa;
  margin-bottom: 4px;
}

.info-steps {
  counter-reset: steps;
  list-style: none;
  padding: 0;
}

.info-steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.info-steps li::before {
  content: counter(steps);
  min-width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1000;
  font-weight: 700;
  font-size: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* FOOTER */
footer {
  background: #080810;
  border-top: 1px solid var(--border);
  padding: 40px 20px 24px;
  margin-top: 20px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img { height: 36px; margin-bottom: 16px; }

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1280px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: #555;
}

.footer-18 {
  width: 30px; height: 30px;
  border: 2px solid #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #555;
}

/* PAGE HERO for sub-pages */
.page-hero {
  background: linear-gradient(135deg, #0e0e16 0%, #1c1428 100%);
  border-bottom: 1px solid var(--border);
  padding: 80px 20px 40px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 12px;
}

.page-hero h1 span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 16px;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 24px;
}

/* BONUS CARDS GRID */
.bonus-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.bonus-big-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}

.bonus-big-card:hover {
  border-color: rgba(245,201,122,0.4);
  transform: translateY(-3px);
}

.bonus-big-card-top {
  background: linear-gradient(135deg, #1a1428, #251c38);
  padding: 28px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.bonus-big-card-icon { font-size: 42px; margin-bottom: 12px; }

.bonus-big-card-amount {
  font-family: 'Russo One', sans-serif;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.bonus-big-card-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.bonus-big-card-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.bonus-big-card-body {
  padding: 20px 28px;
}

.bonus-conditions {
  list-style: none;
  margin-bottom: 20px;
}

.bonus-conditions li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #aaa;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.bonus-conditions li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* LIVE TABLES */
.live-tables {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.live-table-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}

.live-table-card:hover {
  border-color: rgba(245,201,122,0.35);
  transform: translateY(-3px);
}

.live-table-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}

.live-table-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-table-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(231,76,60,0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-table-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}

.live-table-info {
  padding: 14px 16px;
}

.live-table-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.live-table-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

.live-table-limit {
  color: var(--gold);
  font-weight: 600;
}

/* SLOTS FILTERS */
.slots-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(245,201,122,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* STATS BAR */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}

.stat-item {
  background: var(--bg-card);
  padding: 20px;
  text-align: center;
}

.stat-num {
  font-family: 'Russo One', sans-serif;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* TOAST / NOTIFICATION */
#win-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card2);
  border: 1px solid rgba(245,201,122,0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  min-width: 280px;
  max-width: 340px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  animation: toastIn .4s ease-out;
  pointer-events: auto;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.toast-icon { font-size: 22px; flex-shrink: 0; }

.toast-body {}
.toast-title { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 2px; }
.toast-desc { font-size: 12px; color: var(--text-muted); }

/* BURGER MENU */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* SEO SECTION */
.seo-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-section__title {
  font-family: 'Russo One', sans-serif;
  font-size: 20px;
  margin: 28px 0 10px;
  color: var(--text);
}

.info-section__title:first-child {
  margin-top: 0;
}

.info-section__cta {
  text-align: center;
  margin-top: 32px;
}

.seo-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}

.seo-link:hover { opacity: .8; }

/* FAQ with details/summary */
.faq-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  gap: 12px;
  color: var(--text);
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .2s;
}

details[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding-bottom: 16px;
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
}

.faq-a a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* INTERNAL LINKS NAV */
.internal-links {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.internal-links .section-title {
  margin-bottom: 18px;
}

.internal-links__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

.internal-links__item {
  display: inline-block;
  padding: 9px 18px;
  background: rgba(245,201,122,0.07);
  border: 1px solid rgba(245,201,122,0.2);
  border-radius: 50px;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all .2s;
}

.internal-links__item:hover {
  background: rgba(245,201,122,0.15);
  border-color: rgba(245,201,122,0.45);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; min-height: auto; padding: 40px 20px 30px; }
  .hero-right { display: none; }
  nav { display: none; }
  .burger { display: flex; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .bonus-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
