/* ============================================================
   GOLDEN CROWN CASINO — Global Stylesheet
   Brand: Dark Premium | Gold #F5BF00
   ============================================================ */

:root {
  --gold: #F5BF00;
  --gold-dark: #c9a000;
  --gold-light: #FFD940;
  --bg-dark: #0a0a0f;
  --bg-card: #12121e;
  --bg-section: #0e0e1a;
  --text-main: #e8e8f0;
  --text-muted: #8888a8;
  --text-light: #ffffff;
  --border: #2a2a40;
  --gradient-gold: linear-gradient(135deg, #F5BF00, #FFD940, #c9a000);
  --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12121e 100%);
  --shadow-gold: 0 0 30px rgba(245,191,0,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ---- Container ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: rgba(10,10,15,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
}
.site-header:not(:has(.header-inner)) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 0 20px;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  position: relative;
}
.logo img { height: 42px; width: auto; }
.logo-link {
  display: inline-flex;
  align-items: center;
}
.logo-link img { height: 42px; width: auto; display: block; }
.main-nav { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.main-nav a {
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold);
  background: rgba(245,191,0,0.08);
}
.site-header > .logo,
.site-header > .logo-link {
  display: inline-flex;
  align-items: center;
  margin: 0 20px;
}
.site-header > .main-nav {
  display: flex;
  margin-left: auto;
  margin-right: 20px;
}
header nav ul,
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
header nav li,
.main-nav li { margin: 0; }
header nav ul a,
.main-nav ul a {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
header nav ul a:hover,
header nav ul a.active,
.main-nav ul a:hover,
.main-nav ul a.active {
  color: var(--gold);
  background: rgba(245,191,0,0.08);
}
.header-cta {
  background: var(--gradient-gold);
  color: #0a0a0f !important;
  font-weight: 700;
  padding: 10px 22px !important;
  border-radius: 25px;
  font-size: 14px !important;
  transition: all 0.2s !important;
  box-shadow: 0 4px 15px rgba(245,191,0,0.3);
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,191,0,0.45) !important;
  background: linear-gradient(135deg, #FFD940, #F5BF00) !important;
  color: #0a0a0f !important;
}
.nav-cta a,
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: #0a0a0f !important;
  font-weight: 700;
  padding: 10px 22px !important;
  border-radius: 25px;
  font-size: 14px !important;
  box-shadow: 0 4px 15px rgba(245,191,0,0.3);
}
.nav-cta a:hover,
.btn-cta:hover {
  color: #0a0a0f !important;
  box-shadow: 0 6px 20px rgba(245,191,0,0.45);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1025 50%, #0a0f1a 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/foto/Bannersliderimg1432x540.webp');
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.6) 60%, rgba(10,10,15,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,191,0,0.12);
  border: 1px solid rgba(245,191,0,0.3);
  color: var(--gold);
  padding: 6px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 18px; color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
}

/* Новодобавленный блок бонусов на главном экране */
.hero-bonus-block {
  margin: 0 0 32px 0;
  padding: 16px 24px;
  background: rgba(245, 191, 0, 0.08);
  border: 1px solid rgba(245, 191, 0, 0.2);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  display: inline-block;
  text-align: left;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hbb-title {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hbb-main {
  color: #ffffff;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.hbb-sub {
  color: #ffffff;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  margin-top: 4px;
}
.hero-cta-group { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient-gold);
  color: #0a0a0f;
  font-weight: 700; font-size: 16px;
  padding: 15px 32px; border-radius: 30px;
  box-shadow: var(--shadow-gold);
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,191,0,0.5);
  color: #0a0a0f;
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--border);
  color: var(--text-main); font-weight: 600;
  padding: 13px 28px; border-radius: 30px;
  transition: all 0.25s; font-size: 15px;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat-num { font-size: 28px; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: 14px; font-weight: 500;
}
.trust-item svg { color: var(--gold); width: 20px; height: 20px; flex-shrink: 0; }
.trust-item strong { color: var(--text-main); }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 70px 0; }
.section-alt { background: var(--bg-section); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800; color: var(--text-light);
  margin-bottom: 14px;
}
.section-header p { color: var(--text-muted); font-size: 17px; max-width: 600px; margin: 0 auto; }
.gold-line {
  width: 60px; height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px; margin: 16px auto 0;
}

