@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;600;700;900&family=Barlow+Condensed:wght@700;900&display=swap');

/* ==============================
   ARENA CASINO — DESIGN SYSTEM
   Palitra: Deep Obsidian + Gold + Crimson
   ============================== */

:root {
  --gold:        #c9a84c;
  --gold-light:  #f0d080;
  --gold-dark:   #8a6820;
  --crimson:     #c0392b;
  --crimson-glow:#e74c3c;
  --obsidian:    #0a0a0f;
  --surface-1:   #111118;
  --surface-2:   #18181f;
  --surface-3:   #22222c;
  --text-primary:#f4eedc;
  --text-muted:  #7a7060;
  --border:      rgba(201,168,76,0.18);
  --border-strong:rgba(201,168,76,0.4);
  --font-display:'Bebas Neue', sans-serif;
  --font-body:   'Barlow', sans-serif;
  --font-cond:   'Barlow Condensed', sans-serif;
}

/* ==============================
   RESET & BASE
   ============================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-body);
  background-color: var(--obsidian);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Subtle noise texture via repeating-conic-gradient */
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201,168,76,0.07) 0%, transparent 60%);
}

main { flex: 1; }

/* ==============================
   HEADER
   ============================== */
.main-header {
  background: linear-gradient(180deg, rgba(12,12,18,0.98) 0%, rgba(10,10,15,0.95) 100%);
  border-bottom: 1px solid var(--border);
  padding: 0;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Gold top accent line */
.main-header::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.header-container {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 72px;
}

/* LOGO */
.logo a { display: flex; align-items: center; text-decoration: none; gap: 10px; }

.logo img { height: 52px; display: block; }

/* NAV DESKTOP */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-menu a {
  display: block;
  padding: 7px 13px;
  color: rgba(244,238,220,0.75);
  text-decoration: none;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 5px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Burger */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  transition: border-color 0.2s;
}
.burger-menu:hover { border-color: var(--gold); }

.burger-menu span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-menu.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-menu.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-menu.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================
   PRIMARY CTA BUTTON
   ============================== */
.glass-btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  color: #1a1200 !important;
  text-decoration: none !important;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-position 0.4s ease, box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(201,168,76,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.glass-btn-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 6px 28px rgba(201,168,76,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(-1px);
  color: #0d0900 !important;
}

.glass-btn-primary:active { transform: translateY(0); }

/* Header button override — compact */
.header-actions .glass-btn-primary {
  padding: 9px 18px;
  font-size: 13px;
  border-radius: 5px;
}

/* ==============================
   MOBILE OVERLAY + DRAWER
   ============================== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--surface-2);
  border-left: 1px solid var(--border);
  z-index: 999;
  padding: 80px 20px 32px;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  pointer-events: none;
}
.mobile-nav-drawer.open { transform: translateX(0); pointer-events: all; }

.mobile-nav-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }

.mobile-nav-drawer a {
  display: block;
  padding: 13px 16px;
  color: rgba(244,238,220,0.8);
  text-decoration: none;
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  border-left: 3px solid transparent;
  transition: color 0.2s, background 0.2s, border-left-color 0.2s;
}
.mobile-nav-drawer a:hover {
  color: var(--gold-light);
  background: rgba(201,168,76,0.07);
  border-left-color: var(--gold);
}

/* ==============================
   RESPONSIVE — HIDE NAV ON MOBILE
   ============================== */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .burger-menu { display: flex; }
}
@media (max-width: 768px) {
  .header-actions .glass-btn-primary { display: none; }
  .header-container { height: 62px; padding: 0 15px; }
  .logo img { height: 42px; }
}

/* ==============================
   HERO OFFER SECTION
   ============================== */
.betano-glass-section {
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(192,57,43,0.06) 0%, transparent 70%),
    var(--obsidian);
  padding: 70px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 440px;
  position: relative;
  overflow: hidden;
}

/* Decorative diagonal lines */
.betano-glass-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 40px,
      rgba(201,168,76,0.025) 40px,
      rgba(201,168,76,0.025) 41px
    );
  pointer-events: none;
}

