@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700;800&family=Lato:wght@300;400;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: #0b0b0f;
  color: #e8e0d0;
  line-height: 1.7;
  overflow-x: hidden;
  min-width: 320px;
}
img { max-width: 100%; display: block; }
a { color: #f0a500; text-decoration: none; transition: color 0.2s; }
a:hover { color: #ffd166; }

/* ===== VARIABLES ===== */
:root {
  --gold: #f0a500;
  --gold-light: #ffd166;
  --gold-dark: #c47d00;
  --red: #e03060;
  --red-dark: #b01f45;
  --bg: #0b0b0f;
  --bg2: #111118;
  --bg3: #18181f;
  --bg4: #1e1e28;
  --border: rgba(240,165,0,0.15);
  --border2: rgba(255,255,255,0.07);
  --text: #e8e0d0;
  --text2: #9990a0;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 8px 40px rgba(0,0,0,0.6);
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1.5px;
  line-height: 1.1;
  color: var(--gold);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.7rem); }
p { margin-bottom: 1em; }

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===================================================
   HEADER
=================================================== */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,11,15,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
  flex-wrap: nowrap;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 16px rgba(240,165,0,0.4);
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #fff;
  white-space: nowrap;
}
.logo-text span { color: var(--gold); }

/* HEADER RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

/* LANGUAGE SWITCHER */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 4px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  background: transparent;
  color: var(--text2);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  letter-spacing: 0.3px;
}
.lang-btn:hover {
  background: rgba(240,165,0,0.1);
  color: var(--gold);
}
.lang-btn.active {
  background: var(--gold);
  color: #000;
}
.lang-btn .flag { font-size: 0.95rem; line-height: 1; }

/* HEADER BUTTONS */
.header-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: none;
  transition: all 0.18s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(240,165,0,0.06); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(240,165,0,0.3);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); color: #000; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(240,165,0,0.45); }

.btn-red {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(224,48,96,0.3);
}
.btn-red:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(224,48,96,0.45); color: #fff; }

.btn-lg { padding: 14px 32px; font-size: 0.95rem; border-radius: 10px; }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: rgba(240,165,0,0.08); color: var(--gold-light); transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: #000; box-shadow: 0 4px 20px rgba(240,165,0,0.3); }
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); color: #000; transform: translateY(-1px); }

