/* ============================================================
   KENT CASINO — PREMIUM STYLES 2025
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --bg-primary:    #07071a;
  --bg-secondary:  #0d0d28;
  --bg-card:       rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.08);
  --gold:          #f4c430;
  --gold-light:    #ffd966;
  --green:         #00c176;
  --green-dark:    #009e5e;
  --red:           #ff4757;
  --text:          #d4dce8;
  --text-muted:    #7a8a9a;
  --border:        rgba(255,255,255,0.08);
  --radius:        12px;
  --radius-lg:     20px;
  --tr:            all 0.3s ease;
  --shadow:        0 8px 32px rgba(0,0,0,0.35);
  --glow-gold:     0 0 24px rgba(244,196,48,0.35);
  --glow-green:    0 0 24px rgba(0,193,118,0.35);
  --header-h:      70px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-primary);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--tr); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* === UTILITY === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 30%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 1.05rem;
}
.badge {
  display: inline-block;
  background: rgba(244,196,48,0.15);
  border: 1px solid rgba(244,196,48,0.4);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 auto 48px;
  border-radius: 2px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--tr);
  white-space: nowrap;
  min-height: 48px;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #00d87a, var(--green-dark));
  color: #fff;
  box-shadow: var(--glow-green);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(0,193,118,0.5);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-secondary:hover {
  background: rgba(244,196,48,0.12);
  box-shadow: var(--glow-gold);
  color: var(--gold-light);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), #e0a500);
  color: #07071a;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
  color: #07071a;
}
.btn-sm { padding: 10px 20px; font-size: 0.875rem; min-height: 40px; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(7,7,26,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
}
#header.scrolled {
  background: rgba(7,7,26,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), #e0a500);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #07071a;
  box-shadow: var(--glow-gold);
}
.logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.logo-text strong {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Brand image in logo */
.logo-brand-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Brand image in hero card */
.hero-brand-img {
  max-width: 160px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
  object-fit: contain;
}

/* Desktop nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--tr);
}
.nav-link:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.nav-link-active {
  color: var(--gold) !important;
  background: rgba(244,196,48,0.08);
}
.nav-link-reg {
  color: var(--green) !important;
  border: 1px solid rgba(0,193,118,0.35);
  background: rgba(0,193,118,0.07);
}
.nav-link-reg:hover {
  background: rgba(0,193,118,0.15) !important;
  color: #fff !important;
  border-color: rgba(0,193,118,0.6);
}

/* Trust badges */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.trust-badge {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid;
}
.trust-badge.ssl {
  border-color: rgba(0,193,118,0.4);
  color: var(--green);
  background: rgba(0,193,118,0.08);
}
.trust-badge.lic {
  border-color: rgba(244,196,48,0.4);
  color: var(--gold);
  background: rgba(244,196,48,0.08);
}
.trust-badge.age {
  border-color: rgba(255,71,87,0.4);
  color: var(--red);
  background: rgba(255,71,87,0.08);
  font-size: 0.8rem;
}

/* Header CTA */
.header-cta { display: flex; gap: 8px; align-items: center; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  flex-shrink: 0;
  z-index: 1001;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--tr);
  transform-origin: center;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  backdrop-filter: blur(4px);
}
.nav-overlay.active { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: calc(var(--header-h) + 60px) 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(244,196,48,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0,193,118,0.06) 0%, transparent 50%),
    var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,196,48,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.stat {
  display: flex; flex-direction: column;
}
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  background: linear-gradient(135deg, rgba(244,196,48,0.1), rgba(0,193,118,0.08));
  border: 1px solid rgba(244,196,48,0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-card-icon { font-size: 4rem; margin-bottom: 16px; }
.hero-card h2 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}
.hero-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; }
.hero-bonus-wrap {
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(244,196,48,0.2);
}
.hero-bonus-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-bonus-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   ADVANTAGES (6 CARDS)
   ============================================================ */
