/* ============================================
   BOHO CASINO — COMPLETE STYLESHEET
   bohocasino.pro
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --brand-primary:     #F5A623;
  --brand-secondary:   #7B2FBE;
  --brand-accent:      #FF6B00;
  --brand-bg:          #FFFFFF;
  --brand-text:        #333333;
  --brand-header-bg:   #FFFFFF;
  --brand-btn-bg:      #F5A623;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  24px;
  --brand-head-font:   'Montserrat', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size:   14px;
  --brand-purple-light: #9B59B6;
  --brand-purple-dark:  #5B1F8E;
  --brand-orange-light: #FFB84D;
  --brand-orange-dark:  #E8940F;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.18);
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-pill: 50px;
  --transition: 0.2s ease;
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  color: var(--brand-text);
  background-color: var(--brand-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Skip to content --- */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--brand-secondary);
  color: #fff;
  padding: 10px 20px;
  z-index: 99999;
  border-radius: 0 0 var(--radius-sm) 0;
  font-family: var(--brand-body-font);
  font-weight: 600;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 0;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  background: var(--brand-header-bg);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

/* Logo */
.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Main nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav ul li a {
  display: block;
  padding: 8px 16px;
  font-family: var(--brand-body-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-text);
  border-radius: var(--brand-btn-radius);
  transition: background var(--transition), color var(--transition);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: var(--brand-primary);
  color: #fff;
}

/* Header CTA buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-login {
  padding: 9px 22px;
  border-radius: var(--brand-btn-radius);
  border: 2px solid var(--brand-secondary);
  background: transparent;
  color: var(--brand-secondary);
  font-family: var(--brand-body-font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn-login:hover {
  background: var(--brand-secondary);
  color: #fff;
}

.btn-signup {
  padding: 9px 22px;
  border-radius: var(--brand-btn-radius);
  border: 2px solid var(--brand-primary);
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--brand-body-font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn-signup:hover {
  background: var(--brand-orange-dark);
  border-color: var(--brand-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,166,35,0.4);
}

/* Burger menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  font-size: 22px;
  color: var(--brand-secondary);
  line-height: 1;
  transition: background var(--transition);
}

.mobile-menu-btn:hover {
  background: rgba(123,47,190,0.08);
}

.mobile-menu-btn:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  background: linear-gradient(135deg, #7B2FBE 0%, #9B4FD4 40%, #F5A623 100%);
  padding: 80px 0 60px;
  overflow: hidden;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.hero-content h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(32px, 5vw, 54px);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--brand-primary);
}

.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 6px 24px rgba(245,166,35,0.45);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
  cursor: pointer;
}

.btn-hero:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245,166,35,0.55);
}

.btn-hero:focus {
  outline: 3px solid rgba(255,255,255,0.6);
  outline-offset: 2px;
}

.hero-note {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 14px;
}

.hero-visual {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.hero-stats {
  display: flex;
  gap: 16px;
}

.hero-stat-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  min-width: 130px;
}

.hero-stat-card .stat-number {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 28px;
  color: var(--brand-primary);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-card .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.trust-badge .badge-icon {
  font-size: 14px;
}

/* ============================================
   BUTTONS (GENERAL)
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(245,166,35,0.35);
}

.btn-primary:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.45);
}

.btn-secondary {
  background: var(--brand-secondary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(123,47,190,0.3);
}

.btn-secondary:hover {
  background: var(--brand-purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123,47,190,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--brand-secondary);
  border: 2px solid var(--brand-secondary);
}

.btn-outline:hover {
  background: var(--brand-secondary);
  color: #fff;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  color: #fff;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 6px 24px rgba(255,107,0,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,107,0,0.5);
}

/* ============================================
   FLOATING CTA BUTTON
   ============================================ */

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--brand-head-font);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

.floating-cta:focus {
  outline: 3px solid rgba(245,166,35,0.6);
  outline-offset: 2px;
}

/* ============================================
   MAIN CONTENT SECTIONS
   ============================================ */

.section-padded {
  padding: 70px 0;
}

.section-padded-sm {
  padding: 40px 0;
}

