/* ============================================================
   NOMINI.PRO — COMPLETE STYLESHEET
   Brand: Nomini Casino | Language: DE
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --brand-primary:     #2B7DE9;
  --brand-secondary:   #FF4D6A;
  --brand-accent:      #FFD700;
  --brand-bg:          #E8F0FE;
  --brand-text:        #1A1A2E;
  --brand-header-bg:   #FFFFFF;
  --brand-btn-bg:      #FF3366;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  30px;
  --brand-head-font:   'Fredoka One', sans-serif;
  --brand-body-font:   'Nunito', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size:   14px;
  --shadow-sm:         0 2px 8px rgba(43,125,233,0.12);
  --shadow-md:         0 4px 20px rgba(43,125,233,0.18);
  --shadow-lg:         0 8px 40px rgba(43,125,233,0.22);
  --radius-card:       16px;
  --radius-btn:        30px;
  --transition:        0.22s ease;
}

/* --- Reset & Base --- */
*, *::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: var(--brand-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-primary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--brand-body-font); }

/* --- Skip to Content (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 20px;
  z-index: 99999;
  border-radius: 0 0 8px 0;
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

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

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--brand-header-bg);
  box-shadow: 0 2px 12px rgba(43,125,233,0.10);
  border-bottom: 2px solid rgba(43,125,233,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

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

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

/* Search Bar */
.header-search {
  flex: 1;
  max-width: 380px;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 10px 20px 10px 44px;
  border: 2px solid rgba(43,125,233,0.18);
  border-radius: 50px;
  font-family: var(--brand-body-font);
  font-size: 14px;
  background: var(--brand-bg);
  color: var(--brand-text);
  outline: none;
  transition: border-color var(--transition);
}
.header-search input:focus { border-color: var(--brand-primary); }
.header-search .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-primary);
  font-size: 17px;
  pointer-events: none;
}

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-actions .btn-login {
  padding: 9px 22px;
  border: 2px solid var(--brand-primary);
  border-radius: var(--brand-btn-radius);
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--brand-body-font);
  transition: background var(--transition), color var(--transition);
  background: transparent;
  white-space: nowrap;
}
.header-actions .btn-login:hover {
  background: var(--brand-primary);
  color: #fff;
}
.header-actions .btn-register {
  padding: 9px 22px;
  background: linear-gradient(135deg, #FF3366 0%, #FF4D6A 100%);
  border-radius: var(--brand-btn-radius);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--brand-body-font);
  box-shadow: 0 3px 14px rgba(255,51,102,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.header-actions .btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255,51,102,0.48);
}

/* Navigation */
.main-nav {
  position: relative;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-text);
  transition: background var(--transition), color var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: var(--brand-bg);
  color: var(--brand-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  font-size: 26px;
  color: var(--brand-text);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background var(--transition);
  line-height: 1;
}
.mobile-menu-btn:hover { background: var(--brand-bg); }
.mobile-menu-btn:focus { outline: 2px solid var(--brand-primary); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  margin-top: 68px;
  background: linear-gradient(135deg, #1a5fc8 0%, #2B7DE9 45%, #4a9eff 100%);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,77,106,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 0 70px;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-block;
  background: rgba(255,215,0,0.22);
  border: 1.5px solid rgba(255,215,0,0.5);
  color: var(--brand-accent);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-title span {
  color: var(--brand-accent);
  display: block;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: 600;
}

.hero-bonus-box {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}

.hero-bonus-box .bonus-label {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-bonus-box .bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--brand-accent);
  font-weight: 800;
  line-height: 1;
}

.hero-bonus-box .bonus-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

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

/* Hero Disclaimer */
.hero-disclaimer {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}

/* Hero Visual Side */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-cards-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 380px;
}

