/* ============================================================
   NOMINI24.LIVE — Complete Site Stylesheet
   Brand: Nomini Casino | Niche: Online Casino / Betting
   ============================================================ */

/* --- 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:     #2B7FFF;
  --brand-secondary:   #FF4D8A;
  --brand-accent:      #FFD700;
  --brand-bg:          #EBF3FF;
  --brand-text:        #1A2B4A;
  --brand-header-bg:   #FFFFFF;
  --brand-btn-bg:      #FF2D78;
  --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,127,255,0.12);
  --shadow-md:         0 4px 20px rgba(43,127,255,0.18);
  --shadow-lg:         0 8px 40px rgba(43,127,255,0.22);
  --radius-sm:         8px;
  --radius-md:         16px;
  --radius-lg:         24px;
  --transition:        0.2s 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-color: var(--brand-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--brand-secondary);
}

ul {
  list-style: none;
}

/* --- Skip to Content (Accessibility) --- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 20px;
  z-index: 99999;
  border-radius: 0 0 var(--radius-sm) 0;
  font-family: var(--brand-body-font);
  font-weight: 700;
  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 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--brand-header-bg);
  box-shadow: 0 2px 12px rgba(43,127,255,0.10);
  border-bottom: 2px solid rgba(43,127,255,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;
}

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

/* Nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.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-weight: 700;
  font-size: 15px;
  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-bg);
  color: var(--brand-primary);
}

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

/* Mobile Burger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  line-height: 1;
}

.mobile-menu-btn:hover {
  background: var(--brand-primary);
  color: #fff;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #1a6ae0 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(43,127,255,0.30);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,127,255,0.40);
  color: #fff;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #e0005a 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,77,138,0.30);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,77,138,0.40);
  color: #fff;
}

.btn-hero {
  display: inline-block;
  padding: 18px 52px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: 22px;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--brand-btn-bg) 0%, #FF6B00 100%);
  color: var(--brand-btn-text);
  box-shadow: 0 6px 28px rgba(255,45,120,0.45), 0 2px 0 rgba(255,255,255,0.18) inset;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-hero::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,0.18);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
}

.btn-hero:hover::after {
  left: 160%;
}

.btn-hero:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(255,45,120,0.55);
  color: #fff;
}

.btn-cta {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-body-font);
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(135deg, var(--brand-accent) 0%, #ffb300 100%);
  color: var(--brand-text);
  box-shadow: 0 4px 20px rgba(255,215,0,0.40);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,215,0,0.55);
  color: var(--brand-text);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  padding: 9px 24px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  display: inline-block;
}

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

/* ============================================================
   FLOATING CTA (ALWAYS VISIBLE)
   ============================================================ */

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-btn-bg) 0%, #FF6B00 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--brand-body-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;
  border: none;
  cursor: pointer;
  animation: floatPulse 2.5s ease-in-out infinite;
}

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

.floating-cta:focus {
  outline: 3px solid var(--brand-accent);
  outline-offset: 3px;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,45,120,0.45); }
  50%       { box-shadow: 0 8px 40px rgba(255,45,120,0.65); }
}

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

.hero-section {
  min-height: 90vh;
  background: linear-gradient(135deg, #1557d4 0%, #2B7FFF 40%, #8B3FEF 75%, #FF4D8A 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
  margin-top: 68px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,215,0,0.18) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,77,138,0.22) 0%, transparent 45%);
  pointer-events: none;
}

/* Decorative circles */
.hero-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -100px;
  right: -120px;
  pointer-events: none;
}

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

.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

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

.hero-subtitle {
  font-family: var(--brand-body-font);
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.55;
}

.hero-bonus-card {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
  display: inline-block;
}

.hero-bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--brand-accent);
  font-weight: var(--brand-head-weight);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-bonus-label {
  font-family: var(--brand-body-font);
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  font-weight: 600;
}

.hero-trust-item svg,
.hero-trust-item .trust-icon {
  width: 18px;
  height: 18px;
  color: var(--brand-accent);
}

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

.hero-game-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  transform: rotate(3deg);
}

.hero-game-card {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  color: #fff;
  transition: transform 0.2s;
}

.hero-game-card:hover {
  transform: scale(1.04);
}

.hero-game-card .game-emoji {
  font-size: 36px;
  margin-bottom: 8px;
  display: block;
}