/* MOBILE TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ===================================================
   GAME BANNER
=================================================== */
.game-banner {
  width: 100%;
  background: #0a0a0e;
  border-bottom: 1px solid var(--border);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.game-banner img { width: 100%; height: 100%; object-fit: cover; max-height: 400px; }
.game-banner-placeholder {
  width: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #0e0a02 0%, #0b0b0f 60%, #0a0008 100%);
  color: var(--text2);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.game-banner-placeholder .icon { font-size: 3rem; opacity: 0.4; }

/* ===================================================
   CTA SECTION
=================================================== */
.cta-section {
  padding: 70px 0 60px;
  background: linear-gradient(160deg, #0f0900 0%, #0b0b0f 50%, #0a000f 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 300px;
  background: radial-gradient(ellipse, rgba(240,165,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.cta-left h1 { color: #fff; margin-bottom: 14px; }
.cta-left h1 span { color: var(--gold); }
.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text2);
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  max-width: 520px;
}
.cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.badge {
  padding: 5px 13px;
  background: rgba(240,165,0,0.08);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: var(--gold);
  letter-spacing: 0.3px;
}
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* BONUS CARD */
.cta-right {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.cta-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}
.bonus-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text2);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.bonus-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2px;
  text-shadow: 0 0 40px rgba(240,165,0,0.35);
  letter-spacing: 2px;
}
.bonus-desc {
  font-size: 0.9rem;
  color: var(--text2);
  margin-bottom: 22px;
  font-family: 'Montserrat', sans-serif;
}
.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.bonus-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
}
.bonus-feature .check {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: #000;
  font-weight: 900;
  flex-shrink: 0;
}
.bonus-cta { width: 100%; justify-content: center; padding: 13px; font-size: 0.9rem; }

/* ===================================================
   DIVIDER
=================================================== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
}

/* ===================================================
   CONTENT SECTION (info cards)
=================================================== */
.content-section { padding: 60px 0; }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-title { color: #fff; margin-bottom: 12px; }
.section-intro { color: var(--text2); font-size: 1rem; max-width: 640px; margin-bottom: 36px; }

.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.info-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.info-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  opacity: 0;
  transition: opacity 0.2s;
}
.info-card:hover { border-color: rgba(240,165,0,0.3); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.info-card:hover::after { opacity: 1; }
.info-card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.info-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0;
}
.info-card p { font-size: 0.83rem; color: var(--text2); margin: 0; line-height: 1.6; }

/* ===================================================
   TEXT BLOCK
=================================================== */
.text-block {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
}
.text-block p { color: #c0b8a8; font-size: 0.97rem; line-height: 1.85; }
.text-block h2 { color: #fff; margin-top: 32px; margin-bottom: 14px; }
.text-block h3 { color: var(--gold); margin-top: 28px; margin-bottom: 12px; font-size: 1.35rem; }
.text-block h2:first-child,
.text-block h3:first-child { margin-top: 0; }

/* ===================================================
   LISTS — global default styles
=================================================== */
ul, ol { padding-left: 0; margin-bottom: 1.4em; list-style: none; }

ul li {
  position: relative;
  padding: 9px 16px 9px 44px;
  margin-bottom: 6px;
  background: rgba(240,165,0,0.04);
  border: 1px solid rgba(240,165,0,0.1);
  border-radius: 8px;
  font-size: 0.93rem;
  color: #c0b8a8;
  transition: background 0.15s;
}
ul li:hover { background: rgba(240,165,0,0.08); }
ul li::before {
  content: '◆';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.55rem;
}

ol { counter-reset: ol-c; }
ol li {
  counter-increment: ol-c;
  position: relative;
  padding: 9px 16px 9px 52px;
  margin-bottom: 6px;
  background: rgba(240,165,0,0.04);
  border: 1px solid rgba(240,165,0,0.1);
  border-radius: 8px;
  font-size: 0.93rem;
  color: #c0b8a8;
  transition: background 0.15s;
  overflow: hidden;
}
ol li:hover { background: rgba(240,165,0,0.08); }
ol li::before {
  content: counter(ol-c);
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px 0 0 7px;
}

/* ===================================================
   TABLES — global default styles
=================================================== */
.table-wrap { overflow-x: auto; margin-bottom: 1.6em; border-radius: var(--radius); border: 1px solid var(--border2); }
table { width: 100%; border-collapse: collapse; min-width: 380px; font-size: 0.9rem; }

thead tr { background: linear-gradient(90deg, #2a1800 0%, #1e1200 100%); }
thead th {
  padding: 13px 18px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
tbody tr { border-bottom: 1px solid rgba(255,255,255,0.05); transition: background 0.15s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(odd) { background: rgba(255,255,255,0.02); }
tbody tr:nth-child(even) { background: transparent; }
tbody tr:hover { background: rgba(240,165,0,0.06); }
tbody td { padding: 11px 18px; color: #b0a898; vertical-align: middle; }
tbody td:first-child { color: var(--text); font-weight: 600; font-family: 'Montserrat', sans-serif; font-size: 0.88rem; }

/* ===================================================
   AUTHOR
=================================================== */
.author-section { padding: 0 0 60px; }
.author-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.author-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
}
.author-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, var(--bg4), #2a1800);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info { flex: 1; }
.author-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.author-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 8px;
}
.author-bio { font-size: 0.88rem; color: var(--text2); line-height: 1.75; margin: 0; }

/* ===================================================
   FOOTER
=================================================== */
footer {
  background: #08080c;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.footer-col p {
  font-size: 0.8rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: var(--text2);
  margin-bottom: 5px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--gold); }
.footer-license {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(240,165,0,0.07);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: 6px;
  font-size: 0.76rem;
  color: var(--gold);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  margin-top: 10px;
}
.responsible-gaming {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(224,48,96,0.08);
  border: 1px solid rgba(224,48,96,0.2);
  border-radius: 6px;
  font-size: 0.78rem;
  color: #e08090;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-top: 12px;
}
.footer-disclaimer {
  margin-top: 12px;
  font-size: 0.73rem !important;
  color: #554e5e !important;
  line-height: 1.6 !important;
}
.footer-disclaimer strong { color: #7a7080 !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.75rem; color: #554e5e; margin: 0; }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1100px) {
  .info-cards { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr 360px; gap: 32px; }
}

@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .header-right { gap: 8px; }
}

@media (max-width: 768px) {
  /* Show hamburger, hide right side */
  .menu-toggle { display: flex; }
  .header-inner { flex-wrap: wrap; height: auto; padding: 12px 0; }
  .header-right {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 16px 0 12px;
    gap: 12px;
    order: 10;
    margin-left: 0;
  }
  .header-right.open { display: flex; }
  .lang-switcher { flex-wrap: wrap; background: transparent; border: none; padding: 0; gap: 6px; }
  .header-btns { flex-wrap: wrap; }
  .logo { order: 1; }
  .menu-toggle { order: 2; }

  .text-block { padding: 24px 20px; }
  .info-cards { grid-template-columns: 1fr 1fr; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .author-card { flex-direction: column; padding: 22px 20px; }
}

@media (max-width: 480px) {
  .info-cards { grid-template-columns: 1fr; }
  .bonus-amount { font-size: 3rem; }
  .text-block { padding: 20px 16px; }
  .cta-section { padding: 44px 0 40px; }
}