/* =============================================
   ZOCCER - Complete CSS Stylesheet
   Sports Betting & Online Casino Canada
   ============================================= */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* =============================================
   CSS RESET & ROOT VARIABLES
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors */
  --zoccer-red: #E4002B;
  --zoccer-magenta: #C724B1;
  --zoccer-orange: #FF6B35;
  --zoccer-gradient: linear-gradient(135deg, #E4002B 0%, #FF2D55 50%, #FF6B35 100%);
  --zoccer-cyan: #00D4FF;
  --zoccer-teal: #00BFA6;
  --zoccer-purple: #6E3AFF;
  
  /* Background Colors */
  --bg-page: #E8ECF2;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F8F9FC;
  --bg-input: #EEF1F6;
  --bg-dark: #0A0A12;
  --bg-dark-alt: #12121C;
  
  /* Text Colors */
  --text-primary: #0F1115;
  --text-secondary: #5F6368;
  --text-muted: #9AA0A6;
  
  /* Border Colors */
  --border: #D8DDE5;
  --border-light: #E8ECF2;
  
  /* Button Colors */
  --dark-btn: #1A1A24;
}

/* =============================================
   BASE STYLES
   ============================================= */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(180deg, var(--bg-page) 0%, #F0EBE6 100%);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-btn {
  width: 38px;
  height: 38px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.menu-btn:hover {
  border-color: var(--zoccer-cyan);
  background: rgba(0, 212, 255, 0.08);
}

.menu-btn svg {
  width: 16px;
  height: 16px;
  color: var(--text-primary);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--zoccer-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(-6deg);
  box-shadow: 0 4px 14px rgba(228, 0, 43, 0.35);
}

.logo-icon svg {
  transform: skewX(6deg);
}

.logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-style: italic;
}

.logo-text .z {
  background: var(--zoccer-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header Search */
.header-search {
  flex: 1;
  max-width: 320px;
  margin: 0 32px;
}

.search-wrapper {
  position: relative;
}

.header-search input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
  transition: all 0.2s;
}

.header-search input:focus {
  border-color: var(--zoccer-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.header-search input::placeholder {
  color: var(--text-muted);
}

.search-wrapper svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 16px;
  height: 16px;
}

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

/* Buttons */
.btn {
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-dark {
  background: var(--dark-btn);
  color: #FFFFFF;
}

.btn-dark:hover {
  background: #2a2a36;
}

.btn-gradient {
  background: var(--zoccer-gradient);
  color: #FFFFFF;
  box-shadow: 0 3px 12px rgba(228, 0, 43, 0.3);
}

.btn-gradient:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(228, 0, 43, 0.4);
}

/* =============================================
   LAYOUT
   ============================================= */
.layout {
  display: flex;
  padding-top: 60px;
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar {
  width: 240px;
  background: var(--bg-card);
  min-height: calc(100vh - 60px);
  position: fixed;
  left: 0;
  top: 60px;
  bottom: 0;
  overflow-y: auto;
  border-right: 1px solid var(--border);
}

.sidebar-menu {
  padding: 10px 0;
}

/* Promo Badge */
.promo-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin: 6px 12px 14px;
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.08) 0%, rgba(199, 36, 177, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(228, 0, 43, 0.15);
}

.promo-badge .icon {
  width: 36px;
  height: 36px;
  background: var(--zoccer-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(-6deg);
}

.promo-badge .icon svg {
  transform: skewX(6deg);
}

.promo-badge .text {
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
  background: var(--zoccer-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promo-badge .subtext {
  font-size: 9px;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 1px;
}

/* Menu Items */
.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.15s;
  cursor: pointer;
  position: relative;
}

.menu-item:hover {
  background: var(--bg-input);
}

.menu-item.active {
  background: linear-gradient(90deg, rgba(228, 0, 43, 0.1) 0%, transparent 100%);
  color: var(--zoccer-red);
  font-weight: 600;
}

.menu-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--zoccer-gradient);
}

.menu-item svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.menu-item.active svg {
  color: var(--zoccer-red);
}

.menu-divider {
  height: 1px;
  background: var(--border);
  margin: 10px 14px;
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.main-content {
  margin-left: 240px;
  flex: 1;
  min-height: calc(100vh - 60px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: var(--bg-dark);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

/* Hero Geometric Elements */
.hero-geo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-geo .line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
  height: 1px;
}

.hero-geo .line:nth-child(1) { top: 20%; left: 0; width: 40%; }
.hero-geo .line:nth-child(2) { top: 50%; left: 10%; width: 30%; }
.hero-geo .line:nth-child(3) { top: 75%; left: 5%; width: 25%; }

.hero-geo .circle {
  position: absolute;
  border: 1px solid rgba(228, 0, 43, 0.25);
  border-radius: 50%;
}

.hero-geo .circle:nth-child(4) { width: 300px; height: 300px; top: -100px; right: 20%; }
.hero-geo .circle:nth-child(5) { width: 150px; height: 150px; bottom: -50px; right: 40%; border-color: rgba(0, 212, 255, 0.2); }

/* Hero Image */
.hero-image {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 200px;
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.15) 0%, rgba(0, 212, 255, 0.08) 100%);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-image span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 600;
}

/* Hero Lights */
.hero-lights {
  position: absolute;
  top: 16px;
  right: 80px;
  display: flex;
  gap: 40px;
  z-index: 3;
}

.light {
  width: 5px;
  height: 5px;
  background: #ff4466;
  border-radius: 50%;
  box-shadow: 0 0 10px 4px rgba(255, 68, 102, 0.5);
  animation: pulse 2.5s ease-in-out infinite;
}

.light:nth-child(2) { animation-delay: 0.4s; }
.light:nth-child(3) { animation-delay: 0.8s; }

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Hero Toggle */
.hero-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 3px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-toggle button {
  padding: 7px 20px;
  border: none;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
}

.hero-toggle button.active {
  background: #FFFFFF;
  color: var(--text-primary);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 4;
}

.hero-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
  font-weight: 500;
}

.hero-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 22px;
  line-height: 1;
  color: #FFFFFF;
  font-style: italic;
}

.hero-title span {
  background: var(--zoccer-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero CTA Button */
.btn-cta-wrapper {
  position: relative;
  display: inline-block;
}

.btn-cta-ring {
  position: absolute;
  top: -8px;
  left: -12px;
  right: -12px;
  bottom: -8px;
  border: 2px solid var(--zoccer-cyan);
  border-radius: 999px;
  opacity: 0.5;
  animation: ring-pulse 2s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.03); opacity: 0.7; }
}

.btn-hero {
  padding: 14px 42px;
  font-size: 13px;
  font-weight: 800;
  font-style: italic;
  border-radius: 999px;
  background: var(--zoccer-gradient);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(228, 0, 43, 0.4);
  display: inline-block;
}

.btn-hero:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(228, 0, 43, 0.5);
}

/* =============================================
   SEO HERO INTRO SECTION
   ============================================= */