.hero-game-card .game-name {
  font-family: var(--brand-body-font);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.hero-game-card.card-featured {
  grid-column: 1 / -1;
  background: rgba(255,215,0,0.18);
  border-color: rgba(255,215,0,0.40);
}

/* ============================================================
   SECTION COMMON STYLES
   ============================================================ */

.section {
  padding: 80px 0;
}

.section-alt {
  background: #fff;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--brand-body-font);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

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

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

.section-desc {
  font-family: var(--brand-body-font);
  font-size: 16px;
  color: #5a6e8a;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   FEATURE CARDS / GRID
   ============================================================ */

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

.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 2px solid rgba(43,127,255,0.10);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(43,127,255,0.22);
}

.feature-card:hover::before {
  opacity: 1;
}

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

.feature-title {
  font-family: var(--brand-body-font);
  font-weight: 800;
  font-size: 18px;
  color: var(--brand-text);
  margin-bottom: 10px;
}

.feature-text {
  font-family: var(--brand-body-font);
  font-size: 14px;
  color: #5a6e8a;
  line-height: 1.65;
}

/* ============================================================
   GAMES GRID
   ============================================================ */

.games-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}

.game-tab {
  padding: 9px 22px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 14px;
  background: #fff;
  color: var(--brand-text);
  border: 2px solid rgba(43,127,255,0.14);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.game-tab.active,
.game-tab:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

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

.game-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a3a6e 0%, #2B7FFF 100%);
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.08);
}

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

.game-card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.game-card-emoji {
  font-size: 48px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.30));
}

.game-card-title {
  font-family: var(--brand-body-font);
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.40);
}

.game-card-provider {
  font-size: 11px;
  color: rgba(255,255,255,0.68);
  margin-top: 4px;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43,127,255,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-md);
}

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

/* ============================================================
   PAYMENT INFO SECTION
   ============================================================ */

.payments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: start;
}

.payment-block {
  background: var(--brand-bg);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 2px solid rgba(43,127,255,0.10);
}

.payment-block-title {
  font-family: var(--brand-body-font);
  font-weight: 800;
  font-size: 17px;
  color: var(--brand-text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(43,127,255,0.08);
  font-size: 14px;
}

.payment-row:last-child {
  border-bottom: none;
}

.payment-label {
  color: #5a6e8a;
  font-weight: 600;
}

.payment-value {
  color: var(--brand-text);
  font-weight: 700;
}

.payment-value.good {
  color: #22c55e;
}

/* ============================================================
   BONUS HIGHLIGHT SECTION
   ============================================================ */

.bonus-section {
  background: linear-gradient(135deg, #1557d4 0%, #2B7FFF 55%, #8B3FEF 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.bonus-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(255,215,0,0.14) 0%, transparent 55%);
}

.bonus-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.bonus-content .section-title {
  color: #fff;
}

.bonus-content .section-desc {
  color: rgba(255,255,255,0.82);
}

.bonus-details {
  display: flex;
  gap: 24px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.bonus-detail-item {
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  min-width: 130px;
}

.bonus-detail-number {
  font-family: var(--brand-head-font);
  font-size: 26px;
  color: var(--brand-accent);
  font-weight: var(--brand-head-weight);
  line-height: 1;
}

.bonus-detail-label {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  margin-top: 4px;
  font-weight: 600;
}

.bonus-cta-side {
  text-align: center;
}

/* ============================================================
   STATS ROW
   ============================================================ */

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

.stat-item {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  border: 2px solid rgba(43,127,255,0.08);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: var(--brand-head-font);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--brand-primary);
  font-weight: var(--brand-head-weight);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--brand-body-font);
  font-size: 14px;
  color: #5a6e8a;
  font-weight: 600;
}

/* ============================================================
   CONTENT TEXT (HOMEPAGE PROSE)
   ============================================================ */

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

.content-section.alt {
  background: #fff;
}

.content-prose {
  max-width: 800px;
  margin: 0 auto;
}

.content-prose h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--brand-text);
  margin: 40px 0 16px;
  line-height: 1.25;
}

.content-prose h2:first-child {
  margin-top: 0;
}