/* Corner ornaments */
.betano-glass-section::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--gold-dark);
  border-left: 2px solid var(--gold-dark);
  pointer-events: none;
}

/* GLASS CARD */
.glass-card-main {
  background: rgba(24,24,31,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  padding: 44px 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.05),
    0 30px 60px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(201,168,76,0.1);
}

/* Corner decorations on card */
.glass-card-main::before,
.glass-card-main::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
}
.glass-card-main::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 4px 0 0 0;
}
.glass-card-main::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 0 4px 0;
}

.glass-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--crimson), var(--crimson-glow));
  color: #fff;
  padding: 5px 14px;
  border-radius: 3px;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
}

.glass-brand {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.9;
}

.glass-offer-value {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 82px;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(201,168,76,0.3));
}

.glass-subtext {
  color: rgba(244,238,220,0.6);
  font-size: 15px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.glass-features {
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 20px;
  margin-bottom: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold-light);
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.glass-legal {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.03em;
}

/* ==============================
   HERO SECTION BIG CTA BUTTON
   ============================== */
.glass-card-main .glass-btn-primary {
  display: block;
  padding: 17px 32px;
  font-size: 18px;
  border-radius: 5px;
  letter-spacing: 0.12em;
}

/* Full-width CTA strip */
a.glass-btn-primary[style*="width: 100%"] {
  border-radius: 0;
  font-size: 16px;
  letter-spacing: 0.14em;
  padding: 18px 32px;
  box-shadow: none;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, var(--gold-dark));
  background-size: 200% 100%;
  animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ==============================
   CONTENT WRAPPER
   ============================== */
.content-wrapper {
  max-width: 1260px;
  margin: 0 auto;
}

/* ==============================
   FOOTER
   ============================== */
.main-footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  padding: 44px 20px 28px;
  width: 100%;
}

/* Gold top accent on footer */
.main-footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  margin-bottom: 40px;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: -44px;
}

.footer-container {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}

.footer-info { flex: 1 1 320px; max-width: 100%; }

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  align-items: center;
}

.partner-logos img {
  height: 28px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(40%);
  transition: opacity 0.2s, filter 0.2s;
}
.partner-logos img:hover { opacity: 1; filter: grayscale(0%); }

.footer-text p,
.footer-info p {
  margin: 7px 0;
  line-height: 1.55;
  color: var(--text-muted);
  font-size: 12px;
}

.footer-info p strong { color: rgba(244,238,220,0.6); }

.footer-info p a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-info p a:hover { color: var(--gold); }

.copyright {
  margin-top: 16px !important;
  font-size: 11px !important;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 14px;
}

.footer-nav { flex: 0 0 auto; text-align: right; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ==============================
   FOOTER RESPONSIVE
   ============================== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav { text-align: center; width: 100%; border-top: 1px solid var(--border); padding-top: 20px; }
  .partner-logos { justify-content: center; }
}
@media (max-width: 480px) {
  .main-footer { padding: 32px 15px 20px; }
}

/* ==============================
   HERO MOBILE
   ============================== */
@media (max-width: 768px) {
  .glass-card-main { padding: 32px 20px; margin: 0 10px; }
  .glass-offer-value { font-size: 56px; }
  .betano-glass-section { padding: 48px 10px; min-height: 380px; }
}

/* ==============================
   ARTICLE / PROSE CONTENT
   Стили для текстовых блоков SEO-контента
   ============================== */
.article-content {
  max-width: 1260px;
  margin: 0 auto;
  padding: 48px 24px 56px;
  color: rgba(244,238,220,0.82);
  font-size: 15px;
  line-height: 1.75;
}

/* Вводный абзац (первый) */
.article-content > p:first-child {
  font-size: 16px;
  color: rgba(244,238,220,0.7);
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

/* Все абзацы */
.article-content p {
  margin-bottom: 16px;
}

/* Заголовки H2 */
.article-content h2 {
  font-family: var(--font-cond);
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  position: relative;
}

/* Заголовки H3 */
.article-content h3 {
  font-family: var(--font-cond);
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 28px;
  margin-bottom: 10px;
}

/* Ссылки внутри текста */
.article-content a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.article-content a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* Жирный текст */
.article-content strong,
.article-content b {
  color: var(--text-primary);
  font-weight: 700;
}

/* Маркированные списки */
.article-content ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-content ul li {
  padding-left: 20px;
  position: relative;
  color: rgba(244,238,220,0.8);
}

.article-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(201,168,76,0.5);
}