.seo-hero-intro {
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.03) 0%, rgba(0, 212, 255, 0.03) 100%);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
}

.seo-hero-content {
  max-width: 900px;
}

.seo-hero-title {
  font-size: 26px;
  font-weight: 900;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.seo-hero-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.seo-hero-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.seo-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.seo-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.2s;
}

.seo-badge:hover {
  border-color: var(--zoccer-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(228, 0, 43, 0.1);
}

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

.seo-badge-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

/* =============================================
   MAIN AREA GRID
   ============================================= */
.main-area {
  display: grid;
  grid-template-columns: 220px minmax(400px, 1fr) 280px;
  gap: 16px;
  padding: 16px;
  align-items: start;
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 12px;
}

/* =============================================
   LEFT COLUMN
   ============================================= */
.left-col {
  position: sticky;
  top: 76px;
}

.search-box {
  padding: 12px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 12px;
  color: var(--text-primary);
  outline: none;
}

.search-box input:focus {
  border-color: var(--zoccer-cyan);
}

.search-box svg {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

/* Upcoming Header */
.upcoming-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-light);
}

.upcoming-header svg {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
}

.upcoming-header span {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Time Filters */
.time-filters {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-light);
}

.time-filter {
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}

.time-filter:hover {
  background: var(--bg-input);
}

.time-filter.active {
  background: var(--zoccer-red);
  color: #fff;
}

/* League Items */
.league-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.15s;
  border-bottom: 1px solid var(--border-light);
}

.league-item:hover {
  background: var(--bg-input);
}

.league-item:last-child {
  border-bottom: none;
}

.league-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.league-icon {
  width: 24px;
  height: 24px;
  background: var(--bg-input);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.league-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
}

.league-item > svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

/* =============================================
   CENTER COLUMN
   ============================================= */
.center-col {
  min-width: 0;
}

/* Tabs Navigation */
.tabs-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border-light);
}

.tab-item {
  padding: 14px 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tab-item:hover {
  color: var(--text-primary);
}

.tab-item.active {
  color: var(--zoccer-red);
  border-bottom-color: var(--zoccer-red);
}

.tab-badge {
  padding: 2px 6px;
  background: var(--zoccer-red);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  border-radius: 4px;
}

/* Sports Row */
.sports-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto;
}

.sports-row::-webkit-scrollbar {
  display: none;
}

.sport-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
  min-width: 64px;
}

.sport-chip:hover {
  background: var(--bg-input);
}

.sport-chip.active {
  background: rgba(228, 0, 43, 0.1);
}

.sport-chip svg {
  width: 22px;
  height: 22px;
  color: var(--text-muted);
}

.sport-chip.active svg {
  color: var(--zoccer-red);
}

.sport-chip span {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.sport-chip.active span {
  color: var(--zoccer-red);
}

/* =============================================
   FEATURED SECTION
   ============================================= */
.featured-section {
  padding: 16px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title svg {
  width: 18px;
  height: 18px;
  color: var(--zoccer-red);
}

.see-all {
  font-size: 11px;
  font-weight: 600;
  color: var(--zoccer-cyan);
  cursor: pointer;
}

.see-all:hover {
  text-decoration: underline;
}

/* League Cards */
.league-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.league-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.league-card:hover {
  border-color: var(--zoccer-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.1);
}

.league-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--zoccer-gradient);
  opacity: 0;
  transition: opacity 0.2s;
}

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

.league-card-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-input);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
}

.league-card-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.league-card-count {
  font-size: 10px;
  color: var(--text-secondary);
}

.league-card-live {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  background: var(--zoccer-red);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  border-radius: 4px;
  animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* =============================================
   LIVE SECTION
   ============================================= */
.live-section-main {
  padding: 16px;
  border-top: 1px solid var(--border-light);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--zoccer-red);
  border-radius: 50%;
  animation: live-pulse 1.5s ease-in-out infinite;
}

/* Live Grid */
.live-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  transition: all 0.2s;
}

.live-card:hover {
  border-color: var(--zoccer-red);
  box-shadow: 0 4px 16px rgba(228, 0, 43, 0.1);
}