.advantages { background: var(--bg-secondary); }
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.adv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--tr);
}
.adv-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(244,196,48,0.2);
}
.adv-card:hover::before { opacity: 1; }
.adv-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.adv-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.adv-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   BONUSES
   ============================================================ */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bonus-card {
  background: linear-gradient(135deg, var(--bg-card), rgba(244,196,48,0.04));
  border: 1px solid rgba(244,196,48,0.18);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.bonus-card.featured {
  border-color: rgba(244,196,48,0.45);
  background: linear-gradient(135deg, rgba(244,196,48,0.1), rgba(244,196,48,0.04));
}
.bonus-card.featured::after {
  content: 'ХИТ';
  position: absolute;
  top: 16px; right: -8px;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 16px 4px 10px;
  border-radius: 4px 0 0 4px;
  box-shadow: -4px 2px 8px rgba(0,0,0,0.3);
}
.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow), var(--glow-gold);
}
.bonus-icon { font-size: 2.8rem; margin-bottom: 16px; }
.bonus-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.bonus-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin: 12px 0;
}
.bonus-amount small {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 4px;
}
.bonus-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; }
.bonus-list {
  text-align: left;
  margin-bottom: 24px;
}
.bonus-list li {
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 8px;
}
.bonus-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   GAMES
   ============================================================ */