/* ============================================================
   CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.25s;
}
.card:hover {
  border-color: rgba(245,191,0,0.3);
  box-shadow: 0 8px 30px rgba(245,191,0,0.1);
  transform: translateY(-3px);
}
.card-icon {
  width: 52px; height: 52px;
  background: rgba(245,191,0,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}
.card h3 { font-size: 18px; font-weight: 700; color: var(--text-light); margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* ============================================================
   SLOTS GRID
   ============================================================ */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
}
.slot-card:hover {
  border-color: rgba(245,191,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.slot-img-wrap { position: relative; padding-top: 140%; background: #080810; }
.slot-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.slot-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--gold);
  color: #0a0a0f; font-size: 10px; font-weight: 800;
  padding: 3px 8px; border-radius: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.slot-info { padding: 14px 14px 16px; }
.slot-name { font-weight: 700; color: var(--text-light); font-size: 14px; margin-bottom: 6px; }
.slot-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.slot-tag {
  font-size: 11px; color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 3px 8px; border-radius: 4px;
}
.slot-tag.rtp { color: var(--gold); }

/* ============================================================
   BONUS TABLE
   ============================================================ */
.bonus-table-wrap { overflow-x: auto; border-radius: var(--radius); }
.bonus-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-card);
}
.bonus-table th {
  background: rgba(245,191,0,0.08);
  color: var(--gold); font-weight: 700;
  padding: 16px 20px; text-align: left;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}