.live-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.live-badge-sm {
  padding: 3px 8px;
  background: var(--zoccer-red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 4px;
  animation: live-pulse 1.5s ease-in-out infinite;
}

.live-time {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 600;
}

.live-teams {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.live-team {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.team-flag {
  font-size: 14px;
}

.live-score {
  font-size: 18px;
  font-weight: 900;
  color: var(--zoccer-red);
  text-align: center;
  padding: 6px 0;
  font-style: italic;
}

.live-card-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 10px;
}

.live-market {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.live-odds {
  display: flex;
  gap: 6px;
}

.live-odd {
  flex: 1;
  padding: 8px 6px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}

.live-odd:hover {
  border-color: var(--zoccer-cyan);
  background: rgba(0, 212, 255, 0.08);
}

/* =============================================
   RIGHT COLUMN - BETSLIP
   ============================================= */
.right-col {
  position: sticky;
  top: 76px;
}

.booking-input {
  padding: 12px;
  border-bottom: 1px solid var(--border-light);
}

.booking-input input {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 11px;
  color: var(--text-primary);
  outline: none;
}

.betslip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
}

.betslip-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

.betslip-title span {
  color: var(--zoccer-red);
}

.betslip-empty {
  padding: 40px 20px;
  text-align: center;
}

.betslip-empty svg {
  width: 48px;
  height: 48px;
  color: var(--border);
  margin-bottom: 12px;
}

.betslip-empty p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

.betslip-promo {
  margin: 12px;
  padding: 14px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.betslip-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--zoccer-gradient);
}

.betslip-promo-title {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  font-style: italic;
}

.betslip-promo-text {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.betslip-promo-btn {
  padding: 8px 16px;
  background: var(--zoccer-gradient);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

/* =============================================
   CONTENT SECTIONS
   ============================================= */
.content-sections {
  padding: 0 16px 16px;
  margin-left: 240px;
}

.section-block {
  margin-bottom: 24px;
}

.section-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-title-main {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-style: italic;
}

.section-title-main svg {
  width: 20px;
  height: 20px;
  color: var(--zoccer-red);
}

/* =============================================
   PROMO GRID
   ============================================= */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  position: relative;
  transition: all 0.2s;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.promo-card-featured {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
  border: none;
}

.promo-card-featured .promo-card-title,
.promo-card-featured .promo-card-value {
  color: #fff;
}

.promo-card-featured .promo-card-text {
  color: rgba(255, 255, 255, 0.6);
}

.promo-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 8px;
  background: var(--zoccer-cyan);
  color: var(--bg-dark);
  font-size: 8px;
  font-weight: 700;
  border-radius: 4px;
}

.promo-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.promo-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.promo-card-value {
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  background: var(--zoccer-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.promo-card-featured .promo-card-value {
  -webkit-text-fill-color: #fff;
}

.promo-card-text {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.4;
}

.promo-card-btn {
  width: 100%;
  padding: 10px;
  background: var(--zoccer-gradient);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
  text-align: center;
}

.promo-card-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(228, 0, 43, 0.3);
}

.promo-card-btn-outline {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
  text-align: center;
}

.promo-card-btn-outline:hover {
  border-color: var(--zoccer-red);
  color: var(--zoccer-red);
}

/* =============================================
   STEPS GRID
   ============================================= */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.step-number {
  width: 28px;
  height: 28px;
  background: var(--zoccer-gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-input);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step-icon svg {
  width: 26px;
  height: 26px;
  color: var(--zoccer-red);
}

.step-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.step-text {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--zoccer-red), var(--zoccer-orange));
  margin-top: 42px;
  flex-shrink: 0;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  background: var(--zoccer-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

/* =============================================
   WHY CHOOSE SECTION
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.2s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.why-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.why-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.why-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   CONTENT DIVIDER
   ============================================= */
.content-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0;
  position: relative;
}

.content-divider::before,
.content-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.content-divider span {
  padding: 8px 24px;
  background: var(--zoccer-gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  font-style: italic;
  border-radius: 999px;
  text-transform: uppercase;
}

/* =============================================
   CASINO HERO
   ============================================= */
.casino-hero {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.casino-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(199, 36, 177, 0.2) 0%, transparent 50%);
}

.casino-hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.casino-hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
}

.casino-hero-title {
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  margin-bottom: 12px;
}

.casino-hero-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.casino-hero-btns {
  display: flex;
  gap: 12px;
}

.btn-outline-light {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.casino-hero-image {
  width: 280px;
  height: 180px;
  background: linear-gradient(135deg, rgba(199, 36, 177, 0.2) 0%, rgba(110, 58, 255, 0.1) 100%);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.casino-hero-image span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 600;
}

/* =============================================
   CASINO STATS
   ============================================= */
.casino-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.casino-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.casino-stat-value {
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(135deg, var(--zoccer-magenta), var(--zoccer-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.casino-stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* =============================================
   GAMES GRID
   ============================================= */
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: all 0.2s;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.game-card-image {
  height: 100px;
  background: linear-gradient(135deg, var(--bg-input) 0%, var(--bg-page) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.game-card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 8px;
  font-size: 8px;
  font-weight: 700;
  border-radius: 4px;
  color: #fff;
}

.game-card-badge.hot {
  background: var(--zoccer-red);
}

.game-card-badge.new {
  background: var(--zoccer-cyan);
  color: var(--bg-dark);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s;
}

.game-card-btn {
  padding: 10px 20px;
  background: var(--zoccer-gradient);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.game-card-info {
  padding: 12px;
}

.game-card-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-provider {
  font-size: 10px;
  color: var(--text-muted);
}

/* =============================================
   JACKPOT SECTION
   ============================================= */
.jackpot-section {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.jackpot-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.jackpot-icon {
  font-size: 36px;
}

.jackpot-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  font-style: italic;
}

.jackpot-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.jackpot-tickers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.jackpot-ticker {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.jackpot-ticker.hot {
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-color: rgba(228, 0, 43, 0.3);
}

.jackpot-hot-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--zoccer-red);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 8px;
}

.jackpot-game {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.jackpot-amount {
  font-size: 20px;
  font-weight: 900;
  color: #ffd700;
  font-style: italic;
  margin-bottom: 4px;
}

.jackpot-provider {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   LIVE CASINO SECTION
   ============================================= */
.live-casino-banner {
  background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.live-casino-content {
  max-width: 500px;
}

.live-casino-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(228, 0, 43, 0.2);
  border: 1px solid rgba(228, 0, 43, 0.3);
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 12px;
}

.live-casino-title {
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  margin-bottom: 12px;
}

.live-casino-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.live-casino-image {
  width: 200px;
  height: 140px;
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-casino-image span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 600;
}

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

.live-game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.2s;
}

.live-game-card:hover {
  border-color: var(--zoccer-cyan);
}

.live-game-card.featured {
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.05) 0%, rgba(199, 36, 177, 0.05) 100%);
  border-color: rgba(228, 0, 43, 0.2);
}

.live-game-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.live-game-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.live-game-tables {
  font-size: 11px;
  color: var(--zoccer-red);
  font-weight: 600;
  margin-bottom: 4px;
}

.live-game-limits {
  font-size: 10px;
  color: var(--text-muted);
}

/* =============================================
   CASINO DEEP DIVE
   ============================================= */
.casino-deep-intro {
  display: flex;
  gap: 32px;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
}

.casino-deep-content {
  flex: 1;
}

.casino-deep-title {
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  margin-bottom: 16px;
}

.casino-deep-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 12px;
}

.casino-deep-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.casino-deep-stat {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
}

.cds-value {
  display: block;
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(135deg, var(--zoccer-magenta), var(--zoccer-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cds-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

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

.casino-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.2s;
}

.casino-type-card:hover {
  border-color: var(--zoccer-magenta);
}

.casino-type-card.large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.casino-type-card.large .casino-type-header {
  grid-column: span 2;
}

.casino-type-card.large .casino-type-features {
  grid-column: span 2;
}

.casino-type-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.casino-type-icon {
  font-size: 32px;
}

.casino-type-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.casino-type-count {
  font-size: 11px;
  color: var(--zoccer-magenta);
  font-weight: 600;
}

.casino-type-text {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.casino-type-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.casino-type-features span {
  padding: 5px 12px;
  background: linear-gradient(135deg, rgba(199, 36, 177, 0.1) 0%, rgba(110, 58, 255, 0.1) 100%);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--zoccer-magenta);
}

/* =============================================
   BONUSES GUIDE
   ============================================= */
.bonus-highlight-card {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a28 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.bonus-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(228, 0, 43, 0.15) 0%, transparent 60%);
}

.bonus-highlight-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  background: var(--zoccer-cyan);
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 800;
  border-radius: 6px;
}

.bonus-highlight-content {
  flex: 1;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.bonus-highlight-title {
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  margin-bottom: 16px;
}

.bonus-highlight-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}

.bonus-highlight-terms {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.bonus-term {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
}

.term-label {
  display: block;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.term-value {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.bonus-highlight-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.bonus-amount {
  font-size: 56px;
  font-weight: 900;
  font-style: italic;
  background: var(--zoccer-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-plus {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.5);
  margin: 8px 0;
}

.bonus-spins {
  font-size: 18px;
  font-weight: 800;
  color: var(--zoccer-cyan);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.2s;
}

.bonus-card:hover {
  border-color: var(--zoccer-red);
  transform: translateY(-2px);
}

.bonus-card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.bonus-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.bonus-card-value {
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  background: var(--zoccer-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.bonus-card-text {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.bonus-card-code {
  padding: 8px 12px;
  background: var(--bg-input);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

.bonus-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 20px;
}

.bonus-note svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}

.bonus-note p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   VIP SECTION
   ============================================= */
.vip-section {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.vip-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.vip-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.vip-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  margin-bottom: 12px;
}

.vip-title {
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  margin-bottom: 8px;
}

.vip-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.vip-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.vip-tier {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.2s;
}

.vip-tier:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.vip-tier.featured {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  border-color: rgba(255, 215, 0, 0.3);
}

.vip-tier-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.vip-tier-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.vip-tier-perk {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 16px;
  transition: all 0.2s;
}

.feature-card:hover {
  border-color: var(--zoccer-cyan);
}

.feature-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.feature-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.feature-text {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =============================================
   WINNERS GRID
   ============================================= */
.winners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.winner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.winner-avatar {
  width: 40px;
  height: 40px;
  background: var(--zoccer-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.winner-info {
  flex: 1;
}

.winner-game {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.winner-amount {
  font-size: 14px;
  font-weight: 800;
  color: var(--zoccer-red);
}

.winner-time {
  font-size: 9px;
  color: var(--text-muted);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.testimonial-stars {
  color: #ffd700;
  font-size: 14px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  background: var(--bg-input);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}

.testimonial-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-location {
  font-size: 10px;
  color: var(--text-muted);
}

/* =============================================
   BLOG GRID
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.blog-card.featured {
  grid-column: span 2;
  display: flex;
}

.blog-image {
  height: 120px;
  background: linear-gradient(135deg, var(--bg-input) 0%, var(--bg-page) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.blog-card.featured .blog-image {
  width: 200px;
  height: auto;
  min-height: 160px;
  flex-shrink: 0;
}

.blog-content {
  padding: 16px;
}

.blog-tag {
  display: inline-block;
  padding: 3px 8px;
  background: var(--zoccer-red);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.blog-meta {
  font-size: 10px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
}

/* =============================================
   SPORTS OVERVIEW
   ============================================= */
.sports-overview-intro {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a28 100%);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
}

.sports-intro-title {
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  margin-bottom: 16px;
}

.sports-intro-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 12px;
}

.sports-intro-text:last-child {
  margin-bottom: 0;
}

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

.sports-category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.2s;
}

.sports-category-card:hover {
  border-color: var(--zoccer-cyan);
  transform: translateY(-2px);
}

.sports-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sports-cat-icon {
  font-size: 32px;
}

.sports-cat-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.sports-cat-events {
  font-size: 11px;
  color: var(--zoccer-red);
  font-weight: 600;
}

.sports-cat-text {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.sports-cat-leagues {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sports-cat-leagues span {
  padding: 4px 10px;
  background: var(--bg-input);
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
}

.sports-more {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.sports-more-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.sports-more-text strong {
  color: var(--text-primary);
}

/* =============================================
   PROVINCES SECTION
   ============================================= */
.provinces-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.provinces-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.provinces-text strong {
  color: var(--text-primary);
}

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

.province-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px;
  background: var(--bg-input);
  border-radius: 12px;
  transition: all 0.15s;
}

.province-item:hover {
  background: rgba(228, 0, 43, 0.05);
}

.province-flag {
  font-size: 24px;
}

.province-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.province-age {
  font-size: 11px;
  font-weight: 700;
  color: var(--zoccer-red);
}

/* =============================================
   MOBILE APP SECTION
   ============================================= */
.mobile-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a28 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.mobile-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 0% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

.mobile-content {
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.mobile-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--zoccer-cyan);
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 16px;
}

.mobile-title {
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  margin-bottom: 12px;
}

.mobile-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.mobile-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.mobile-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.mobile-feature svg {
  width: 18px;
  height: 18px;
  color: var(--zoccer-teal);
}

.mobile-buttons {
  display: flex;
  gap: 12px;
}

.mobile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border: none;
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-btn:hover {
  transform: translateY(-2px);
}

.mobile-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-image {
  width: 200px;
  height: 280px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(228, 0, 43, 0.1) 100%);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.mobile-image span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 600;
}

/* =============================================
   PROVIDERS GRID
   ============================================= */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  transition: all 0.15s;
}

.provider-card:hover {
  border-color: var(--zoccer-cyan);
}

.provider-card.more {
  background: var(--zoccer-gradient);
  border: none;
}

.provider-card.more .provider-logo,
.provider-card.more .provider-count {
  color: #fff;
}

.provider-logo {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.provider-count {
  font-size: 9px;
  color: var(--text-muted);
}

/* =============================================
   SECURITY SECTION
   ============================================= */
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.security-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.15s;
}

.security-card:hover {
  border-color: var(--zoccer-teal);
}

.security-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.security-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.security-text {
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.5;
}

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

.partner-logo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
}

.partner-logo span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.partner-logo small {
  font-size: 9px;
  color: var(--text-muted);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a28 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(228, 0, 43, 0.1) 0%, transparent 70%);
}

.about-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.about-title {
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  margin-bottom: 16px;
}

.about-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-highlights {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.about-highlight {
  text-align: center;
}

.about-highlight-value {
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  background: var(--zoccer-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-highlight-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.about-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.about-image .logo-icon {
  width: 80px;
  height: 80px;
  background: var(--zoccer-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(-6deg);
  box-shadow: 0 8px 32px rgba(228, 0, 43, 0.4);
}

.about-image .logo-icon svg {
  transform: skewX(6deg);
}

.about-tagline {
  font-size: 14px;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  letter-spacing: 1px;
}

/* =============================================
   SUPPORT SECTION
   ============================================= */
.support-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.support-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.support-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.support-text {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.support-btn {
  padding: 8px 16px;
  background: var(--zoccer-gradient);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
}

.support-btn-outline {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
}

/* =============================================
   RESPONSIBLE GAMING
   ============================================= */
.responsible-section {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(0, 191, 166, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
  border: 1px solid rgba(0, 191, 166, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.responsible-icon {
  width: 56px;
  height: 56px;
  background: var(--zoccer-teal);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.responsible-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.responsible-content {
  flex: 1;
}

.responsible-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.responsible-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.responsible-links {
  display: flex;
  gap: 16px;
}

.responsible-links a {
  font-size: 11px;
  color: var(--zoccer-teal);
  text-decoration: none;
  font-weight: 600;
}

.responsible-links a:hover {
  text-decoration: underline;
}

.age-badge {
  width: 48px;
  height: 48px;
  background: var(--zoccer-red);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================
   PAYMENTS GRID
   ============================================= */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.payment-method {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: all 0.15s;
}

.payment-method:hover {
  border-color: var(--zoccer-cyan);
}

.payment-method-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.payment-method-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.payment-method-time {
  font-size: 10px;
  color: var(--zoccer-teal);
  font-weight: 600;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-extended {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.faq-category {
  border-bottom: 1px solid var(--border-light);
}

.faq-category:last-of-type {
  border-bottom: none;
}

.faq-category-title {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--bg-card-alt);
  border-bottom: 1px solid var(--border-light);
}

.faq-items {
  padding: 0;
}

.faq-item-ext {
  border-bottom: 1px solid var(--border-light);
}

.faq-item-ext:last-child {
  border-bottom: none;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  transition: background 0.15s;
  list-style: none;
}

.faq-q:hover {
  background: var(--bg-input);
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
  padding-right: 16px;
}

.faq-q svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item-ext[open] .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 24px 20px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-contact {
  padding: 24px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a28 100%);
  text-align: center;
}

.faq-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.faq-contact-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
  background: var(--zoccer-gradient);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

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

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-title {
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  margin-bottom: 10px;
}

.final-cta-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.final-cta-offer {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  margin-bottom: 24px;
}

.final-cta-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.final-cta-value {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.final-cta .btn-hero {
  background: #fff;
  color: var(--zoccer-red);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-dark);
  padding: 32px 24px 20px;
  margin-left: 240px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand .logo-icon {
  width: 32px;
  height: 32px;
}

.footer-brand .logo-text {
  font-size: 18px;
  color: #fff;
}

.footer-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--zoccer-cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-payments {
  display: flex;
  gap: 12px;
}

.payment-icon {
  width: 40px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

/* Large Desktop */
@media (max-width: 1400px) {
  .main-area {
    grid-template-columns: 200px minmax(350px, 1fr) 260px;
  }
  
  .live-grid,
  .promo-grid,
  .casino-stats,
  .vip-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .winners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-card.featured {
    grid-column: span 2;
  }
  
  .jackpot-tickers {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .sidebar {
    width: 200px;
  }
  
  .main-content,
  .content-sections,
  .footer {
    margin-left: 200px;
  }
  
  .payments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .support-section {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .casino-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .casino-type-card.large {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  
  .casino-type-card.large .casino-type-header,
  .casino-type-card.large .casino-type-features {
    grid-column: span 1;
  }
  
  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sports-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .providers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .sidebar {
    width: 64px;
  }
  
  .sidebar .menu-item > span,
  .sidebar .promo-badge > div:last-child {
    display: none;
  }
  
  .sidebar .menu-item {
    justify-content: center;
    padding: 12px;
  }
  
  .main-content,
  .content-sections,
  .footer {
    margin-left: 64px;
  }
  
  .main-area {
    grid-template-columns: 1fr 240px;
  }
  
  .left-col {
    display: none;
  }
  
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .live-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .provinces-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .header-search {
    display: none;
  }
  
  .main-area {
    grid-template-columns: 1fr;
  }
  
  .right-col {
    display: none;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-image {
    display: none;
  }
  
  .seo-hero-intro {
    padding: 20px 16px;
  }
  
  .seo-hero-title {
    font-size: 20px;
  }
  
  .seo-hero-text {
    font-size: 13px;
  }
  
  .seo-hero-badges {
    gap: 8px;
  }
  
  .seo-badge {
    padding: 8px 12px;
  }
  
  .seo-badge-text {
    font-size: 11px;
  }
  
  .live-grid,
  .promo-grid,
  .faq-grid,
  .casino-stats,
  .vip-tiers {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .steps-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .step-connector {
    display: none;
  }
  
  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .casino-hero,
  .mobile-section {
    flex-direction: column;
    text-align: center;
  }
  
  .casino-hero-image,
  .mobile-image {
    display: none;
  }
  
  .testimonials-grid,
  .support-section {
    grid-template-columns: 1fr;
  }
  
  .winners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card.featured {
    grid-column: span 1;
    flex-direction: column;
  }
  
  .blog-card.featured .blog-image {
    width: 100%;
    height: 120px;
  }
  
  .jackpot-tickers {
    grid-template-columns: 1fr;
  }
  
  .casino-deep-intro {
    flex-direction: column;
  }
  
  .casino-deep-stats {
    flex-direction: row;
    justify-content: center;
  }
  
  .casino-types-grid {
    grid-template-columns: 1fr;
  }
  
  .casino-type-card.large {
    grid-column: span 1;
  }
  
  .bonus-highlight-card {
    flex-direction: column;
    padding: 28px;
  }
  
  .bonus-highlight-visual {
    margin-top: 20px;
  }
  
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  
  .bonus-highlight-terms {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .sports-categories {
    grid-template-columns: 1fr;
  }
  
  .sports-overview-intro {
    padding: 24px;
  }
  
  .provinces-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .security-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }
  
  .about-highlights {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .about-image {
    margin-top: 24px;
  }
  
  .live-casino-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .live-casino-image {
    display: none;
  }
  
  .live-games-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-q span {
    font-size: 12px;
  }
  
  .faq-a {
    font-size: 11px;
  }
  
  .faq-contact-btns {
    flex-direction: column;
  }
  
  .mobile-features {
    grid-template-columns: 1fr;
  }
  
  .mobile-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .responsible-section {
    flex-direction: column;
    text-align: center;
  }
  
  .responsible-links {
    flex-direction: column;
    gap: 8px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .header {
    padding: 10px 16px;
  }
  
  .hero {
    padding: 20px 16px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .seo-hero-title {
    font-size: 18px;
  }
  
  .btn-hero {
    padding: 12px 32px;
    font-size: 12px;
  }
  
  .content-sections {
    padding: 0 12px 16px;
  }
  
  .section-title-main {
    font-size: 14px;
  }
  
  .promo-card,
  .live-card,
  .game-card {
    padding: 14px;
  }
  
  .casino-hero-title {
    font-size: 28px;
  }
  
  .mobile-title {
    font-size: 24px;
  }
  
  .vip-title {
    font-size: 24px;
  }
  
  .final-cta {
    padding: 32px 20px;
  }
  
  .final-cta-title {
    font-size: 28px;
  }
  
  .footer {
    padding: 24px 16px 16px;
  }
  
  .winners-grid {
    grid-template-columns: 1fr;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .provinces-grid {
    grid-template-columns: 1fr;
  }
  
  .bonus-amount {
    font-size: 42px;
  }
}

/* =============================================
   ZOCCER CANADA - COLOR PATCH
   Match official Zoccer brand colors
   Add this at the TOP of your styles.css
   or override the :root variables
   ============================================= */

:root {
  /* === OVERRIDE BRAND COLORS === */
  
  /* Main accent - lime green (buttons, CTAs, highlights) */
  --zoccer-accent: #A3F400;
  --zoccer-accent-hover: #B7FF26;
  --zoccer-accent-dark: #7FBE00;
  --zoccer-accent-text: #000000;
  
  /* Brand color - steel blue */
  --zoccer-brand: #778CA9;
  --zoccer-brand-dark: #5D7495;
  --zoccer-brand-light: #B1BCD0;
  --zoccer-brand-contrast: #FFFFFF;
  
  /* Remove old red/orange gradient - replace with brand */
  --zoccer-gradient: linear-gradient(135deg, #778CA9 0%, #5D7495 100%);
  --zoccer-red: #778CA9;
  --zoccer-magenta: #5D7495;
  --zoccer-orange: #A3F400;
  
  /* Keep cyan for info elements */
  --zoccer-cyan: #00AEFF;
  --zoccer-teal: #00BFA6;
  
  /* === PAGE BACKGROUNDS === */
  --bg-page: #E6EBF3;
  --bg-card: #FFFFFF;
  --bg-card-alt: #EEF1F7;
  --bg-input: #E6EBF3;
  --bg-dark: #1A1F24;       /* header, dark sections */
  --bg-dark-alt: #232B33;
  
  /* === TEXT COLORS === */
  --text-primary: #000000;
  --text-secondary: #364350;
  --text-muted: #58728F;
  --text-light: #A8B9D0;
  
  /* === BORDERS === */
  --border: #D6DEEA;
  --border-light: #EEF1F7;
  --border-hover: #99ADD1;
  
  /* === BUTTON === */
  --dark-btn: #000000;
}

/* === BODY BACKGROUND === */
body {
  background: var(--bg-page) !important;
  color: var(--text-secondary);
}

/* === HEADER - Black like original === */
.header {
  background: #000000 !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

.header .logo-text,
.header .logo-icon svg {
  color: #FFFFFF;
}

.header .nav-link,
.header a {
  color: rgba(255,255,255,0.85);
}

.header .nav-link:hover,
.header .nav-link.active {
  color: #FFFFFF;
}

/* Header buttons */
.header .btn-login,
.header .btn-outline,
#loginBtn {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.25);
}

.header .btn-login:hover,
.header .btn-outline:hover,
#loginBtn:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
}

.header .btn-register,
.header .btn-primary,
#registerBtn {
  background: var(--zoccer-accent) !important;
  color: #000000 !important;
  border: none !important;
  font-weight: 800;
  text-transform: uppercase;
}

.header .btn-register:hover,
.header .btn-primary:hover,
#registerBtn:hover {
  background: var(--zoccer-accent-hover) !important;
}

/* Menu button in header */
.menu-btn {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.menu-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
}
.menu-btn svg {
  color: #FFFFFF;
}

/* Search bar in header */
.search-bar,
.header-search {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #FFFFFF;
}
.search-bar::placeholder,
.header-search::placeholder {
  color: rgba(255,255,255,0.45);
}

/* === SIDEBAR === */
.sidebar {
  background: #FFFFFF !important;
  border-right: 1px solid var(--border);
}

.sidebar a,
.sidebar .sidebar-link,
.sidebar-nav a {
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.sidebar a:hover,
.sidebar .sidebar-link:hover,
.sidebar-nav a:hover {
  color: var(--text-primary);
  background: var(--bg-card-alt);
}

.sidebar a.active,
.sidebar .sidebar-link.active,
.sidebar-nav a.active {
  color: var(--text-primary);
  background: var(--bg-card-alt);
  font-weight: 700;
}

/* === CARDS === */
.card,
.game-card,
.promo-card,
.sport-card,
.category-card,
.payment-card,
.why-card,
.security-card,
.live-table-card,
.vip-tier,
.jackpot-card,
.provider-logo,
.slot-type-card,
.betting-sidebar-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 0 !important; /* Zoccer uses 0 border-radius */
}

/* === ZERO BORDER RADIUS (matches original) === */
.card, .btn, button, .badge, .tag,
.game-card, .promo-card, .category-card,
.sport-card, .payment-card, .why-card,
.filter-btn, .hero-badge, .bonus-card,
.live-table-card, .vip-tier, .jackpot-card,
.trust-item, .faq-item, .security-card,
.slot-type-card, .provider-logo,
.about-card, .german-info-card,
.betting-sidebar-card, .payment-method-card,
.certification-item, .license-badge,
.responsible-card, .promo-badge,
.section-tag, .category-badge,
.game-badge, .live-indicator,
.jackpot-hot-badge, .payment-note,
input, select, textarea {
  border-radius: 0 !important;
}

/* === PRIMARY BUTTONS (Lime green) === */
.btn-primary,
.btn-cta,
.btn-play,
.btn-hero,
.btn-register,
.btn-gradient {
  background: var(--zoccer-accent) !important;
  color: #000000 !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  border: none !important;
  letter-spacing: -0.02em;
}

.btn-primary:hover,
.btn-cta:hover,
.btn-play:hover,
.btn-hero:hover,
.btn-register:hover,
.btn-gradient:hover {
  background: var(--zoccer-accent-hover) !important;
  transform: none;
  box-shadow: none;
}

/* === SECONDARY BUTTONS === */
.btn-secondary,
.btn-outline,
.btn-demo,
.filter-btn {
  background: var(--bg-card-alt);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  font-weight: 700;
  text-transform: uppercase;
}

.btn-secondary:hover,
.btn-outline:hover,
.btn-demo:hover,
.filter-btn:hover {
  background: #FFFFFF;
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--zoccer-brand);
  color: #FFFFFF;
  border-color: var(--zoccer-brand);
}

/* === TEXT GRADIENT (use brand instead of red) === */
.text-gradient {
  background: linear-gradient(135deg, var(--zoccer-brand) 0%, var(--zoccer-brand-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === SECTION TAGS (labels above titles) === */
.section-tag {
  background: var(--zoccer-brand);
  color: #FFFFFF;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  display: inline-block;
}

/* === SECTION TITLES === */
.section-title {
  color: var(--text-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.section-desc {
  color: var(--text-muted);
  font-weight: 500;
}

/* === HERO SECTION === */
.hero {
  background: #000000;
}

.hero-title {
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-title .text-gradient {
  background: linear-gradient(90deg, var(--zoccer-accent) 0%, var(--zoccer-accent-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: rgba(255,255,255,0.7);
}

.hero-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}

.hero-stat .stat-value {
  color: #FFFFFF;
  font-weight: 700;
}

.hero-stat .stat-label {
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}

.hero-terms {
  color: rgba(255,255,255,0.4);
}

/* === BONUS CARD in hero === */
.bonus-card {
  background: rgba(163, 244, 0, 0.1);
  border: 1px solid rgba(163, 244, 0, 0.25);
}
.bonus-card .bonus-value {
  color: var(--zoccer-accent);
}
.bonus-card .bonus-label {
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 11px;
}
.bonus-card .bonus-extra {
  color: rgba(255,255,255,0.5);
}

/* === TRUST BAR === */
.trust-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
}

.trust-item {
  border: none !important;
}

.trust-text strong {
  color: var(--text-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.trust-text span {
  color: var(--text-muted);
  font-size: 12px;
}

/* === CATEGORY CARDS === */
.category-card {
  transition: border-color 0.2s;
}
.category-card:hover {
  border-color: var(--border-hover);
}
.category-card.featured {
  border-color: var(--zoccer-brand);
}

.category-badge {
  background: var(--zoccer-brand);
  color: #FFFFFF;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 10px;
}

.category-title {
  color: var(--text-primary);
  font-weight: 700;
  text-transform: uppercase;
}

.category-count {
  color: var(--text-muted);
  font-weight: 500;
}

.category-features span {
  background: var(--bg-card-alt);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid var(--border);
}

/* === GAME CARDS === */
.game-card {
  transition: border-color 0.2s;
}
.game-card:hover {
  border-color: var(--border-hover);
}

.game-badge {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 10px;
}
.game-badge.hot { background: #E61E1E; color: #FFF; }
.game-badge.new { background: var(--zoccer-cyan); color: #000; }
.game-badge.live { background: #E61E1E; color: #FFF; }

.game-name {
  color: var(--text-primary);
  font-weight: 700;
}
.game-provider {
  color: var(--text-muted);
  font-size: 12px;
}

/* === LIVE CASINO SECTION === */
.live-casino-section {
  background: var(--bg-page);
}

.live-table-card.featured {
  border-color: var(--zoccer-brand);
}

.live-indicator {
  background: #E61E1E;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
}

.live-indicator .pulse {
  background: #FFFFFF;
}

.table-limits {
  color: var(--text-muted);
  font-size: 12px;
}

/* === SPORTS SECTION === */
.sport-card .sport-icon {
  font-size: 28px;
}

.sport-card h4 {
  color: var(--text-primary);
  font-weight: 700;
  text-transform: uppercase;
}

.sport-events {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

.sports-feature .feature-icon {
  font-size: 24px;
}

.sports-feature h4 {
  color: var(--text-primary);
  font-weight: 700;
}

.sports-feature p {
  color: var(--text-muted);
}

/* === PROMOTIONS === */
.promo-card.featured {
  border-color: var(--zoccer-accent);
  border-width: 2px;
}

.promo-badge {
  background: var(--zoccer-accent);
  color: #000000;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 10px;
}

.promo-value {
  color: var(--text-primary);
  font-weight: 800;
}

.promo-desc {
  color: var(--text-muted);
}

/* === VIP SECTION === */
.vip-tier.featured {
  border-color: var(--zoccer-accent);
}

.vip-benefit {
  color: var(--text-secondary);
}

/* === JACKPOT SECTION === */
.jackpot-card {
  background: #FFFFFF;
}

.jackpot-amount {
  color: var(--zoccer-accent-dark);
  font-weight: 900;
}

.jackpot-card.hot {
  border-color: #E61E1E;
}

.jackpot-hot-badge {
  background: #E61E1E;
  color: #FFFFFF;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 10px;
}

/* === WHY SECTION === */
.why-card .why-icon {
  font-size: 28px;
}

.why-card h4 {
  color: var(--text-primary);
  font-weight: 700;
  text-transform: uppercase;
}

.why-card p {
  color: var(--text-muted);
}

/* === FAQ === */
.faq-question {
  color: var(--text-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.faq-answer p {
  color: var(--text-muted);
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
}

.faq-item.active {
  border-color: var(--zoccer-brand);
}

/* === RESPONSIBLE GAMING === */
.responsible-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
}

.age-badge {
  background: var(--zoccer-brand);
  color: #FFFFFF;
  font-weight: 900;
}

/* === FINAL CTA === */
.final-cta-section {
  background: #000000;
}

.final-cta-title {
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
}

.final-cta-text {
  color: rgba(255,255,255,0.7);
}

.final-cta-bonus .bonus-amount {
  color: var(--zoccer-accent);
  font-weight: 800;
}

.final-cta-terms {
  color: rgba(255,255,255,0.4);
}

/* === FOOTER === */
.footer {
  background: var(--bg-card-alt);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

.footer h4 {
  color: var(--text-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.footer a {
  color: var(--text-muted);
  font-weight: 500;
}

.footer a:hover {
  color: var(--text-secondary);
}

.footer-desc {
  color: var(--text-muted);
}

.footer-copy,
.footer-disclaimer {
  color: var(--text-muted);
  font-size: 12px;
}

.license-badge {
  background: var(--bg-page);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
}

.license-badge small {
  color: var(--text-muted);
  font-weight: 500;
  text-transform: none;
}

.footer-payments span {
  background: var(--bg-page);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 11px;
}

/* === PROVIDER LOGOS === */
.provider-logo {
  background: #FFFFFF;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.provider-logo:hover {
  border-color: var(--border-hover);
}

/* === PAYMENT METHODS === */
.payment-card .payment-time {
  color: var(--zoccer-accent-dark);
  font-weight: 700;
  font-size: 11px;
}

/* === TYPOGRAPHY OVERRIDES (match Inter uppercase style) === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

/* Body text */
p {
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.6;
}

strong {
  color: var(--text-secondary);
  font-weight: 700;
}

/* === SCROLLBAR (match original) === */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border);
}

/* === MOBILE MENU === */
.mobile-menu {
  background: #FFFFFF;
  border-top: 1px solid var(--border);
}

.mobile-nav-link {
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
}

/* === DARK SECTIONS OVERRIDE === */
.hero,
.final-cta-section {
  color: #FFFFFF;
}

.hero .text-gradient {
  background: linear-gradient(90deg, var(--zoccer-accent) 0%, #B7FF26 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.zi{display:inline-flex;align-items:center;justify-content:center;width:1em;height:1em;vertical-align:-0.125em;line-height:0}
.zi svg{width:100%;height:100%;display:block}

/* ============================================================
   MOBILE POLISH (added) — off-canvas sidebar, header fit,
   full-width content on phones
   ============================================================ */
@media (max-width: 768px) {
  /* sidebar becomes an off-canvas drawer (JS already toggles .sidebar-open) */
  .sidebar {
    width: 264px;
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    z-index: 220;
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.18);
  }
  .sidebar.sidebar-open { transform: translateX(0); }
  /* restore full labels inside the drawer (1024px icon-rail hid them) */
  .sidebar .menu-item > span,
  .sidebar .promo-badge > div:last-child { display: initial; }
  .sidebar .menu-item { justify-content: flex-start; padding: 12px 16px; }
  /* content uses the full viewport width */
  .main-content,
  .content-sections,
  .footer { margin-left: 0; }
  /* header: single compact CTA, no wrap-collisions */
  .header { padding: 8px 12px; gap: 10px; }
  .header-left { min-width: 0; gap: 10px; }
  .logo-text { white-space: nowrap; }
  .header-actions { gap: 8px; flex: 0 0 auto; }
  .header-actions .btn-dark { display: none; } /* same link as the primary CTA */
  .header-actions .btn { padding: 9px 15px; font-size: 13px; white-space: nowrap; }
}
@media (max-width: 380px) {
  .logo-text { font-size: 18px; }
  .header-actions .btn { padding: 8px 12px; font-size: 12px; }
}

/* ============================================================
   SECTION VISUALS (added) — replace dashed image placeholders
   with self-contained animated compositions (no external images)
   ============================================================ */
.fx { border: none !important; overflow: hidden;
  background:
    radial-gradient(120% 140% at 78% 20%, rgba(0, 212, 255, 0.14) 0%, transparent 45%),
    radial-gradient(130% 120% at 18% 85%, rgba(228, 0, 43, 0.18) 0%, transparent 50%),
    linear-gradient(150deg, #12121C 0%, #0A0A12 100%) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 18px 44px rgba(10, 10, 18, 0.35); }
/* non-hero variants are static in flow -> make them the containing block */
.casino-hero-image.fx, .live-casino-image.fx, .mobile-image.fx { position: relative; }
.fx-ring { position: absolute; inset: 0; margin: auto; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.08) inset; }
.fx-r1 { width: 150px; height: 150px; animation: fxSpin 36s linear infinite; border-top-color: rgba(0, 212, 255, 0.45); }
.fx-r2 { width: 220px; height: 220px; animation: fxSpin 54s linear infinite reverse; border-bottom-color: rgba(228, 0, 43, 0.4); }
.fx-orb { position: absolute; border-radius: 50%; filter: blur(20px); opacity: 0.55; }
.fx-o1 { width: 110px; height: 110px; right: -20px; top: -24px; background: var(--zoccer-cyan); animation: fxDrift 9s ease-in-out infinite alternate; }
.fx-o2 { width: 130px; height: 130px; left: -30px; bottom: -40px; background: var(--zoccer-red); animation: fxDrift 11s ease-in-out infinite alternate-reverse; }
.fx-chip { position: absolute; width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); color: #FFFFFF; }
.fx-chip svg { width: 22px; height: 22px; }
.fx-hero .fx-c1 { left: 26px; top: 22px; color: #FFD34D; box-shadow: 0 10px 26px rgba(255, 211, 77, 0.28); animation: fxFloat 6s ease-in-out infinite; }
.fx-hero .fx-c2 { right: 30px; top: 34px; color: var(--zoccer-cyan); box-shadow: 0 10px 26px rgba(0, 212, 255, 0.3); animation: fxFloat 7s ease-in-out 0.8s infinite; }
.fx-hero .fx-c3 { left: 44px; bottom: 24px; color: #FF5C7A; box-shadow: 0 10px 26px rgba(228, 0, 43, 0.32); animation: fxFloat 5.5s ease-in-out 1.6s infinite; }
.fx-core { position: absolute; inset: 0; margin: auto; width: 84px; height: 84px;
  border-radius: 20px; background: var(--zoccer-gradient); transform: skewX(-6deg);
  display: flex; align-items: center; justify-content: center; color: #FFFFFF;
  box-shadow: 0 12px 40px rgba(228, 0, 43, 0.5); animation: fxPulse 3.6s ease-in-out infinite; }
.fx-core svg { width: 42px; height: 42px; }
.fx-core-sm { width: 64px; height: 64px; border-radius: 16px; }
.fx-core-sm svg { width: 30px; height: 30px; }
.fx-casino { background:
    radial-gradient(130% 130% at 80% 15%, rgba(110, 58, 255, 0.22) 0%, transparent 48%),
    radial-gradient(120% 130% at 15% 90%, rgba(199, 36, 177, 0.2) 0%, transparent 50%),
    linear-gradient(150deg, #14121F 0%, #0A0A12 100%) !important; }
.fx-casino .fx-o1 { background: var(--zoccer-purple); }
.fx-casino .fx-o2 { background: var(--zoccer-magenta); }
.fx-casino .fx-r1 { width: 130px; height: 130px; border-top-color: rgba(110, 58, 255, 0.5); }
.fx-casino .fx-c1 { left: 20px; top: 18px; color: #FF5C7A; box-shadow: 0 10px 24px rgba(228, 0, 43, 0.3); animation: fxFloat 6s ease-in-out infinite; }
.fx-casino .fx-c2 { right: 22px; top: 26px; color: #B08CFF; box-shadow: 0 10px 24px rgba(110, 58, 255, 0.32); animation: fxFloat 6.8s ease-in-out 0.7s infinite; }
.fx-casino .fx-c3 { left: 34px; bottom: 18px; color: var(--zoccer-cyan); box-shadow: 0 10px 24px rgba(0, 212, 255, 0.3); animation: fxFloat 5.4s ease-in-out 1.4s infinite; }
.fx-live .fx-r1 { width: 96px; height: 96px; border-top-color: rgba(228, 0, 43, 0.55); animation-duration: 22s; }
.fx-live .fx-chip { width: 38px; height: 38px; border-radius: 10px; }
.fx-live .fx-chip svg { width: 19px; height: 19px; }
.fx-live .fx-c1 { left: 18px; top: 16px; color: var(--zoccer-cyan); box-shadow: 0 8px 22px rgba(0, 212, 255, 0.3); animation: fxFloat 5.6s ease-in-out infinite; }
.fx-live .fx-c2 { right: 18px; bottom: 16px; color: #FF5C7A; box-shadow: 0 8px 22px rgba(228, 0, 43, 0.32); animation: fxFloat 6.4s ease-in-out 0.9s infinite; }
.fxl-beacon { position: absolute; right: 14px; top: 14px; width: 10px; height: 10px; border-radius: 50%;
  background: var(--zoccer-red); box-shadow: 0 0 0 0 rgba(228, 0, 43, 0.55); animation: fxBeacon 1.8s ease-out infinite; }
.fx-phone { border: 3px solid rgba(255, 255, 255, 0.14) !important; }
.fxp-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 12px; border-radius: 7px; background: rgba(255, 255, 255, 0.10); }
.fxp-core { position: absolute; top: 44px; left: 50%; transform: translateX(-50%) skewX(-6deg);
  width: 64px; height: 64px; border-radius: 16px; background: var(--zoccer-gradient);
  display: flex; align-items: center; justify-content: center; color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(228, 0, 43, 0.45); animation: fxPulse 3.6s ease-in-out infinite; }
.fxp-core svg { width: 30px; height: 30px; }
.fxp-line { position: absolute; left: 24px; right: 24px; height: 12px; border-radius: 6px;
  background: linear-gradient(100deg, rgba(255,255,255,0.07) 30%, rgba(255,255,255,0.16) 50%, rgba(255,255,255,0.07) 70%);
  background-size: 220% 100%; animation: fxShimmer 2.6s linear infinite; }
.fxp-l1 { top: 132px; } .fxp-l2 { top: 156px; width: 70%; right: auto; } .fxp-l3 { top: 180px; }
.fxp-l2 { left: 24px; }
@keyframes fxSpin { to { transform: rotate(360deg); } }
@keyframes fxFloat { 0%, 100% { transform: translateY(-6px) rotate(-4deg); } 50% { transform: translateY(7px) rotate(3deg); } }
@keyframes fxPulse { 0%, 100% { box-shadow: 0 12px 40px rgba(228, 0, 43, 0.5); } 50% { box-shadow: 0 12px 58px rgba(228, 0, 43, 0.78); } }
@keyframes fxDrift { from { transform: translate(-8px, -6px); } to { transform: translate(12px, 10px); } }
@keyframes fxBeacon { 0% { box-shadow: 0 0 0 0 rgba(228, 0, 43, 0.55); } 100% { box-shadow: 0 0 0 14px rgba(228, 0, 43, 0); } }
@keyframes fxShimmer { from { background-position: 200% 0; } to { background-position: -20% 0; } }
@media (prefers-reduced-motion: reduce) {
  .fx *, .fx { animation: none !important; }
}