.games { background: var(--bg-secondary); }
.games-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr);
}
.tab-btn.active, .tab-btn:hover {
  background: rgba(244,196,48,0.12);
  border-color: rgba(244,196,48,0.4);
  color: var(--gold);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--tr);
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(244,196,48,0.2);
}
.game-thumb {
  width: 100%;
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
  background: #0d0d28;
}
.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.game-card:hover .game-thumb img {
  transform: scale(1.06);
}
.game-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.65));
  pointer-events: none;
}
.game-body { padding: 16px; }
.game-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.game-meta {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.game-provider {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.rtp-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  background: rgba(0,193,118,0.12);
  color: var(--green);
  border: 1px solid rgba(0,193,118,0.3);
  border-radius: 4px;
  margin-left: auto;
}
.game-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.games-more {
  text-align: center;
  margin-top: 36px;
}

/* ============================================================
   LIVE CASINO
   ============================================================ */
.live { background: var(--bg-primary); }
.live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.live-desc { font-size: 1rem; color: var(--text-muted); margin-bottom: 24px; }
.live-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.live-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--tr);
}
.live-feature:hover { background: var(--bg-card-hover); }
.live-feature span:first-child { font-size: 1.3rem; flex-shrink: 0; }
.live-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.live-game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: var(--tr);
  cursor: pointer;
}
.live-game-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(244,196,48,0.3);
  transform: scale(1.03);
}
.live-game-icon { font-size: 2.5rem; margin-bottom: 10px; }
.live-game-name { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.live-game-meta { font-size: 0.75rem; color: var(--green); font-weight: 600; }
.live-indicator {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.75rem; color: var(--green);
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================================
   MOBILE APP
   ============================================================ */
.mobile-app { background: var(--bg-secondary); }
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.app-features-list { margin-bottom: 32px; }
.app-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.app-feature:last-child { border-bottom: none; }
.app-feature-icon {
  width: 44px; height: 44px;
  background: rgba(244,196,48,0.1);
  border: 1px solid rgba(244,196,48,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.app-feature-text h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.app-feature-text p { font-size: 0.85rem; color: var(--text-muted); }
.app-download-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.app-btn {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  transition: var(--tr);
  cursor: pointer;
}
.app-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(244,196,48,0.3);
}
.app-btn-icon { font-size: 1.8rem; }
.app-btn-text small { display: block; font-size: 0.7rem; color: var(--text-muted); }
.app-btn-text strong { display: block; font-size: 0.95rem; color: #fff; }
.app-mockup {
  display: flex; align-items: center; justify-content: center;
}
.phone-frame {
  width: 260px; height: 520px;
  background: linear-gradient(160deg, #1a1a3e, #0d0d28);
  border: 2px solid rgba(244,196,48,0.25);
  border-radius: 36px;
  position: relative;
  box-shadow: var(--shadow), var(--glow-gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  padding: 20px;
  overflow: hidden;
}
.phone-frame::before {
  content: '';
  width: 80px; height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  position: absolute;
  top: 18px;
}
.phone-screen-content { text-align: center; }
.phone-screen-content .logo-icon {
  width: 60px; height: 60px;
  font-size: 2rem;
  margin: 0 auto 12px;
}
.phone-screen-content p { font-size: 0.8rem; color: var(--text-muted); }
.phone-screen-content strong { display: block; color: #fff; font-size: 1rem; margin-bottom: 6px; }
.phone-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%;
}
.phone-stat {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.phone-stat span {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
}
.phone-stat small {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* ============================================================
   SEO INFO BLOCK
   ============================================================ */
.info-block { background: var(--bg-primary); }
.info-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}
.info-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.info-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.info-full {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.info-full p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.info-full p:last-child { margin-bottom: 0; }
.info-full strong { color: var(--text); }

/* ============================================================
   PAYMENT METHODS
   ============================================================ */
.payments { background: var(--bg-secondary); padding: 56px 0; }
.payments-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
  transition: var(--tr);
}
.payment-item:hover {
  background: var(--bg-card-hover);
  color: var(--text);
  border-color: rgba(244,196,48,0.2);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--bg-primary); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--tr);
}
.review-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(244,196,48,0.15);
}
.review-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
  color: #07071a;
}
.review-info { flex: 1; }
.review-name { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.review-date { font-size: 0.75rem; color: var(--text-muted); }
.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }
.review-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.review-verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.72rem; color: var(--green); font-weight: 600;
  margin-top: 10px;
}

/* ============================================================
   TAG CLOUD
   ============================================================ */
.tag-cloud { background: var(--bg-secondary); padding: 60px 0; }
.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.tag {
  display: inline-block;
  padding: 7px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--tr);
}
.tag:hover {
  background: rgba(244,196,48,0.1);
  border-color: rgba(244,196,48,0.3);
  color: var(--gold);
}
.tag.lg { font-size: 0.95rem; padding: 9px 18px; color: var(--text); }
.tag.xl { font-size: 1.05rem; padding: 10px 22px; color: #fff; font-weight: 600; }

/* ============================================================
   RESPONSIBLE GAMBLING
   ============================================================ */
.responsible { background: var(--bg-primary); padding: 56px 0; }
.responsible-inner {
  background: rgba(255,71,87,0.05);
  border: 1px solid rgba(255,71,87,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.responsible-icon { font-size: 3rem; }
.responsible h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.responsible p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; }
.responsible-links { display: flex; gap: 16px; flex-wrap: wrap; }
.responsible-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.responsible-links a:hover { color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #040410;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 14px 0 20px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; margin-top: 4px; }
.social-btn {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--tr);
}
.social-btn:hover {
  background: rgba(244,196,48,0.12);
  border-color: rgba(244,196,48,0.3);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--tr);
}
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.6;
}
.footer-badges { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.footer-badge {
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.footer-badge.age18 {
  border-color: rgba(255,71,87,0.4);
  color: var(--red);
}

/* ============================================================
   MODALS
   ============================================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.active { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
}
.modal-box {
  position: relative;
  z-index: 1;
  background: #0e0e2a;
  border: 1px solid rgba(244,196,48,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow), var(--glow-gold);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--tr);
}
.modal-close:hover { background: rgba(255,71,87,0.15); color: var(--red); }
.modal-logo {
  text-align: center;
  margin-bottom: 8px;
}
.modal-logo .logo-icon {
  width: 52px; height: 52px;
  margin: 0 auto 10px;
  font-size: 1.6rem;
}
.modal-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 6px;
}
.modal-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #fff;
  transition: var(--tr);
  outline: none;
}
.form-input:focus {
  border-color: rgba(244,196,48,0.5);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(244,196,48,0.1);
}
.form-input::placeholder { color: #4a5568; }
.modal-bonus-notice {
  background: rgba(0,193,118,0.08);
  border: 1px solid rgba(0,193,118,0.25);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.83rem;
  color: var(--green);
  margin-bottom: 20px;
  text-align: center;
}
.modal-footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.modal-footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.modal-footer-links a:hover { color: var(--gold); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(244,196,48,0.15);
  border: 1px solid rgba(244,196,48,0.4);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--tr);
  opacity: 0;
  pointer-events: none;
  z-index: 500;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}
.scroll-top:hover {
  background: rgba(244,196,48,0.25);
  transform: translateY(-3px);
}

/* ============================================================
   INNER PAGES
   ============================================================ */

/* Page hero */
.page-hero {
  padding: calc(var(--header-h) + 50px) 0 50px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(244,196,48,0.07) 0%, transparent 60%),
    var(--bg-primary);
}
.page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff; margin: 12px 0 12px; line-height: 1.25; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 680px; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--gold); }

/* Page content */
.page-content { padding: 60px 0 80px; }
.page-content h2 { font-size: 1.45rem; font-weight: 700; color: #fff; margin: 40px 0 14px; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--gold); margin: 24px 0 10px; }
.page-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 14px; }
.page-content ul { margin: 12px 0 16px; }
.page-content ul li {
  color: var(--text-muted); font-size: 0.92rem; padding: 5px 0;
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.6;
}
.page-content ul li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-weight: 700; }
.page-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.page-content a:hover { color: var(--gold-light); }
.page-content strong { color: var(--text); }