.hero-game-card {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform var(--transition);
}
.hero-game-card:hover { transform: translateY(-3px); }
.hero-game-card .card-icon { font-size: 32px; margin-bottom: 8px; }
.hero-game-card .card-label {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.hero-stat {
  background: rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
}
.hero-stat .stat-num {
  font-family: var(--brand-head-font);
  font-size: 18px;
  color: var(--brand-accent);
  font-weight: 800;
}
.hero-stat .stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.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: 15px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  border: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:focus { outline: 3px solid var(--brand-accent); outline-offset: 2px; }

.btn-hero {
  padding: 16px 36px;
  font-size: 17px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #1A1A2E;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 4px 22px rgba(255,165,0,0.45);
  font-weight: 800;
  font-family: var(--brand-head-font);
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255,165,0,0.58);
  color: #1A1A2E;
}

.btn-cta {
  background: linear-gradient(135deg, #FF3366 0%, #FF4D6A 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,51,102,0.38);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,51,102,0.52);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #4a9eff 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #FF4D6A 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,77,106,0.32);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,77,106,0.48);
  color: #fff;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, #FF3366 0%, #FF4D6A 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,51,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: var(--brand-body-font);
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,51,102,0.60);
  color: #fff;
}
.floating-cta:focus { outline: 3px solid var(--brand-accent); outline-offset: 2px; }
.floating-cta .pulse {
  width: 10px;
  height: 10px;
  background: var(--brand-accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.7; }
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.section {
  padding: 70px 0;
}
.section-alt {
  background: #FFFFFF;
}
.section-dark {
  background: linear-gradient(135deg, #1a2744 0%, #1A1A2E 100%);
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-label {
  display: inline-block;
  background: rgba(43,125,233,0.10);
  color: var(--brand-primary);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-dark .section-label {
  background: rgba(255,215,0,0.12);
  color: var(--brand-accent);
}
.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--brand-text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-dark .section-title { color: #fff; }
.section-desc {
  font-size: 15px;
  color: #6b7a99;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}
.section-dark .section-desc { color: rgba(255,255,255,0.72); }

/* ============================================================
   CATEGORY FILTER TABS
   ============================================================ */
.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}
.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  color: var(--brand-text);
  border: 2px solid rgba(43,125,233,0.14);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--brand-body-font);
}
.cat-tab:hover, .cat-tab.active {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
  box-shadow: 0 3px 12px rgba(43,125,233,0.28);
}
.cat-tab .tab-icon { font-size: 15px; }

/* ============================================================
   GAME CARDS GRID
   ============================================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.game-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  border: 1.5px solid rgba(43,125,233,0.08);
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.game-card-thumb {
  position: relative;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #4a9eff 100%);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.game-rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand-accent);
  color: #1A1A2E;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--brand-head-font);
}

.game-hot-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #FF3366 0%, #FF4D6A 100%);
  color: #fff;
  padding: 3px 9px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.game-icon-placeholder {
  font-size: 52px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.game-card-body {
  padding: 14px 16px;
}
.game-card-title {
  font-weight: 800;
  font-size: 14px;
  color: var(--brand-text);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card-provider {
  font-size: 11px;
  color: #8a97b0;
  font-weight: 600;
}
.game-card-rtp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.rtp-label {
  font-size: 11px;
  color: #8a97b0;
  font-weight: 600;
}
.rtp-value {
  font-size: 13px;
  font-weight: 800;
  color: #22c55e;
}

/* ============================================================
   FEATURES SECTION (3-Column Grid)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(43,125,233,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--brand-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
  transition: transform var(--transition);
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(3deg); }
.feature-title {
  font-family: var(--brand-head-font);
  font-size: 18px;
  font-weight: var(--brand-head-weight);
  color: var(--brand-text);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 13px;
  color: #6b7a99;
  line-height: 1.65;
}

/* ============================================================
   BONUS SECTION (2-Column Layout)
   ============================================================ */
.bonus-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.bonus-content-side { padding-right: 20px; }

.bonus-content-side .section-title { text-align: left; }
.bonus-content-side .section-label { display: inline-block; }

.bonus-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--brand-bg);
  border-radius: 12px;
  border: 1.5px solid rgba(43,125,233,0.10);
}
.bonus-item-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.bonus-item-text {}
.bonus-item-title {
  font-weight: 800;
  font-size: 14px;
  color: var(--brand-text);
  margin-bottom: 2px;
}
.bonus-item-desc {
  font-size: 12px;
  color: #6b7a99;
  line-height: 1.55;
}
.bonus-item-value {
  margin-left: auto;
  flex-shrink: 0;
  font-family: var(--brand-head-font);
  font-size: 20px;
  color: var(--brand-primary);
  font-weight: 800;
}

.bonus-terms-note {
  font-size: 11px;
  color: #8a97b0;
  margin-top: 12px;
}

/* Bonus Visual Side */
.bonus-visual-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-big-card {
  background: linear-gradient(135deg, #2B7DE9 0%, #4a9eff 100%);
  border-radius: 20px;
  padding: 32px 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.bonus-big-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.bonus-big-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 130px;
  height: 130px;
  background: rgba(255,215,0,0.10);
  border-radius: 50%;
}
.bonus-big-card .big-card-label {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.bonus-big-card .big-card-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brand-accent);
  font-weight: 800;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.bonus-big-card .big-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.bonus-small-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bonus-small-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(43,125,233,0.08);
}
.bonus-small-card .small-icon { font-size: 26px; margin-bottom: 8px; }
.bonus-small-card .small-title {
  font-weight: 800;
  font-size: 13px;
  color: var(--brand-text);
  margin-bottom: 3px;
}
.bonus-small-card .small-val {
  font-family: var(--brand-head-font);
  font-size: 16px;
  color: var(--brand-secondary);
  font-weight: 800;
}

/* ============================================================
   PAYMENTS SECTION (4-Column)
   ============================================================ */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.payment-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(43,125,233,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.payment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.payment-icon { font-size: 36px; margin-bottom: 12px; }
.payment-title {
  font-weight: 800;
  font-size: 14px;
  color: var(--brand-text);
  margin-bottom: 6px;
}
.payment-speed {
  font-size: 11px;
  color: #22c55e;
  font-weight: 700;
  margin-bottom: 4px;
}
.payment-limit {
  font-size: 11px;
  color: #8a97b0;
}

/* ============================================================
   STATS STRIP (DARK SECTION)
   ============================================================ */
.stats-strip {
  background: linear-gradient(135deg, #1a2744 0%, #1A1A2E 100%);
  padding: 50px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--brand-head-font);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brand-accent);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-text {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  font-weight: 600;
}

/* ============================================================
   INFO / CONTENT SECTIONS
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-content h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: var(--brand-head-weight);
  color: var(--brand-text);
  margin-bottom: 16px;
  line-height: 1.25;
}
.info-content h3 {
  font-family: var(--brand-head-font);
  font-size: 1.15rem;
  font-weight: var(--brand-head-weight);
  color: var(--brand-text);
  margin-top: 28px;
  margin-bottom: 10px;
}
.info-content p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.72;
  margin-bottom: 16px;
}
.info-content ul {
  margin: 0 0 18px 0;
  padding: 0;
}
.info-content ul li {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.65;
  padding: 5px 0 5px 22px;
  position: relative;
}
.info-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: 800;
}

/* Info Sidebar */
.info-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sidebar-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(43,125,233,0.08);
}
.sidebar-card-title {
  font-family: var(--brand-head-font);
  font-size: 16px;
  font-weight: var(--brand-head-weight);
  color: var(--brand-text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(43,125,233,0.06);
  font-size: 13px;
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list .sl-label { color: #6b7a99; font-weight: 600; }
.sidebar-list .sl-value { color: var(--brand-text); font-weight: 800; }

.sidebar-cta-card {
  background: linear-gradient(135deg, #2B7DE9 0%, #4a9eff 100%);
  border-radius: var(--radius-card);
  padding: 26px 20px;
  text-align: center;
  color: #fff;
}
.sidebar-cta-card .sc-title {
  font-family: var(--brand-head-font);
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--brand-accent);
}
.sidebar-cta-card .sc-desc {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 18px;
  line-height: 1.55;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid rgba(43,125,233,0.10);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
  font-size: 14px;
  color: var(--brand-text);
  text-align: left;
  background: none;
  cursor: pointer;
  font-family: var(--brand-body-font);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--brand-primary); }
.faq-question:focus { outline: 2px solid var(--brand-primary); }
.faq-chevron {
  font-size: 18px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--brand-primary);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 13px;
  color: #6b7a99;
  line-height: 1.70;
  border-top: 1px solid rgba(43,125,233,0.07);
}
.faq-item.open .faq-answer { display: block; padding-top: 14px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #FF3366 0%, #FF4D6A 50%, #FF6B35 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-section .section-title { color: #fff; position: relative; z-index: 1; }
.cta-section .section-desc { color: rgba(255,255,255,0.88); position: relative; z-index: 1; }
.cta-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #12172e;
  color: rgba(255,255,255,0.72);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  margin-top: 14px;
  margin-bottom: 18px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.70);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

.footer-col-title {
  font-family: var(--brand-head-font);
  font-size: 16px;
  font-weight: var(--brand-head-weight);
  color: #fff;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }

/* Footer Bottom */
.footer-bottom {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Trust Logos Row */
.trust-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.80);
  gap: 6px;
  white-space: nowrap;
}
.trust-badge .badge-icon { font-size: 16px; }
.trust-badge.age-badge {
  background: rgba(255,51,102,0.15);
  border-color: rgba(255,51,102,0.30);
  color: #FF4D6A;
  font-size: 16px;
  font-weight: 900;
}
.trust-badge.visa { background: rgba(26,86,219,0.15); border-color: rgba(26,86,219,0.30); color: #1A56DB; }
.trust-badge.mc { background: rgba(235,87,10,0.15); border-color: rgba(235,87,10,0.30); color: #EB570A; }
.trust-badge.amex { background: rgba(0,115,170,0.15); border-color: rgba(0,115,170,0.30); color: #0073AA; }
.trust-badge.btc { background: rgba(247,147,26,0.15); border-color: rgba(247,147,26,0.30); color: #F7931A; }
.trust-badge.eth { background: rgba(98,126,234,0.15); border-color: rgba(98,126,234,0.30); color: #627EEA; }
.trust-badge.ga { background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.25); color: #22c55e; }

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.88); }

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

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  line-height: 1.65;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 4px;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  padding: 100px 0 70px;
  min-height: 70vh;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 48px 52px;
  box-shadow: var(--shadow-sm);
}
.legal-content h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: var(--brand-head-weight);
  color: var(--brand-text);
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 12px;
  color: #8a97b0;
  margin-bottom: 32px;
}
.legal-content h2 {
  font-family: var(--brand-head-font);
  font-size: 1.2rem;
  font-weight: var(--brand-head-weight);
  color: var(--brand-text);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-content p, .legal-content li {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 20px; }
.legal-content ul li { list-style: disc; }
.legal-content a { color: var(--brand-primary); text-decoration: underline; }

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

/* Large Tablet / Small Desktop (max 1200px) */
@media (max-width: 1200px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* Tablet (max 992px) */
@media (max-width: 992px) {
  .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: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 100;
  }
  .mobile-nav-active ul li a {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 10px;
  }
  .header-search { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-cta-group { justify-content: center; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .payments-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .bonus-section-inner { grid-template-columns: 1fr; }
  .bonus-content-side { padding-right: 0; }
  .info-grid { grid-template-columns: 1fr; }
  .info-sidebar { position: static; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .section-title { font-size: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .legal-content { padding: 28px 22px; }
  .hero-bonus-box { text-align: left; }
  .bonus-small-cards { grid-template-columns: 1fr; }
  .footer-bottom-inner { gap: 16px; }
  .trust-logos { gap: 8px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
  .hero-section { min-height: 420px; }
  .hero-inner { padding: 40px 0 50px; }
  .btn-hero { padding: 14px 28px; font-size: 15px; }
  .games-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .header-actions .btn-login { display: none; }
  .floating-cta { bottom: 20px; right: 16px; padding: 12px 20px; font-size: 14px; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
}