.section-alt {
  background: #f8f6ff;
}

.section-dark {
  background: linear-gradient(135deg, #7B2FBE 0%, #5B1F8E 100%);
  color: #fff;
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--brand-text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title span {
  color: var(--brand-secondary);
}

.section-title.light {
  color: #fff;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 560px;
}

.section-subtitle.light {
  color: rgba(255,255,255,0.8);
}

.section-header {
  margin-bottom: 48px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ============================================
   CATEGORY TABS
   ============================================ */

.category-tabs-wrap {
  background: #fff;
  padding: 20px 0 0;
  border-bottom: 2px solid #f0edf8;
  position: relative;
}

.category-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 0;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--brand-btn-radius) var(--brand-btn-radius) 0 0;
  font-family: var(--brand-body-font);
  font-size: 13px;
  font-weight: 700;
  color: #777;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  background: transparent;
  transition: background var(--transition), color var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.cat-tab:hover {
  color: var(--brand-secondary);
  background: rgba(123,47,190,0.06);
}

.cat-tab.active {
  color: var(--brand-secondary);
  border-bottom-color: var(--brand-secondary);
  background: rgba(123,47,190,0.06);
}

.cat-tab-icon {
  font-size: 16px;
}

/* ============================================
   GAME CARDS SECTION
   ============================================ */

.games-section {
  padding: 40px 0;
}

.games-row {
  margin-bottom: 44px;
}

.games-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.games-row-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.games-row-title .row-icon {
  font-size: 20px;
}

.view-all-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}

.view-all-link:hover {
  color: var(--brand-accent);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.game-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.game-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: linear-gradient(135deg, #f0edf8 0%, #e8e0f5 100%);
}

/* Placeholder game images */
.game-card-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  overflow: hidden;
}

.game-card-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.game-placeholder-1::before { background: linear-gradient(135deg, #7B2FBE, #F5A623); }
.game-placeholder-2::before { background: linear-gradient(135deg, #FF6B00, #F5A623); }
.game-placeholder-3::before { background: linear-gradient(135deg, #2980B9, #7B2FBE); }
.game-placeholder-4::before { background: linear-gradient(135deg, #27AE60, #F5A623); }
.game-placeholder-5::before { background: linear-gradient(135deg, #C0392B, #FF6B00); }
.game-placeholder-6::before { background: linear-gradient(135deg, #8E44AD, #2980B9); }
.game-placeholder-7::before { background: linear-gradient(135deg, #F39C12, #7B2FBE); }
.game-placeholder-8::before { background: linear-gradient(135deg, #16A085, #F5A623); }
.game-placeholder-9::before { background: linear-gradient(135deg, #D35400, #8E44AD); }
.game-placeholder-10::before { background: linear-gradient(135deg, #1ABC9C, #7B2FBE); }
.game-placeholder-11::before { background: linear-gradient(135deg, #E74C3C, #F5A623); }
.game-placeholder-12::before { background: linear-gradient(135deg, #2ECC71, #3498DB); }

.game-card-placeholder .placeholder-icon {
  font-size: 40px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.game-card-placeholder .placeholder-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-top: 6px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  padding: 0 6px;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(123,47,190,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.game-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-body-font);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.game-play-btn:hover {
  background: var(--brand-orange-dark);
}

.game-card-name {
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-text);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================
   WELCOME BONUS SECTION
   ============================================ */

.bonus-section {
  background: linear-gradient(135deg, #7B2FBE 0%, #5B1F8E 100%);
  padding: 70px 0;
  overflow: hidden;
  position: relative;
}

.bonus-section::after {
  content: '🎰';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  opacity: 0.08;
  pointer-events: none;
}

.bonus-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.bonus-content {
  flex: 1;
}

.bonus-label {
  display: inline-block;
  background: rgba(245,166,35,0.2);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.bonus-content h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(28px, 4vw, 46px);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.bonus-content h2 span {
  color: var(--brand-primary);
}

.bonus-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.bonus-terms {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
}

.bonus-cards {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bonus-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bonus-card-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(245,166,35,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-card-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.bonus-card-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

/* ============================================
   MID-PAGE CTA BUTTON
   ============================================ */

.mid-cta-section {
  padding: 60px 0;
  text-align: center;
  background: #fff;
}

.mid-cta-section h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--brand-text);
  margin-bottom: 12px;
}

.mid-cta-section h2 span {
  color: var(--brand-secondary);
}

.mid-cta-section p {
  font-size: 15px;
  color: #666;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.mid-cta-btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.mid-cta-note {
  font-size: 12px;
  color: #999;
}

/* ============================================
   FEATURES GRID
   ============================================ */

.features-section {
  padding: 70px 0;
  background: #f8f6ff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.feature-icon-orange {
  background: rgba(245,166,35,0.12);
}

.feature-icon-purple {
  background: rgba(123,47,190,0.12);
}

.feature-icon-accent {
  background: rgba(255,107,0,0.1);
}

.feature-card h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 17px;
  color: var(--brand-text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

/* ============================================
   PAYMENTS SECTION
   ============================================ */

.payments-section {
  padding: 60px 0;
  background: #fff;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.payment-method {
  background: #f8f6ff;
  border: 1px solid #ede9f8;
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.payment-method:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 2px 12px rgba(245,166,35,0.15);
}

.payment-method .payment-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.payments-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.payments-info-card {
  border: 1px solid #ede9f8;
  border-radius: var(--radius-md);
  padding: 22px;
}

.payments-info-card h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.payments-info-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ============================================
   LIVE CASINO SECTION
   ============================================ */

.live-casino-section {
  padding: 70px 0;
  background: #f8f6ff;
}

.live-casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.live-table-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.live-table-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.live-table-visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
  overflow: hidden;
}

.live-table-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 1;
}

.live-visual-1::before { background: linear-gradient(135deg, #1a5f2e, #2ecc71); }
.live-visual-2::before { background: linear-gradient(135deg, #1a1a2e, #7B2FBE); }
.live-visual-3::before { background: linear-gradient(135deg, #b22222, #FF6B00); }

.live-table-visual .live-icon {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.4));
}

.live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #e74c3c;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: livePulse 1.2s infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.live-table-info {
  padding: 16px 18px;
}

.live-table-info h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-text);
  margin-bottom: 6px;
}

.live-table-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #888;
}

.live-table-limits {
  font-weight: 600;
  color: var(--brand-secondary);
}

/* ============================================
   SPORTS BETTING SECTION
   ============================================ */

.sports-section {
  padding: 70px 0;
  background: #fff;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.sport-card {
  background: #f8f6ff;
  border: 1px solid #ede9f8;
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
}

.sport-card:hover {
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  transform: translateY(-2px);
}

.sport-card:hover .sport-name,
.sport-card:hover .sport-count {
  color: #fff;
}

.sport-emoji {
  font-size: 38px;
  display: block;
  margin-bottom: 10px;
}

.sport-name {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-text);
  display: block;
  margin-bottom: 4px;
  transition: color var(--transition);
}

.sport-count {
  font-size: 12px;
  color: #888;
  transition: color var(--transition);
}

.sports-info-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.sports-info-col h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-text);
  margin-bottom: 14px;
}

.sports-info-col p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.sports-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.sports-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.sports-feature-item .check-icon {
  color: var(--brand-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   SECURITY / LICENSING SECTION
   ============================================ */

.security-section {
  padding: 60px 0;
  background: #f8f6ff;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.security-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.security-card .security-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 14px;
}

.security-card h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-text);
  margin-bottom: 8px;
}

.security-card p {
  font-size: 12px;
  color: #777;
  line-height: 1.55;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  padding: 70px 0;
  background: #fff;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #ede9f8;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--brand-secondary);
}

.faq-question:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: -2px;
}

.faq-question .faq-arrow {
  font-size: 18px;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--brand-secondary);
}

.faq-item.open .faq-question .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================================
   ABOUT CONTENT SECTION (SEO content)
   ============================================ */

.content-section {
  padding: 70px 0;
}

.content-section h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--brand-text);
  margin-bottom: 14px;
}

.content-section h2 span {
  color: var(--brand-secondary);
}

.content-section h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-text);
  margin-top: 28px;
  margin-bottom: 10px;
}

.content-section p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.content-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.content-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.content-check-item .ci {
  color: var(--brand-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.75);
  padding-top: 60px;
}

.footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .footer-logo {
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  height: 40px;
  width: auto;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 300px;
}

.footer-col-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--brand-primary);
}

/* Responsible gambling section */
.footer-responsible {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.responsible-grid {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.resp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--brand-btn-radius);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}

.resp-badge .badge-num {
  background: var(--brand-primary);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.resp-help-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-left: auto;
}

.resp-help-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  transition: color var(--transition);
}

.resp-help-links a:hover {
  color: var(--brand-primary);
}

.resp-phone {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.resp-phone strong {
  color: var(--brand-primary);
}

/* Security logos row */
.footer-security {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.security-logos-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.security-logo-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.security-logo-badge .slb-icon {
  font-size: 14px;
  opacity: 0.8;
}

/* Footer bottom */
.footer-bottom {
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: var(--brand-primary);
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page-wrap {
  padding: 60px 0 80px;
}

.legal-page-wrap h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(26px, 4vw, 40px);
  color: var(--brand-text);
  margin-bottom: 10px;
}

.legal-last-updated {
  font-size: 13px;
  color: #888;
  margin-bottom: 40px;
  display: block;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 20px;
  color: var(--brand-text);
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-text);
  margin-top: 22px;
  margin-bottom: 8px;
}

.legal-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul, .legal-content ol {
  margin: 12px 0 16px 24px;
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ============================================
   UTILITY
   ============================================ */

.text-center { text-align: center; }
.text-right { text-align: right; }
.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; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* ============================================
   RESPONSIVE — 1200px
   ============================================ */

@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .payment-methods-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */

@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .bonus-inner {
    gap: 36px;
  }

  .bonus-cards {
    flex: 0 0 280px;
  }

  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat-card {
    min-width: 110px;
    padding: 16px 18px;
  }

  .content-two-col {
    gap: 30px;
  }
}

/* ============================================
   RESPONSIVE — 992px (TABLET / BURGER MENU)
   ============================================ */

@media (max-width: 992px) {
  /* Mobile nav */
  .main-nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 16px 20px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    gap: 4px;
  }

  .mobile-nav-active ul li a {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
  }

  /* Nav */
  .site-header .container {
    height: 64px;
    position: relative;
  }

  .header-actions .btn-login,
  .header-actions .btn-signup {
    font-size: 13px;
    padding: 8px 16px;
  }

  /* Hero */
  .hero-inner {
    flex-direction: column;
    gap: 30px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-visual {
    align-items: center;
    width: 100%;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-trust-badges {
    justify-content: center;
  }

  /* Bonus */
  .bonus-inner {
    flex-direction: column;
    gap: 30px;
  }

  .bonus-cards {
    flex: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Games */
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Sports */
  .sports-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sports-info-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Live casino */
  .live-casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Payments */
  .payment-methods-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .payments-info {
    grid-template-columns: 1fr;
  }

  /* Content */
  .content-two-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */

@media (max-width: 768px) {
  .section-padded {
    padding: 50px 0;
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .live-casino-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .payment-methods-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .resp-help-links {
    margin-left: 0;
  }

  .responsible-grid {
    gap: 12px;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero-section {
    padding: 50px 0 40px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .payment-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stat-card {
    min-width: calc(50% - 5px);
    flex: 1;
  }

  .btn-hero {
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  .mid-cta-btn-wrap .btn-cta {
    width: 100%;
    justify-content: center;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .btn-login {
    display: none;
  }

  .security-logos-row {
    gap: 10px;
  }

  .footer-legal-links {
    gap: 12px;
  }
}

/* ============================================
   RESPONSIVE — 320px
   ============================================ */

@media (max-width: 320px) {
  html {
    font-size: 15px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sports-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content h1 {
    font-size: 28px;
  }
}