/* CTA block */
.cta-block {
  text-align: center;
  padding: 36px 32px;
  margin: 40px 0;
  background: linear-gradient(135deg, rgba(244,196,48,0.08), rgba(244,196,48,0.03));
  border: 1px solid rgba(244,196,48,0.25);
  border-radius: var(--radius-lg);
}
.cta-icon { font-size: 3rem; margin-bottom: 14px; }
.cta-title { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-subtitle { font-size: 1rem; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.cta-trust { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 22px; }

/* Glass card */
.glass-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* FAQ */
.faq-section { margin: 48px 0; }
.faq-section h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; color: #fff; }
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  padding: 16px 20px;
  font-size: 0.97rem; font-weight: 700; color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  margin: 0; user-select: none;
}
.faq-question::after {
  content: '▼'; font-size: 0.7rem; color: var(--gold); transition: var(--tr); flex-shrink: 0; margin-left: 12px;
}
.faq-item.open .faq-question::after { transform: rotate(180deg); }
.faq-item.open { border-color: rgba(244,196,48,0.2); }
.faq-answer { display: none; padding: 0 20px 16px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.faq-answer a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* Registration page layout */
.reg-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: flex-start;
}
.reg-form-box {
  background: #0e0e2a;
  border: 1px solid rgba(244,196,48,0.22);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
  box-shadow: var(--shadow), var(--glow-gold);
}
.reg-form-title { font-size: 1.3rem; font-weight: 800; color: #fff; text-align: center; margin-bottom: 6px; }
.reg-form-sub { text-align: center; color: var(--text-muted); font-size: 0.88rem; margin-bottom: 18px; }
.reg-bonus-notice {
  background: rgba(0,193,118,0.08); border: 1px solid rgba(0,193,118,0.25);
  border-radius: var(--radius); padding: 10px 14px;
  font-size: 0.82rem; color: var(--green); margin-bottom: 18px; text-align: center;
}

/* ============================================================
   MEDIA QUERIES
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 340px; margin: 0 auto; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
  .bonuses-grid .bonus-card:last-child { grid-column: span 2; max-width: 420px; margin: 0 auto; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .live-grid { grid-template-columns: 1fr; gap: 40px; }
  .app-grid { grid-template-columns: 1fr; gap: 40px; }
  .app-mockup { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .info-columns { grid-template-columns: 1fr; gap: 28px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --header-h: 62px; }
  .section { padding: 56px 0; }
  .container { padding: 0 15px; }

  /* Header mobile */
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: #0a0a22;
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--header-h) + 20px) 20px 40px;
    gap: 4px;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    transform: translateX(100%);
  }
  .nav-menu.open {
    display: flex;
    transform: translateX(0);
  }
  .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
  }
  .nav-link:hover { border-color: var(--border); }
  .trust-badges { display: none; }
  .header-cta .btn:first-child { display: none; }
  .burger { display: flex; }

  /* Hero mobile */
  .hero { padding: calc(var(--header-h) + 40px) 0 56px; }
  .hero-grid { gap: 32px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2rem; }
  .hero-desc { font-size: 0.95rem; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { flex: 1; min-width: 120px; justify-content: center; padding: 13px 20px; }
  .hero-stats { gap: 24px; }

  /* Grids mobile */
  .advantages-grid { grid-template-columns: 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .bonuses-grid .bonus-card:last-child { grid-column: auto; max-width: 100%; }
  .games-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .live-features { grid-template-columns: 1fr; }
  .live-visual { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Responsible gambling mobile */
  .responsible-inner { grid-template-columns: 1fr; text-align: center; }
  .responsible-icon { display: none; }
  .responsible-links { justify-content: center; }

  /* Games tabs */
  .games-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .tab-btn { flex-shrink: 0; }

  /* Modal */
  .modal-box { padding: 28px 20px; }

  /* Scroll top */
  .scroll-top { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.7rem; }
  .game-btns { grid-template-columns: 1fr; }
  .cta-block { padding: 24px 16px; }
  .glass-card { padding: 20px 16px; }
}

@media (max-width: 960px) {
  .reg-layout { grid-template-columns: 1fr; }
  .reg-form-box { position: static; }
}

@media (max-width: 768px) {
  .page-hero { padding: calc(var(--header-h) + 32px) 0 36px; }
  .page-content { padding: 40px 0 60px; }
  .faq-section { margin: 32px 0; }
}