.content-prose h3 {
  font-family: var(--brand-body-font);
  font-weight: 800;
  font-size: 19px;
  color: var(--brand-text);
  margin: 28px 0 12px;
}

.content-prose p {
  font-family: var(--brand-body-font);
  font-size: 15px;
  color: #3a4f6e;
  line-height: 1.75;
  margin-bottom: 18px;
}

.content-prose ul {
  margin: 14px 0 18px 0;
}

.content-prose ul li {
  font-size: 15px;
  color: #3a4f6e;
  padding: 5px 0 5px 26px;
  position: relative;
  line-height: 1.65;
}

.content-prose ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: 800;
}

.content-prose strong {
  color: var(--brand-text);
  font-weight: 800;
}

/* ============================================================
   TWO-COLUMN CONTENT LAYOUT
   ============================================================ */

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

.two-col-reverse {
  grid-template-columns: 1fr 1fr;
}

/* ============================================================
   INFO CARDS
   ============================================================ */

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-card {
  background: var(--brand-bg);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 2px solid rgba(43,127,255,0.10);
}

.info-card-title {
  font-weight: 800;
  font-size: 15px;
  color: var(--brand-text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-card-text {
  font-size: 13px;
  color: #5a6e8a;
  line-height: 1.6;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.18) 0%, transparent 55%);
}

.cta-banner-title {
  font-family: var(--brand-head-font);
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--brand-text);
  font-weight: var(--brand-head-weight);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-banner-text {
  font-size: 16px;
  color: rgba(26,43,74,0.82);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-hero {
  position: relative;
  z-index: 1;
}

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

.site-footer {
  background: #0d1f3c;
  color: rgba(255,255,255,0.70);
  padding: 60px 0 0;
}

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

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.60);
  max-width: 320px;
}

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

.footer-col-title {
  font-family: var(--brand-body-font);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  margin-bottom: 18px;
}

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

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

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

/* Responsible Gaming Logos */
.footer-logos-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.80);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.footer-logo-badge .badge-icon {
  font-size: 18px;
}

.payment-icons-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.payment-icon-badge {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

.payment-icon-badge .p-icon {
  font-size: 16px;
}

/* Footer Bottom */
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

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

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

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
}

.footer-disclaimer {
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  text-align: center;
}

/* Age badge */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-secondary);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  font-family: var(--brand-body-font);
  flex-shrink: 0;
}

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

.legal-hero {
  background: linear-gradient(135deg, #1557d4, #2B7FFF);
  padding: 120px 0 60px;
  text-align: center;
  margin-top: 68px;
}

.legal-hero h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  font-weight: var(--brand-head-weight);
  margin-bottom: 14px;
}

.legal-hero p {
  color: rgba(255,255,255,0.80);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.legal-last-updated {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  margin-top: 14px;
}

.legal-content {
  padding: 72px 0;
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--brand-text);
  font-weight: var(--brand-head-weight);
  margin: 40px 0 14px;
}

.legal-content h3 {
  font-family: var(--brand-body-font);
  font-size: 17px;
  font-weight: 800;
  color: var(--brand-text);
  margin: 24px 0 10px;
}

.legal-content p {
  font-size: 15px;
  color: #3a4f6e;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 12px 0 20px 0;
}

.legal-content ul li {
  font-size: 15px;
  color: #3a4f6e;
  padding: 5px 0 5px 24px;
  position: relative;
  line-height: 1.65;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--brand-primary);
  font-weight: 800;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */

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

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

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

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

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

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

  .bonus-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bonus-details {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/* ============================================================
   RESPONSIVE — MOBILE (max 992px) — NAV
   ============================================================ */

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

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

  .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: 999;
    gap: 4px;
  }

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

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

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */

@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-bonus-card {
    display: block;
  }

  .section {
    padding: 56px 0;
  }

  .section-alt {
    padding: 56px 0;
  }

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

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

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

  .cta-banner {
    padding: 36px 24px;
  }

  .legal-hero {
    padding: 100px 0 48px;
  }

  .legal-content {
    padding: 48px 0;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero {
    width: 100%;
    text-align: center;
    padding: 16px 28px;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-bonus-amount {
    font-size: 32px;
  }

  .payment-icons-row {
    gap: 8px;
  }

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

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

.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Borders utility */
.bordered {
  border: 2px solid rgba(43,127,255,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
}