.bonus-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-main); font-size: 15px;
}
.bonus-table tr:last-child td { border-bottom: none; }
.bonus-table tr:hover td { background: rgba(245,191,0,0.03); }
.badge-type {
  display: inline-block;
  padding: 4px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
}
.badge-welcome { background: rgba(245,191,0,0.15); color: var(--gold); }
.badge-free { background: rgba(100,200,100,0.15); color: #6dc87a; }
.badge-reload { background: rgba(100,150,255,0.15); color: #7aa0ff; }
.badge-cashback { background: rgba(255,100,100,0.15); color: #ff7a7a; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-weight: 600; color: var(--text-light);
  font-size: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q svg { flex-shrink: 0; margin-left: 16px; transition: transform 0.3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-light);
  font-size: 16px;
  text-align: left;
}
.faq-question:hover { color: var(--gold); }
.faq-a {
  display: none;
  padding: 0 28px 22px;
  color: var(--text-muted); font-size: 15px; line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }
.faq-answer {
  display: none;
  padding: 0 28px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   PAYMENT METHODS
   ============================================================ */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.2s;
}
.payment-card:hover { border-color: rgba(245,191,0,0.3); }
.payment-card h4 { font-size: 15px; font-weight: 700; color: var(--text-light); margin-bottom: 8px; }
.payment-card .speed { font-size: 13px; color: #6dc87a; margin-bottom: 4px; }
.payment-card .limit { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   STEPS
   ============================================================ */
.steps-list { counter-reset: step; }
.step-item {
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 28px;
}
.step-num {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gradient-gold);
  color: #0a0a0f; font-weight: 800; font-size: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-content h4 { font-size: 17px; font-weight: 700; color: var(--text-light); margin-bottom: 6px; }
.step-content p { color: var(--text-muted); font-size: 15px; }

/* ============================================================
   RG / RESPONSIBLE GAMBLING BLOCK
   ============================================================ */
.rg-block {
  background: rgba(245,191,0,0.04);
  border: 1px solid rgba(245,191,0,0.15);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex; gap: 16px; align-items: flex-start;
  margin: 40px 0;
}
.rg-block .rg-icon { font-size: 28px; flex-shrink: 0; }
.rg-block h4 { font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.rg-block p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.rg-block a { color: var(--gold); text-decoration: underline; }

/* ============================================================
   VIP LEVELS
   ============================================================ */
.vip-levels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px; margin-bottom: 40px;
}
.vip-level {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center;
  transition: all 0.25s;
}
.vip-level.featured {
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(245,191,0,0.2);
}
.vip-level:hover { transform: translateY(-3px); }
.vip-icon { font-size: 36px; margin-bottom: 12px; }
.vip-name { font-size: 18px; font-weight: 800; color: var(--text-light); margin-bottom: 8px; }
.vip-name span { color: var(--gold); }
.vip-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   CONTENT ARTICLE STYLES
   ============================================================ */
.article-body h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800; color: var(--text-light);
  margin: 50px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.article-body h3 {
  font-size: 20px; font-weight: 700; color: var(--text-light);
  margin: 34px 0 14px;
}
.article-body h4 {
  font-size: 17px; font-weight: 700; color: var(--gold);
  margin: 24px 0 10px;
}
.article-body p { color: var(--text-muted); margin-bottom: 16px; font-size: 16px; }
.article-body ul, .article-body ol {
  padding-left: 24px; margin-bottom: 20px;
}
.article-body li { color: var(--text-muted); margin-bottom: 8px; font-size: 15px; }
.article-body strong { color: var(--text-main); }
.article-body table {
  width: 100%; border-collapse: collapse; margin-bottom: 24px;
  border-radius: var(--radius); overflow: hidden;
}
.article-body th {
  background: rgba(245,191,0,0.08);
  color: var(--gold); font-size: 13px;
  padding: 14px 18px; text-align: left; font-weight: 700;
  border-bottom: 1px solid var(--border);
}
.article-body td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted); font-size: 15px;
}
.article-body .highlight-box {
  background: rgba(245,191,0,0.06);
  border-left: 3px solid var(--gold);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.article-body .highlight-box p { margin: 0; color: var(--text-main); }

.content-section,
.intro,
.poli-highlight,
.sports-teaser,
.live-casino-teaser,
.promotions-teaser,
.vip-teaser,
.rg-notice,
.faq,
.usps,
.games-overview,
.bonus-overview,
.payments,
.vip-preview,
.trust,
.responsible-gambling,
.payment-overview,
.twint-guide,
.postfinance-guide,
.kyc-guide,
.withdrawal-delays,
.withdrawal-limits,
.bonus-table-section,
.bonus-example,
.wagering-explained,
.contribution-rates,
.bonus-activation,
.freespins-explained,
.cashback-explained,
.what-is-live,
.live-roulette,
.live-blackjack,
.live-baccarat,
.game-shows,
.german-dealers,
.best-time,
.fairness,
.live-strategy,
.top-slots,
.slot-categories,
.rtp-explained,
.volatility,
.bankroll,
.buy-feature,
.high-rtp-slots,
.top-pokies,
.how-pokies-work,
.megaways-pokies,
.jackpot-pokies,
.bankroll-management,
.promo-overview,
.first-deposit-offer,
.free-spins-promo,
.cashback-promo,
.reload-offers,
.vip-loyalty,
.wagering-requirements,
.live-games,
.live-casino-tips {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-section h2,
.intro h2,
.poli-highlight h2,
.sports-teaser h2,
.live-casino-teaser h2,
.promotions-teaser h2,
.vip-teaser h2,
.rg-notice h2,
.faq h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 14px;
}
.content-section h3,
.intro h3,
.feature-card h3,
.faq h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}
.content-section p,
.intro p,
.poli-highlight p,
.sports-teaser p,
.live-casino-teaser p,
.promotions-teaser p,
.vip-teaser p,
.rg-notice p,
.faq p,
.feature-card p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 16px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.25s;
}
.feature-card:hover {
  border-color: rgba(245,191,0,0.3);
  box-shadow: 0 8px 30px rgba(245,191,0,0.1);
  transform: translateY(-3px);
}
.game-card,
.pokie-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.intro-text,
.page-hero-content {
  max-width: 760px;
}
.hero-text {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.btn-large {
  padding: 16px 34px;
  font-size: 17px;
}
.cta-box,
.cta-section {
  background: linear-gradient(135deg, rgba(245,191,0,0.08), rgba(255,217,64,0.03));
  border: 1px solid rgba(245,191,0,0.22);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin: 28px 0;
}
.cta-inner {
  max-width: 760px;
}
.cta-button,
.cta-button-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: #0a0a0f !important;
  font-weight: 700;
  border-radius: 30px;
  padding: 14px 28px;
  box-shadow: var(--shadow-gold);
}
.cta-button-large {
  padding: 16px 34px;
  font-size: 17px;
}
.faq-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.payment-table,
.limits-table,
.pokies-table,
.rtp-table,
.promo-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  border-radius: var(--radius);
  overflow: hidden;
}
.payment-table th,
.limits-table th,
.pokies-table th,
.rtp-table th,
.promo-table th {
  background: rgba(245,191,0,0.08);
  color: var(--gold);
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.payment-table td,
.limits-table td,
.pokies-table td,
.rtp-table td,
.promo-table td {
  padding: 14px 18px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.slot-grid,
.game-grid,
.pokies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 24px 0;
}
.slot-grid > *,
.game-grid > *,
.pokies-grid > * {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
}
.pokies-table-wrap,
.promo-table-wrap {
  overflow-x: auto;
  margin: 20px 0 28px;
}
.example-box,
.tip-box,
.disclaimer {
  background: rgba(245,191,0,0.06);
  border: 1px solid rgba(245,191,0,0.2);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 20px 0;
  color: var(--text-main);
}
.tip-box {
  border-left: 3px solid var(--gold);
}
.disclaimer,
.age-notice {
  font-size: 14px;
  line-height: 1.7;
}
.step-by-step {
  display: grid;
  gap: 18px;
  margin: 22px 0;
}
.step-by-step .step {
  margin-bottom: 0;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}
.footer-logo img {
  height: 37px;
  width: auto;
}
.vip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(245,191,0,0.14);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}
.vip-bronze { border-color: rgba(176, 112, 56, 0.45); }
.vip-silver { border-color: rgba(184, 192, 208, 0.4); }
.vip-gold { border-color: rgba(245,191,0,0.35); }
.vip-platinum { border-color: rgba(120, 210, 230, 0.35); }
.vip-diamond { border-color: rgba(150, 190, 255, 0.45); }
.vip-bronze,
.vip-silver,
.vip-gold,
.vip-platinum,
.vip-diamond {
  position: relative;
}
.vip-bronze::before,
.vip-silver::before,
.vip-gold::before,
.vip-platinum::before,
.vip-diamond::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}
.usps .feature-grid,
.games-overview .feature-grid,
.bonus-overview .feature-grid,
.payments .feature-grid,
.vip-preview .feature-grid,
.trust .feature-grid,
.responsible-gambling .feature-grid {
  margin-top: 20px;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: #0a0a0f;
  font-weight: 800;
}
.vip-level-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.vip-range,
.vip-points,
.footer-copy,
.footer-disclaimer,
.footer-rg,
.age-notice {
  color: var(--text-muted);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0;
  padding: 0;
}
.footer-nav a { color: var(--text-muted); }
.footer-nav a:hover { color: var(--gold); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 16px 0;
  display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); font-size: 14px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); font-size: 14px; }