/* Нумерованные списки */
.article-content ol {
  padding-left: 20px;
  margin: 14px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-content ol li {
  color: rgba(244,238,220,0.8);
  padding-left: 6px;
}

.article-content ol li::marker {
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-cond);
}

/* Таблицы */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.article-content th {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-strong);
}

.article-content td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: rgba(244,238,220,0.75);
  vertical-align: top;
}

.article-content tr:hover td {
  background: rgba(201,168,76,0.03);
}

/* Цитата / callout */
.article-content blockquote {
  margin: 24px 0;
  padding: 16px 20px 16px 24px;
  background: rgba(201,168,76,0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  color: rgba(244,238,220,0.75);
  font-style: italic;
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .article-content {
    padding: 32px 16px 40px;
    font-size: 14px;
  }
  .article-content h2 { font-size: 17px; margin-top: 32px; }
  .article-content h3 { font-size: 15px; }
  .article-content table { display: block; overflow-x: auto; }
}











/* ---- SLOTS SECTION ---- */
.slots-section {
  padding: 56px 20px 48px;
  max-width: 1260px;
  margin: 0 auto;
}

.slots-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 12px;
}

.slots-title {
  font-family: 'Bebas Neue', var(--font-display, sans-serif);
  font-size: 32px;
  letter-spacing: 0.08em;
  color: var(--text-primary, #f4eedc);
  text-transform: uppercase;
}

.slots-title span {
  color: var(--gold, #c9a84c);
}

.slots-see-all {
  font-family: 'Barlow Condensed', var(--font-cond, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark, #8a6820);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.slots-see-all:hover { color: var(--gold, #c9a84c); }

/* ---- GRID: 4 колонки ПК, 2 колонки мобайл ---- */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ---- ОДНА ЯЧЕЙКА ---- */
.slot-item {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-2, #18181f);
  border: 1px solid var(--border, rgba(201,168,76,0.18));
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  will-change: transform;
}

.slot-item:hover {
  border-color: var(--gold, #c9a84c);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.2);
}

/* Обёртка изображения — держит пропорцию 3:4 (типичный слот) */
.slot-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface-3, #22222c);
}

.slot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.slot-item:hover .slot-thumb img {
  transform: scale(1.06);
}

/* Оверлей при наведении */
.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,15,0.68);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.slot-item:hover .slot-overlay {
  opacity: 1;
}

/* Кнопка "SPIELEN" */
.slot-play-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold, #c9a84c) 0%, var(--gold-light, #f0d080) 50%, var(--gold, #c9a84c) 100%);
  color: #1a1200;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 5px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  pointer-events: none; /* клик идёт на весь .slot-item */
  transform: translateY(6px);
  transition: transform 0.25s ease;
}

.slot-item:hover .slot-play-btn {
  transform: translateY(0);
}

/* Название игры */
.slot-label {
  padding: 10px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(244,238,220,0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

.slot-item:hover .slot-label {
  color: var(--gold, #c9a84c);
}

/* ---- TOUCH-устройства: показываем оверлей сразу ---- */
@media (hover: none) {
  .slot-overlay { opacity: 1; background: rgba(10,10,15,0.45); }
  .slot-play-btn { transform: translateY(0); }
}

/* ---- ПЛАНШЕТ (до 900px): 2 колонки ---- */
@media (max-width: 900px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ---- МОБАЙЛ (до 480px): мелкие отступы ---- */
@media (max-width: 480px) {
  .slots-section { padding: 36px 12px 32px; }
  .slots-grid { gap: 10px; }
  .slots-title { font-size: 26px; }
  .slot-label { font-size: 12px; padding: 8px 10px; }
  .slot-play-btn { font-size: 13px; padding: 8px 16px; }
}