/* =============================================
   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;
  }
}