.breadcrumb .current { color: var(--text-main); font-size: 14px; }
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  color: var(--text-muted);
  font-size: 14px;
}
.breadcrumb li + li::before {
  content: "\203A";
  margin-right: 8px;
  color: var(--text-muted);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: radial-gradient(ellipse at top center, #1b1b33 0%, #0a0a0f 80%);
  border-bottom: 1px solid rgba(245, 191, 0, 0.15);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('/foto/pattern.svg') repeat;
  opacity: 0.03;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero .breadcrumb {
  justify-content: center;
  margin-bottom: 24px;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900; 
  color: var(--text-light);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { 
  color: var(--text-muted); 
  font-size: 18px; 
  max-width: 680px; 
  margin: 0 auto 10px; 
  line-height: 1.6;
}

/* Оформление бонусного баннера ТОЛЬКО для внутренних страниц */
.page-hero .hero-bonus-block {
  display: block;
  margin: 30px auto;
  padding: 30px 20px;
  max-width: 550px !important;
  background: linear-gradient(180deg, rgba(26,26,46,0.9) 0%, rgba(10,10,15,0.95) 100%);
  border: 1px solid rgba(245, 191, 0, 0.4);
  border-top: 4px solid var(--gold);
  border-left: 1px solid rgba(245, 191, 0, 0.4);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), inset 0 0 40px rgba(245, 191, 0, 0.08);
  text-align: center;
}
.page-hero .hbb-title {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.page-hero .hbb-main {
  font-size: clamp(28px, 5vw, 40px);
  text-shadow: 0 2px 10px rgba(245, 191, 0, 0.3);
}
.page-hero .hbb-sub {
  font-size: clamp(20px, 3.5vw, 24px);
  margin-top: 8px;
  color: #dfdfdf;
}
.page-hero .hero-cta-group {
  justify-content: center;
  margin-top: 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #07070f;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 13px; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-legal { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 700px; }
.footer-legal a { color: var(--gold); }
.footer-age {
  background: var(--gold);
  color: #0a0a0f; font-weight: 800;
  font-size: 16px; width: 42px; height: 42px;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-10 { margin-top: 10px; } .mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; } .mt-40 { margin-top: 40px; }
.mb-10 { margin-bottom: 10px; } .mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; } .mb-40 { margin-bottom: 40px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 640px) {
  .header-inner { justify-content: space-between; }
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-header:not(:has(.header-inner)) {
    min-height: 68px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero { min-height: 400px; }
  .hero-content { padding: 40px 0; }
  .hero h1,
  .page-hero h1 { line-height: 1.1; }
  .hero-sub,
  .page-hero p { font-size: 16px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .trust-bar-inner { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 50px 0; }
  .content-section,
  .intro,
  .poli-highlight,
  .sports-teaser,
  .live-casino-teaser,
  .promotions-teaser,
  .vip-teaser,
  .rg-notice,
  .faq,
  .faq-section,
  .usps,
  .games-overview,
  .bonus-overview,
  .payments,
  .vip-preview,
  .trust,
  .responsible-gambling,
  .payment-overview,
  .twint-guide,
  .postfinance-guide,
  .kyc-guide,
  .withdrawal-delays,
  .withdrawal-limits,
  .bonus-table-section,
  .bonus-example,
  .wagering-explained,
  .contribution-rates,
  .bonus-activation,
  .freespins-explained,
  .cashback-explained,
  .what-is-live,
  .live-roulette,
  .live-blackjack,
  .live-baccarat,
  .game-shows,
  .german-dealers,
  .best-time,
  .fairness,
  .live-strategy,
  .top-slots,
  .slot-categories,
  .rtp-explained,
  .volatility,
  .bankroll,
  .buy-feature,
  .high-rtp-slots,
  .top-pokies,
  .how-pokies-work,
  .megaways-pokies,
  .jackpot-pokies,
  .bankroll-management,
  .promo-overview,
  .first-deposit-offer,
  .free-spins-promo,
  .cashback-promo,
  .reload-offers,
  .vip-loyalty,
  .wagering-requirements,
  .live-games,
  .live-casino-tips {
    padding-left: 16px;
    padding-right: 16px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10,10,15,0.98);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    z-index: 120;
  }
  .main-nav.open { display: flex; }
  .main-nav a,
  .main-nav ul a {
    width: 100%;
    justify-content: flex-start;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
  }
  .feature-grid,
  .cards-grid,
  .slots-grid,
  .slot-grid,
  .game-grid,
  .pokies-grid,
  .payment-grid,
  .vip-levels {
    grid-template-columns: 1fr;
  }
  .article-body table,
  .payment-table,
  .limits-table,
  .pokies-table,
  .rtp-table,
  .promo-table,
  .bonus-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .step,
  .step-item,
  .vip-level-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  .header-inner { height: 64px; }
  .logo img,
  .logo-link img { height: 36px; }
  .burger {
    padding: 7px 10px;
    font-size: 18px;
  }
  .hero {
    min-height: 340px;
  }
  .hero-content {
    padding: 28px 0;
  }
  .hero h1,
  .page-hero h1 {
    font-size: clamp(26px, 9vw, 34px);
    margin-bottom: 14px;
  }
  .hero-sub,
  .page-hero p,
  .section-header p {
    font-size: 15px;
  }
  .hero-cta-group,
  .hero-stats,
  .trust-bar-inner {
    gap: 14px;
  }
  .btn-primary,
  .btn-secondary,
  .cta-button,
  .cta-button-large,
  .btn-large {
    padding: 14px 18px !important;
    font-size: 15px !important;
    min-height: 48px;
  }
  .section-header {
    margin-bottom: 34px;
  }
  .section-header h2,
  .content-section h2,
  .intro h2,
  .poli-highlight h2,
  .sports-teaser h2,
  .live-casino-teaser h2,
  .promotions-teaser h2,
  .vip-teaser h2,
  .rg-notice h2,
  .faq h2,
  .article-body h2 {
    font-size: clamp(22px, 7vw, 28px);
  }
  .page-hero {
    padding: 36px 0 28px;
  }
  .card,
  .feature-card,
  .game-card,
  .pokie-card,
  .vip-level,
  .slot-grid > *,
  .game-grid > *,
  .pokies-grid > * {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .cards-grid,
  .feature-grid,
  .slots-grid,
  .slot-grid,
  .game-grid,
  .pokies-grid,
  .payment-grid,
  .vip-levels {
    gap: 16px;
  }
  .faq-q,
  .faq-question {
    padding: 18px 16px;
    font-size: 15px;
  }
  .faq-a,
  .faq-answer {
    padding: 0 16px 18px;
    font-size: 14px;
  }
  .article-body p,
  .content-section p,
  .intro p,
  .feature-card p {
    font-size: 15px;
  }
  .payment-table th,
  .payment-table td,
  .limits-table th,
  .limits-table td,
  .pokies-table th,
  .pokies-table td,
  .rtp-table th,
  .rtp-table td,
  .promo-table th,
  .promo-table td,
  .bonus-table th,
  .bonus-table td,
  .article-body th,
  .article-body td {
    padding: 12px 14px;
    font-size: 14px;
  }
  .example-box,
  .tip-box,
  .disclaimer,
  .cta-box,
  .cta-section {
    padding: 16px;
    margin: 18px 0;
  }
  .footer-grid {
    gap: 24px;
    margin-bottom: 32px;
  }
  .footer-bottom {
    gap: 14px;
  }
}

/* ============================================================
   MOBILE NAV TOGGLE (simple)
   ============================================================ */
.burger {
  display: none;
  background: none; border: 1px solid var(--border);
  color: var(--text-main);
  padding: 8px 12px; border-radius: 8px; cursor: pointer;
  font-size: 20px;
}
@media (max-width: 640px) { .burger { display: block; } }

/* ============================================================
   LANGUAGE / REGION SWITCHER
   ============================================================ */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 11px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.lang-btn:hover {
  border-color: rgba(245,191,0,0.4);
  color: var(--text-main);
  background: rgba(245,191,0,0.06);
}
.lang-btn .lang-flag { font-size: 16px; line-height: 1; }
.lang-btn .lang-arrow {
  font-size: 10px;
  opacity: 0.6;
  transition: transform 0.2s;
}
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(12,12,20,0.98);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 180px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 200;
  backdrop-filter: blur(10px);
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s;
  text-decoration: none;
}
.lang-dropdown a:hover {
  background: rgba(245,191,0,0.08);
  color: var(--gold);
}
.lang-dropdown a.active {
  background: rgba(245,191,0,0.1);
  color: var(--gold);
  font-weight: 700;
}
.lang-dropdown a .ld-flag { font-size: 18px; flex-shrink: 0; }
.lang-dropdown a .ld-name { flex: 1; }
.lang-dropdown a .ld-check { color: var(--gold); font-size: 12px; opacity: 0; }
.lang-dropdown a.active .ld-check { opacity: 1; }
.lang-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 4px;
}
@media (max-width: 640px) {
  .lang-switcher { order: -1; }
  .lang-dropdown {
    right: auto;
    left: 0;
    min-width: 160px;
  }
}

/* ============================================================
   INTERNAL LINKS SECTION
   ============================================================ */
.internal-links-section {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(245,191,0,0.03) 50%, transparent 100%);
  border-top: 1px solid var(--border);
}
.ilink-heading {
  text-align: center;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--text-main);
  margin-bottom: 32px;
  letter-spacing: -0.3px;
}
.ilink-heading::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 10px auto 0;
  border-radius: 2px;
}
.ilink-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}
.ilink-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: all 0.22s ease;
  gap: 6px;
  flex-direction: column;
}
.ilink-card:hover {
  background: rgba(245,191,0,0.07);
  border-color: rgba(245,191,0,0.35);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245,191,0,0.10);
}
@media (max-width: 640px) {
  .ilink-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .ilink-card { padding: 14px 10px; font-size: 13px; }
  .internal-links-section { padding: 40px 0 24px; }
}

/* ============================================================
   MOBILE STICKY CTA (AFFILIATE FOOTER)
   ============================================================ */
.mobile-sticky-cta {
  display: none; /* hidden on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 2px solid rgba(245, 191, 0, 0.5);
  z-index: 9999;
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  animation: slideUpSticky 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1s; /* show after 1 second */
}

@keyframes slideUpSticky {
  to { transform: translateY(0); }
}

.mobile-sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto;
  gap: 12px;
}

.mobile-sticky-text {
  flex: 1;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.mobile-sticky-text strong {
  color: var(--gold);
  display: block;
  font-size: 17px;
  margin-bottom: 2px;
}

.mobile-sticky-btn {
  background: linear-gradient(135deg, var(--gold), #d4a000);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(245, 191, 0, 0.3);
  text-align: center;
}

/* Add padding to body on mobile so footer doesn't hide content */
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 74px !important;
  }
}
