/* ============================================
   SafeGameHub - Airbnb + Google Play Inspired Design
   ============================================ */

/* Fonts - Airbnb-style typography (Nunito Sans + Plus Jakarta Sans) */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  /* Typography - Airbnb Style */
  --font-primary: 'Plus Jakarta Sans', 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Nunito Sans', sans-serif;

  /* Primary Colors */
  --primary: #1a73e8;
  --primary-dark: #1557b0;
  --primary-light: #e8f0fe;

  /* Airbnb-inspired accent */
  --accent: #ff385c;
  --accent-dark: #e31c5f;
  --accent-light: #fff0f3;

  /* Status Colors */
  --success: #008a05;
  --success-light: #e6f7e6;
  --warning: #c77700;
  --warning-light: #fef7e0;
  --danger: #c13515;
  --danger-light: #fce8e6;

  /* Hot/Featured */
  --hot: #ff385c;
  --hot-light: #fff0f3;
  --featured: #9334e6;
  --featured-light: #f3e8fd;
  --new-badge: #00a699;

  /* Neutrals - Airbnb Style */
  --black: #222222;
  --gray-dark: #484848;
  --gray: #717171;
  --gray-light: #b0b0b0;
  --gray-lighter: #dddddd;
  --gray-lightest: #f7f7f7;
  --white: #ffffff;

  /* Semantic Colors */
  --bg-primary: var(--white);
  --bg-secondary: var(--gray-lightest);
  --bg-tertiary: #ebebeb;
  --text-primary: var(--black);
  --text-secondary: var(--gray);
  --text-tertiary: var(--gray-light);
  --border: var(--gray-lighter);
  --border-light: #ebebeb;

  /* Shadows - Airbnb Style */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-xl: 0 8px 28px rgba(0,0,0,0.15);
  --shadow-border: 0 0 0 1px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-hover: 0 2px 16px rgba(0,0,0,0.12);

  /* Radius - Rounded like Airbnb */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 200ms ease;
  --transition-slow: 300ms ease;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-hot: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-gold: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
  --gradient-ocean: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-sunset: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --gradient-midnight: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  --gradient-aurora: linear-gradient(135deg, #00c6fb 0%, #005bea 100%);
  --gradient-candy: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior: none;
}

/* Scroll offset for sticky header */
section[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg-primary);
  overscroll-behavior: none;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ============================================
   Unified Navigation Button Component
   ============================================ */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.2s ease;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.nav-btn:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  background: var(--gray-lightest);
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.nav-btn-prev {
  left: -24px;
}

.nav-btn-next {
  right: -24px;
}

@media (max-width: 768px) {
  .nav-btn {
    display: none;
  }
}

/* Show nav buttons on hover for all wrapper types */
.bonus-grid-wrapper:hover .nav-btn,
.games-grid-wrapper:hover .nav-btn,
.games-scroll-wrapper:hover .nav-btn,
.editors-scroll-wrapper:hover .nav-btn,
.providers-scroll-wrapper:hover .nav-btn,
.top-charts-grid-wrapper:hover .nav-btn,
.promo-grid-wrapper:hover .nav-btn,
.testimonial-grid-wrapper:hover .nav-btn,
.blog-grid-wrapper:hover .nav-btn,
.similar-games-wrapper:hover .nav-btn,
.screenshots-wrapper:hover .nav-btn,
.related-questions-grid-wrapper:hover .nav-btn,
.related-posts-wrapper:hover .nav-btn {
  opacity: 1;
  visibility: visible;
}

/* Typography - Airbnb Style */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

h1 { font-size: 32px; font-weight: 800; }
h2 { font-size: 24px; font-weight: 700; }
h3 { font-size: 18px; font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; }

p {
  color: var(--gray);
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

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

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-sm {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-lg {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ============================================
   Header - Airbnb Style
   ============================================ */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), #ff6b6b);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
}

.logo-icon-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* Search Bar - Airbnb Style */
.search-bar {
  flex: 1;
  max-width: 560px;
  margin: 0 var(--space-xl);
}

.search-bar input {
  width: 100%;
  height: 48px;
  padding: 0 var(--space-lg) 0 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--white);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.search-bar input:hover {
  box-shadow: var(--shadow-md);
}

.search-bar input:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: var(--shadow-md);
}

.search-bar input::placeholder {
  color: var(--gray);
  font-weight: 400;
}

.search-bar::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23717171' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.search-bar {
  position: relative;
}

/* Navigation - Airbnb Style */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-left: var(--space-2xl);
}

.nav-menu a {
  padding: 12px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-dark);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-menu a:hover {
  background: var(--gray-lightest);
  color: var(--black);
}

.nav-menu a.active {
  background: var(--gray-lightest);
  color: var(--black);
  font-weight: 600;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.mobile-menu-btn:hover {
  box-shadow: var(--shadow-md);
}

.mobile-menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ============================================
   Hero Section - Compelling Design
   ============================================ */
.hero {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 50%, #fff5f5 100%);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}


.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  color: var(--text-primary);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.hero-tagline {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.95;
  margin-bottom: var(--space-xl);
  line-height: 1.5;
  color: white;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero-trust {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  background: white;
  box-shadow: var(--shadow-sm);
  padding: 10px 18px;
  border-radius: var(--radius-full);
}

.trust-icon {
  font-size: 18px;
}

.hero-image {
  width: 480px;
  height: 400px;
  background: white;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ============================================
   Section Headers - Airbnb Style
   ============================================ */
.section {
  padding: var(--space-2xl) 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.section-header-content {
  max-width: 600px;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  text-decoration: underline;
}

.section-link:hover {
  background: var(--gray-lightest);
}

/* ============================================
   Chip Filters - Airbnb Style
   ============================================ */
.section-header + .chip-filters-row,
.section-header + .promo-tabs-row {
  margin-top: -16px;
}

.chip-filters-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.chip-filters {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.chip-filters::-webkit-scrollbar {
  display: none;
}

.chip {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-dark);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chip:hover {
  border-color: var(--black);
  color: var(--black);
}

.chip.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

@media (max-width: 768px) {
  .chip-filters-row {
    flex-wrap: wrap;
  }

  .chip-filters {
    width: 100%;
  }
}

.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-dark);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--black);
}

.filter-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.category-filters {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md) 0 var(--space-lg);
  overflow-x: auto;
  scrollbar-width: none;
}

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

/* ============================================
   Carousel - Horizontal Scroll
   ============================================ */
.carousel-wrapper {
  position: relative;
  margin: 0;
  padding: 0;
}

.carousel {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 48px 16px 48px;
  scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* Carousel Navigation Buttons - Google Play Style */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.2s ease;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.carousel-wrapper:hover .carousel-btn {
  opacity: 1;
  visibility: visible;
}

.carousel-btn:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  background: var(--gray-lightest);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-btn-prev {
  left: -24px;
}

.carousel-btn-next {
  right: -24px;
}

@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }
}

/* ============================================
   Google Play Card Style (Recommended Section)
   ============================================ */
.gplay-carousel {
  gap: 8px;
  padding: 8px 48px 16px 48px;
}


/* Center buttons with card icons - Recommended */
.carousel-wrapper:has(.gplay-carousel) .carousel-btn {
  top: 66px; /* 8px padding + 50px (half of 100px icon) + 8px card padding */
  transform: none;
}

.gplay-card {
  display: flex;
  flex-direction: column;
  width: 116px;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-md);
  padding: 8px;
  transition: background-color 0.15s ease;
  flex-shrink: 0;
}

.gplay-card:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.gplay-card:active {
  background-color: rgba(0, 0, 0, 0.08);
}

.gplay-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gplay-card:hover .gplay-icon {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gplay-icon span {
  font-size: 40px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.gplay-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.gplay-info {
  padding: 0 2px;
}

.gplay-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 2px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gplay-category {
  font-size: 12px;
  color: var(--gray);
  margin: 0 0 2px 0;
  line-height: 1.3;
}

.gplay-meta {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gplay-rating {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Responsive for Google Play cards */
@media (max-width: 768px) {
  .gplay-carousel {
    padding: 8px 40px 12px 40px;
    gap: 4px;
  }

  .gplay-card {
    width: 100px;
    padding: 6px;
  }

  .gplay-icon {
    width: 88px;
    height: 88px;
    border-radius: 18px;
    margin-bottom: 8px;
  }

  .gplay-icon span {
    font-size: 36px;
  }

  .gplay-title {
    font-size: 12px;
  }

  .gplay-category,
  .gplay-rating {
    font-size: 11px;
  }

  /* Adjust button position for mobile */
  .carousel-wrapper:has(.gplay-carousel) .carousel-btn {
    top: 56px; /* 6px padding + 44px (half of 88px icon) + 6px */
  }

}

/* ============================================
   Google Play Top Charts Style
   ============================================ */
.top-charts-carousel {
  gap: 0;
  padding: 0 48px 16px 48px;
}

.top-charts-column {
  display: flex;
  flex-direction: column;
  min-width: 280px;
  flex-shrink: 0;
}

.top-chart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-md);
  transition: background-color 0.15s ease;
}

.top-chart-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.top-chart-item:active {
  background-color: rgba(0, 0, 0, 0.08);
}

.top-chart-rank {
  min-width: 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
  text-align: center;
}

.top-chart-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.top-chart-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-chart-item:hover .top-chart-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.top-chart-icon span {
  font-size: 28px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.top-chart-info {
  flex: 1;
  min-width: 0;
}

.top-chart-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 2px 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-chart-category {
  font-size: 12px;
  color: var(--gray);
  margin: 0 0 2px 0;
  line-height: 1.3;
}

.top-chart-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-chart-rating {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Responsive adjustments for Top Charts */
@media (max-width: 768px) {
  .top-charts-carousel {
    padding: 0 40px 12px 40px;
  }

  .top-charts-column {
    min-width: 260px;
  }

  .top-chart-item {
    padding: 10px 12px;
    gap: 12px;
  }

  .top-chart-rank {
    min-width: 20px;
    font-size: 14px;
  }

  .top-chart-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .top-chart-icon span {
    font-size: 24px;
  }

  .top-chart-title {
    font-size: 13px;
  }

  .top-chart-category,
  .top-chart-rating {
    font-size: 11px;
  }
}

/* ============================================
   Casino Cards - Google Play Grid Style
   ============================================ */
.casino-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: var(--radius-md);
  overflow: visible;
  transition: var(--transition-normal);
  cursor: pointer;
  padding: 12px;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.casino-card:hover {
  background: rgba(0, 0, 0, 0.04);
}

.casino-card:hover .casino-image {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.casino-image-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 12px;
}

.casino-image {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  position: relative;
  border-radius: 20px;
  transition: var(--transition-normal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

.casino-image-real {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 20px;
  transition: var(--transition-normal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.casino-card:hover .casino-image-real {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.casino-image-fallback {
  position: absolute;
  top: 0;
  left: 0;
}

.results-count {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: var(--space-md);
}

.casino-badge {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(30%, -30%);
  padding: 4px 8px;
  border-radius: var(--radius-md);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  z-index: 1;
}

.badge-hot {
  background: var(--accent);
  color: white;
}

.badge-preheat {
  background: var(--warning);
  color: white;
}

.badge-new {
  background: var(--new-badge);
  color: white;
}

.casino-favorite {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.casino-favorite:hover {
  transform: scale(1.1);
}

.casino-content {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.casino-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-xs);
}

.casino-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  color: var(--gray);
}

.rating-star {
  color: var(--text-primary);
  font-size: 12px;
}

.rating-score {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
}

.rating-score::before {
  content: "★ ";
}

.rating-stars {
  display: none;
}

.casino-location,
.casino-category {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 4px;
}

.casino-features {
  font-size: 12px;
  color: var(--gray);
  display: none;
}

.casino-tags {
  display: none;
}

.casino-card .btn {
  display: none;
}

/* Large Casino Card */
.casino-card-lg {
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-border);
  transition: var(--transition-normal);
}

.casino-card-lg:hover {
  box-shadow: var(--shadow-lg);
}

.casino-card-lg .casino-image {
  height: 180px;
  border-radius: 0;
}

.casino-card-lg .casino-content {
  padding: var(--space-lg);
}

.casino-card-lg .casino-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.casino-features {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

/* ============================================
   Bonus Cards - Clean Horizontal Style
   ============================================ */
.bonus-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  min-width: 320px;
  flex-shrink: 0;
  transition: background-color 0.15s ease;
}

.bonus-card:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.bonus-card:hover .bonus-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bonus-card:hover .bonus-icon-wrapper .bonus-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bonus-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.bonus-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.bonus-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}

.bonus-badge {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(30%, -30%);
  padding: 4px 8px;
  border-radius: var(--radius-md);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  z-index: 1;
  background: var(--accent);
  color: white;
}

.bonus-badge-new {
  background: var(--warning);
  color: white;
}

.bonus-content {
  flex: 1;
  min-width: 0;
}

.bonus-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.bonus-offer {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 6px 0;
}

.bonus-details {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--gray);
}

.bonus-details span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bonus-action {
  flex-shrink: 0;
}

.bonus-action .btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
}

/* Bonus Grid Layout */
.bonus-grid-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 16px;
  flex: 1;
  padding: 8px;
}

.bonus-grid .bonus-card {
  min-width: unset;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}


/* Games Grid Layout */
.games-grid-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.games-grid-wrapper .casino-grid {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  grid-auto-columns: 200px;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
  justify-content: start;
}

.games-grid-wrapper .casino-grid::-webkit-scrollbar {
  display: none;
}

.games-grid-wrapper .casino-grid .casino-card {
  width: 200px;
  min-width: 200px;
}


/* ==========================================
   Games Page Sections
   ========================================== */

/* Games Section Base */
.games-section {
  padding: 48px 0;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.section-header-row .section-header-content {
  flex: 1;
}

.section-header-row .section-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: var(--text-primary);
}

.section-header-row .section-subtitle {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

.section-more-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 0;
}

.section-more-link:hover {
  text-decoration: underline;
}

/* Events Banner */
.events-banner-section {
  padding: 24px 0;
  background: var(--bg-secondary);
}

.events-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  color: white;
  overflow: hidden;
  position: relative;
}

.events-banner-content {
  flex: 1;
  z-index: 1;
}

.events-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.events-banner h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.events-banner p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0 0 20px 0;
  max-width: 500px;
}

.events-banner .btn {
  background: white;
  color: #667eea;
  font-weight: 600;
}

.events-banner .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.events-banner-visual {
  position: relative;
  z-index: 1;
}

.events-icon {
  font-size: 80px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .events-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .events-banner h2 {
    font-size: 22px;
  }

  .events-banner p {
    font-size: 14px;
  }

  .events-banner-visual {
    margin-top: 16px;
  }

  .events-icon {
    font-size: 60px;
  }
}

/* Games Scroll Row */
.games-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.games-scroll-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
}

.games-scroll-row::-webkit-scrollbar {
  display: none;
}


/* Game Card Small */
.game-card-sm {
  flex: 0 0 auto;
  width: 140px;
  text-decoration: none;
  color: inherit;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: background-color 0.15s ease;
}

.game-card-sm:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.game-card-sm:active {
  background-color: rgba(0, 0, 0, 0.08);
}

.game-card-sm-image-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
}

.game-card-sm-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.game-card-sm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card-sm:hover .game-card-sm-image {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.game-card-sm-image-wrapper .game-card-sm-image {
  margin-bottom: 0;
}

.game-card-sm-badge {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(30%, -30%);
  padding: 4px 8px;
  border-radius: var(--radius-md);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.game-card-sm-info h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 2px 0;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-sm-info p {
  font-size: 12px;
  color: var(--gray);
  margin: 0 0 4px 0;
}

.game-card-sm-rating {
  font-size: 12px;
  color: var(--gray);
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  color: white;
  text-decoration: none;
  text-align: center;
  transition: var(--transition-fast);
  min-height: 140px;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  z-index: 1;
}

.category-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.category-card .category-icon,
.category-card h3,
.category-card p {
  position: relative;
  z-index: 2;
}

.category-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.category-card:hover .category-card-bg {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.category-icon {
  font-size: 40px;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.category-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.category-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

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

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

@media (max-width: 576px) {
  .category-card {
    min-height: 120px;
    padding: 20px 12px;
  }

  .category-icon {
    font-size: 32px;
    margin-bottom: 8px;
  }
}

/* ============================================
   Category Modal (Center Aligned)
   ============================================ */
.category-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.category-modal.active {
  opacity: 1;
  visibility: visible;
}

.category-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.category-modal-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 600px;
  max-height: calc(100vh - 80px);
  background: var(--white);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.category-modal.active .category-modal-container {
  transform: scale(1);
  opacity: 1;
}

.category-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}

.category-modal-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}

.category-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray-lightest);
  color: var(--gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.category-modal-close:hover {
  background: var(--gray-lighter);
  color: var(--text-primary);
}

.category-modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  padding-right: 8px;
  margin-right: 8px;
  margin-bottom: 8px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-light) transparent;
}

/* Custom Scrollbar for Modal */
.category-modal-content::-webkit-scrollbar {
  width: 6px;
}

.category-modal-content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}

.category-modal-content::-webkit-scrollbar-thumb {
  background: var(--gray-light);
  border-radius: 3px;
}

.category-modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--gray);
}

.category-modal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.category-modal-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: background-color 0.15s ease;
  width: 100%;
  box-sizing: border-box;
}

.category-modal-card:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.category-modal-card:active {
  background-color: rgba(0, 0, 0, 0.08);
}

.category-modal-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea, #764ba2);
  position: relative;
  flex-shrink: 0;
}

.category-modal-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.category-modal-card:hover .category-modal-card-image {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-modal-card-info h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 2px 0;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-modal-card-info p {
  font-size: 12px;
  color: var(--gray);
  margin: 0 0 4px 0;
}

.category-modal-card-rating {
  font-size: 12px;
  color: var(--gray);
}

@media (max-width: 768px) {
  .category-modal {
    padding: 0;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .category-modal-container {
    width: 100%;
    max-width: 100%;
    height: 85vh;
    max-height: 85vh;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    opacity: 1;
  }

  .category-modal.active .category-modal-container {
    transform: translateY(0);
  }

  .category-modal-header {
    padding: 16px 20px;
    position: relative;
  }

  .category-modal-header::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--gray-light);
    border-radius: 2px;
  }

  .category-modal-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px;
    overflow-x: hidden !important;
  }

  .category-modal-content {
    padding: 16px;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .category-modal-content::-webkit-scrollbar {
    display: none;
  }

  .category-modal-card {
    min-width: 0;
    padding: 8px;
  }

  .category-modal-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    font-size: 28px;
    border-radius: 20px;
  }

  .category-modal-card-info h4 {
    font-size: 12px;
  }

  .category-modal-card-info p {
    font-size: 10px;
  }

  .category-modal-title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .category-modal-container {
    height: 90vh;
    max-height: 90vh;
  }

  .category-modal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px;
  }

  .category-modal-card {
    padding: 6px;
  }

  .category-modal-card-image {
    font-size: 24px;
    border-radius: 18px;
  }

  .category-modal-card-info h4 {
    font-size: 11px;
  }

  .category-modal-card-info p {
    font-size: 9px;
  }
}

/* Top Charts */
/* Top Charts Grid Wrapper */
.top-charts-grid-wrapper {
  position: relative;
}


.top-charts-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.top-charts-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  /* Top charts - horizontal scroll showing 3 rows × 1 column at a time */
  .top-charts-content {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .top-charts-content::-webkit-scrollbar {
    display: none;
  }
  .top-charts-columns {
    display: contents !important;
  }
  .top-charts-column {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
  }
}

/* Editors' Choice */
.editors-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Editors Choice Scroll */
.editors-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.editors-scroll-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
}

.editors-scroll-row::-webkit-scrollbar {
  display: none;
}

.editors-scroll-row .editors-choice-card {
  flex: 0 0 320px;
  min-width: 320px;
}

.editors-choice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.editors-choice-card:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.editors-choice-card:active {
  background-color: rgba(0, 0, 0, 0.08);
}

.editors-choice-banner {
  position: relative;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.editors-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
}

.editors-choice-icon {
  font-size: 64px;
  color: white;
  opacity: 0.95;
}

.editors-choice-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.editors-choice-content {
  padding: 20px;
}

.editors-choice-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: var(--text-primary);
}

.editors-choice-category {
  font-size: 13px;
  color: var(--gray);
  margin: 0 0 12px 0;
}

.editors-choice-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.editors-choice-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--gray);
}

.editors-choice-rating {
  color: var(--text-primary);
  font-weight: 500;
}

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

@media (max-width: 576px) {
  .editors-choice-grid {
    grid-template-columns: 1fr;
  }
}

/* Providers Grid */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* Providers Scroll */
.providers-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.providers-scroll-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
}

.providers-scroll-row::-webkit-scrollbar {
  display: none;
}

.providers-scroll-row .provider-card {
  flex: 0 0 140px;
  min-width: 140px;
}

.provider-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.provider-card:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.provider-card:active {
  background-color: rgba(0, 0, 0, 0.08);
}

.provider-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--gray-lightest);
}

.provider-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.provider-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: var(--text-primary);
}

.provider-card p {
  font-size: 12px;
  color: var(--gray);
  margin: 0;
}

@media (max-width: 992px) {
  .providers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 768px) {
  .bonus-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
  }
}

@media (max-width: 480px) {
  .bonus-card {
    min-width: unset;
    padding: 12px;
    gap: 12px;
  }

  .bonus-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .bonus-name {
    font-size: 14px;
  }

  .bonus-offer {
    font-size: 13px;
  }

  .bonus-action .btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* ============================================
   Casino Grid - Google Play Style
   ============================================ */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

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

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

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

/* ============================================
   Quick Nav Cards - Airbnb Category Style
   ============================================ */
.quick-nav {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border-light);
}

.quick-nav-grid {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
}

.quick-nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  transition: var(--transition-fast);
  min-width: 72px;
  text-decoration: none;
}

.quick-nav-card:hover {
  background: rgba(0, 0, 0, 0.02);
}

.quick-nav-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quick-nav-icon svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .quick-nav-icon svg {
    width: 20px;
    height: 20px;
  }
}

.quick-nav-card:hover .quick-nav-icon {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.quick-nav-card h3 {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

/* ============================================
   Buttons - Airbnb Style
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--black);
  color: white;
}

.btn-secondary:hover {
  background: var(--gray-dark);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn-white:hover {
  background: var(--gray-lightest);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 32px;
  font-size: 16px;
  border-radius: var(--radius-full);
}

/* ============================================
   Promo Cards - Airbnb Experience Style
   ============================================ */
.promo-section {
  padding: var(--space-2xl) 0;
}

.promo-tabs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
}

.promo-tabs {
  display: flex;
  gap: var(--space-sm);
}

.promo-tab {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--white);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-dark);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-fast);
}

.promo-tab:hover {
  border-color: var(--black);
  color: var(--black);
}

.promo-tab.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

@media (max-width: 576px) {
  .promo-tabs-row {
    flex-wrap: wrap;
  }

  .promo-tabs {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

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

.promo-content {
  display: none;
}

.promo-content.active {
  display: block;
}

.promo-grid-wrapper {
  position: relative;
}

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

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

@media (max-width: 640px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }
}

.promo-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.promo-card-top {
  padding: 48px 24px;
  color: white;
  text-align: center;
}

.promo-value {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.promo-desc {
  font-size: 15px;
  opacity: 0.95;
  margin: 0;
  font-weight: 500;
}

.promo-card-bottom {
  padding: 20px;
}

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

.promo-brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #f5f5f5, #eee);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  overflow: hidden;
}

.promo-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.promo-brand-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.promo-code-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-code-box {
  flex: 1;
  background: #fafafa;
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  padding: 12px 14px;
  text-align: center;
}

.promo-code-text {
  font-family: 'SF Mono', 'Roboto Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: #888;
  letter-spacing: 1.5px;
}

.copy-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border: none;
  border-radius: 20px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(255, 56, 92, 0.3);
}

.promo-timer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.promo-timer-label {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-align: center;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.countdown-item {
  text-align: center;
  min-width: 52px;
  background: linear-gradient(135deg, #fff0f3, #ffe4e9);
  padding: 10px 8px;
  border-radius: 10px;
}

.countdown-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.countdown-label {
  display: block;
  font-size: 10px;
  color: var(--accent-dark);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

@media (max-width: 480px) {
  .promo-card-top {
    padding: 24px 20px;
  }

  .promo-value {
    font-size: 24px;
  }

  .promo-card-bottom {
    padding: 16px;
  }

  .promo-code-row {
    flex-direction: column;
    gap: 8px;
  }

  .promo-code-box {
    width: 100%;
  }

  .copy-btn {
    width: 100%;
    padding: 12px;
  }
}

.countdown-timer {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

/* ============================================
   Stats Section - Compelling Numbers
   ============================================ */
.stats-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

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

.stats-section .container {
  position: relative;
  z-index: 1;
}

.stats-section .section-header {
  text-align: center;
  display: block;
  margin-bottom: var(--space-2xl);
}

.stats-section .section-title {
  color: var(--text-primary);
  font-size: 36px;
  margin-bottom: var(--space-sm);
}

.stats-section .section-subtitle {
  color: var(--text-secondary);
  font-size: 18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stat-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-icon-wrapper {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.stat-icon-wrapper svg {
  stroke: var(--accent);
}


.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  border-radius: var(--radius-lg);
}

.stat-value {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

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

/* ============================================
   Testimonials - Social Proof
   ============================================ */
.testimonials-section {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.testimonial-grid-wrapper {
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: var(--space-lg);
  font-weight: 400;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: auto;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.testimonial-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.testimonial-info p {
  font-size: 14px;
  color: var(--gray);
}

/* ============================================
   Features Section - Value Props
   ============================================ */
.features-section {
  padding: var(--space-3xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  text-align: center;
  padding: var(--space-xl);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gray-lightest);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto var(--space-lg);
  transition: var(--transition-normal);
}


.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: var(--space-sm);
}

.feature-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   Footer - Airbnb Style
   ============================================ */
.footer {
  background: var(--gray-lightest);
  border-top: 1px solid var(--border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.footer-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 320px;
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.footer-links a {
  display: block;
  font-size: 15px;
  color: var(--gray);
  padding: 8px 0;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--black);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
  font-size: 14px;
  color: var(--gray);
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  font-size: 13px;
  color: var(--gray);
  max-width: 100%;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  line-height: 1.7;
  text-align: center;
}

.footer-copyright {
  font-size: 14px;
  color: var(--gray);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--black);
  color: white;
  border-color: var(--black);
}

/* ============================================
   Page Headers
   ============================================ */
.page-header {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  color: var(--text-primary);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

/* Unique page header colors */
.page-header-games {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #e1bee7 100%);
}

.page-header-bonuses {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 50%, #ffccbc 100%);
}

.page-header-blog {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #dcedc8 100%);
}

.page-header-complaints {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #b3e5fc 100%);
}

.page-header-about {
  background: linear-gradient(135deg, #ede7f6 0%, #d1c4e9 50%, #e1bee7 100%);
}


.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.page-header p {
  font-size: 18px;
  max-width: 600px;
  color: var(--text-secondary);
}

.page-header-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
}

.page-header-stat {
  text-align: left;
}

.page-header-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.page-header-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============================================
   Content Cards & Sections
   ============================================ */
.content-section {
  padding: var(--space-2xl) 0;
}

.content-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-border);
}

.content-card h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--black);
}

.content-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--black);
}

.content-card p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.content-card ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.content-card li {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

/* ============================================
   Forms - Airbnb Style
   ============================================ */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  transition: var(--transition-fast);
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
  border-color: var(--black);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
  border-radius: var(--radius-md);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-light) transparent;
}

.form-textarea::-webkit-scrollbar {
  width: 6px;
}

.form-textarea::-webkit-scrollbar-track {
  background: transparent;
  margin: 12px 0;
}

.form-textarea::-webkit-scrollbar-thumb {
  background: var(--gray-light);
  border-radius: var(--radius-full);
}

.form-textarea::-webkit-scrollbar-thumb:hover {
  background: var(--gray);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-light);
}

/* ============================================
   Bonus Cards - List Style
   ============================================ */

.bonus-image {
  width: 200px;
  min-height: 160px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: white;
  flex-shrink: 0;
}

.bonus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-list .bonus-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 0 !important;
  align-items: stretch;
}

.bonus-list .bonus-image {
  border-radius: 0;
  margin: 0;
  min-height: auto;
}

.bonus-content {
  flex: 1;
  padding: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
}

.bonus-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: var(--space-xs);
}

.bonus-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--success);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.bonus-terms {
  font-size: 14px;
  color: var(--gray);
}

.bonus-action {
  text-align: center;
  flex-shrink: 0;
}

/* ============================================
   Blog Cards - Airbnb Experience Style
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.blog-grid-wrapper {
  position: relative;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
}

.blog-image {
  height: 200px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  position: relative;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-image-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  color: white;
}

.blog-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 13px;
  color: var(--gray);
  margin-bottom: var(--space-sm);
}

.blog-category {
  background: var(--gray-lightest);
  color: var(--gray-dark);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 12px;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.blog-title a:hover {
  color: var(--accent);
}

.blog-excerpt {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  text-decoration: underline;
  margin-top: auto;
}

.blog-read-more:hover {
  color: var(--accent);
}

/* Featured Post */
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-xl);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.featured-image {
  min-height: 360px;
  background: linear-gradient(135deg, var(--accent), #ff6b6b);
  position: relative;
  overflow: hidden;
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-image-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: white;
}

.featured-content {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  width: fit-content;
}

.featured-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: var(--black);
}

.featured-title a:hover {
  color: var(--accent);
}

.featured-excerpt {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.pagination a,
.pagination span {
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-dark);
  transition: var(--transition-fast);
  border: 1px solid var(--border);
}

.pagination a:hover {
  background: var(--gray-lightest);
  border-color: var(--black);
}

.pagination .active {
  background: var(--black);
  color: white;
  border-color: var(--black);
}

/* ============================================
   Team Grid
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.team-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  transition: var(--transition-normal);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent), #ff6b6b);
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
}

.team-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--black);
}

.team-role {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: var(--space-md);
}

.team-bio {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   Article Page
   ============================================ */
.article-header {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: var(--space-4xl) 0;
}


.article-meta {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.article-category {
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
}

.article-date,
.article-read-time {
  font-size: 14px;
  opacity: 0.9;
}

.article-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  color: white;
  letter-spacing: -0.03em;
}

.article-excerpt {
  font-size: 20px;
  opacity: 0.9;
  max-width: 700px;
  line-height: 1.5;
  color: white;
}

.article-content {
  padding: var(--space-3xl) 0;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-body h2 {
  font-size: 32px;
  font-weight: 700;
  margin: var(--space-2xl) 0 var(--space-md);
  color: var(--black);
  letter-spacing: -0.02em;
}

.article-body h3 {
  font-size: 24px;
  font-weight: 600;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--black);
}

.article-body p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-dark);
  margin-bottom: var(--space-lg);
}

.article-body ul,
.article-body ol {
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
}

.article-body li {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-dark);
  margin-bottom: var(--space-sm);
}

.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) 0;
  background: var(--gray-lightest);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-body blockquote p {
  font-size: 20px;
  font-style: italic;
  margin: 0;
  color: var(--black);
}

.article-body a {
  color: var(--accent);
  text-decoration: underline;
}

.article-image {
  width: 100%;
  height: 400px;
  background: var(--gray-lightest);
  border-radius: var(--radius-xl);
  margin: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}

.article-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  margin: var(--space-2xl) 0;
}

.article-cta h3 {
  color: white;
  font-size: 24px;
  margin-bottom: var(--space-sm);
}

.article-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  margin-bottom: var(--space-lg);
}

.article-cta .btn {
  background: white;
  color: var(--accent);
}

.article-tags {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.article-tag {
  background: var(--gray-lightest);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  color: var(--gray-dark);
  font-weight: 500;
}

.related-posts {
  padding: var(--space-3xl) 0;
}

.related-posts-wrapper {
  position: relative;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.related-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-border);
  transition: var(--transition-normal);
}

.related-card:hover {
  box-shadow: var(--shadow-lg);
}

.related-image {
  height: 160px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: white;
}

.related-content {
  padding: var(--space-lg);
}

.related-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--space-sm);
}

.related-title a {
  color: var(--black);
}

.related-title a:hover {
  color: var(--accent);
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--accent), #ff6b6b);
  padding: var(--space-3xl) 0;
  text-align: center;
  color: white;
}

.cta-banner h2 {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-md);
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner .btn {
  background: white;
  color: var(--accent);
  font-size: 16px;
  padding: 14px 28px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 42px;
  }

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

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

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

  .hero-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
  }

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

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

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

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

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

  .featured-post {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .header .container {
    height: 64px;
  }

  .search-bar {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-xs);
    margin-left: 0;
    display: none;
    z-index: 999;
    border-top: 1px solid var(--border);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    width: 100%;
    padding: 14px var(--space-md);
    font-size: 16px;
    border-radius: var(--radius-full);
    text-align: left;
  }

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

  .hero {
    padding: var(--space-2xl) 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-tagline {
    font-size: 16px;
  }

  .hero-image {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .article-title {
    font-size: 28px;
  }

  .quick-nav-grid {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: var(--space-md);
    padding-bottom: var(--space-sm);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .quick-nav-grid::-webkit-scrollbar {
    display: none;
  }

  .quick-nav-card {
    min-width: 64px;
    padding: var(--space-sm);
  }

  .quick-nav-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .quick-nav-icon span {
    font-size: 20px;
  }

  .quick-nav-card h3 {
    font-size: 11px;
  }

  .bonus-card {
    flex-direction: column;
    padding: 0;
  }

  .bonus-image {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bonus-image img {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-md);
  }

  .bonus-list .bonus-image {
    height: 200px;
  }

  .bonus-list .bonus-image img {
    width: 100px !important;
    height: 100px !important;
  }

  .bonus-content {
    flex-direction: column;
    text-align: center;
  }

  .bonus-casino-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xs);
  }

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

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

  /* Comparison table mobile styles */
  .comparison-table .casino-icon {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px;
    min-height: 56px;
    flex-shrink: 0;
  }

  .comparison-table .casino-icon img {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px;
    min-height: 56px;
    object-fit: cover;
  }

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

@media (max-width: 576px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

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

  .stat-value {
    font-size: 36px;
  }

  .stat-card {
    padding: var(--space-lg);
  }

  .stat-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .stat-icon-wrapper svg {
    width: 28px;
    height: 28px;
  }

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

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

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

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

  .cta-buttons {
    flex-direction: column !important;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

}

/* ============================================
   Additional Components
   ============================================ */

/* Trust Bar */
.trust-bar {
  background: var(--bg-secondary);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-icon {
  font-size: 18px;
}

/* Section Subtitle */
.section-subtitle {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

/* Load More Button */
.load-more {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Featured Casino */
.featured-casino {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
  position: relative;
  border: 1px solid var(--border-light);
}

.featured-casino-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.featured-casino-content {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: var(--space-xl);
  align-items: center;
}

.featured-casino-image {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  box-shadow: var(--shadow-md);
}

.featured-casino-info h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.featured-casino-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: var(--space-md) 0;
}

.featured-casino-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.highlight-tag {
  background: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.featured-casino-bonus {
  text-align: center;
  min-width: 200px;
}

.bonus-highlight {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.bonus-sub {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: var(--space-md);
}

.bonus-terms-small {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: var(--space-sm);
}

.rating-count {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-left: var(--space-sm);
}

/* Featured Bonus */
.featured-bonus {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-light) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  position: relative;
}

.featured-bonus-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.featured-bonus-content {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: var(--space-xl);
  align-items: center;
}

.featured-bonus-left {
  text-align: center;
}

.featured-bonus-image {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  box-shadow: var(--shadow-md);
  margin: 0 auto var(--space-md);
  overflow: hidden;
}

.featured-bonus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.featured-bonus-left h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.featured-bonus-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.featured-bonus-extra {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: var(--space-md);
}

.featured-bonus-terms {
  display: flex;
  gap: var(--space-lg);
  color: var(--text-secondary);
  font-size: 14px;
}

.featured-bonus-action {
  text-align: center;
  min-width: 220px;
}

.promo-code-large {
  background: var(--white);
  border: 2px dashed var(--accent);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.code-label {
  display: block;
  font-size: 12px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.code-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
}

.expiry-text {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: var(--space-sm);
}

.btn-large {
  padding: var(--space-md) var(--space-xl);
  font-size: 16px;
}

/* Bonus Card Enhancements */
.bonus-casino-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.bonus-casino-header h3 {
  margin: 0;
}

.bonus-casino-header .bonus-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--bg-secondary);
  color: var(--text-secondary);
}

.bonus-casino-header .bonus-badge.badge-hot {
  background: var(--hot-light);
  color: var(--hot);
}

.bonus-casino-header .bonus-badge.badge-preheat {
  background: var(--warning-light);
  color: var(--warning);
}

.bonus-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.bonus-highlight {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.bonus-highlight svg {
  flex-shrink: 0;
}

/* FAQ Items */
.faq-item {
  padding: var(--space-lg) 0;
  border: none;
  border-bottom: none;
}

.faq-item:last-child {
  padding-bottom: 0;
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Complaint Form Styles */
.complaint-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-border);
}

.complaint-form-header {
  margin-bottom: var(--space-xl);
}

.complaint-form-header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.complaint-form-header p {
  color: var(--text-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  flex-shrink: 0;
}

.form-checkbox a {
  color: var(--primary);
  text-decoration: underline;
}

.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.file-upload-label:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.file-upload-label span:first-child {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-hint {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: var(--space-xs);
}

/* About Page Styles */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about-hero-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.about-lead {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.about-hero-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.about-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.about-stat-card {
  background: var(--bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
}

.about-stat-icon {
  font-size: 32px;
  margin-bottom: var(--space-sm);
}

.about-stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.about-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: var(--space-xs);
}

/* Rating Methodology */
.rating-methodology {
  max-width: 100%;
}

.rating-intro {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.rating-criteria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .rating-criteria {
    grid-template-columns: 1fr;
  }
}

.rating-item {
  padding: var(--space-lg);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.rating-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.rating-header .rating-icon {
  font-size: 24px;
}

.rating-header h3 {
  flex: 1;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.rating-weight {
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
}

.rating-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Team Section */
.team-section {
  background: var(--bg-secondary);
  padding: var(--space-3xl) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.team-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto var(--space-md);
}

.team-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: var(--space-md);
}

.team-bio {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Independence Section */
.independence-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.independence-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.independence-lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.independence-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.independence-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.value-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--success-light);
  border-radius: var(--radius-md);
}

.value-icon {
  font-size: 24px;
  color: var(--success);
}

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

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-card {
  background: var(--bg-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
}

.contact-icon {
  font-size: 36px;
  margin-bottom: var(--space-md);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

.contact-note {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: var(--space-sm);
}

.contact-note a {
  color: var(--primary);
}

.address-section {
  text-align: center;
  padding: var(--space-xl);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
}

.address-section h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.address-section p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  gap: var(--space-md);
  max-width: 500px;
  margin: var(--space-lg) auto 0;
}

.newsletter-input {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--white);
  border-radius: var(--radius-full);
  font-size: 16px;
  font-family: var(--font-primary);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.7);
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255,255,255,0.2);
}

.newsletter-note {
  font-size: 13px;
  opacity: 0.8;
  margin-top: var(--space-md);
}

/* Responsive: Additional Components */
@media (max-width: 1024px) {
  .featured-casino-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .featured-casino-image {
    margin: 0 auto;
  }

  .featured-casino-highlights {
    justify-content: center;
  }

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

  .featured-bonus-terms {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .independence-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-items {
    gap: var(--space-md);
  }

  .trust-item {
    font-size: 12px;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

  .independence-values {
    grid-template-columns: 1fr;
  }

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

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

/* ============================================
   Enhanced Attractive Styling
   ============================================ */

/* Keyframe Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(26, 115, 232, 0.3); }
  50% { box-shadow: 0 0 40px rgba(26, 115, 232, 0.6); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes bounce-in {
  0% { transform: scale(0.9); opacity: 0; }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes slide-up {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Glass Morphism Effect */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #f5af19, #f12711);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animated Background Sections */
.animated-bg {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
}

.pattern-bg {
  background-color: var(--bg-secondary);
  background-image: radial-gradient(circle at 1px 1px, var(--border) 1px, transparent 0);
  background-size: 24px 24px;
}

/* Enhanced Hero Section */
.hero-enhanced {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 25%, #fce4ec 50%, #fff3e0 75%, #f3e5f5 100%);
  min-height: 600px;
}


.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 0.5s; }
.particle:nth-child(3) { left: 30%; top: 40%; animation-delay: 1s; }
.particle:nth-child(4) { left: 50%; top: 70%; animation-delay: 1.5s; }
.particle:nth-child(5) { left: 70%; top: 30%; animation-delay: 2s; }
.particle:nth-child(6) { left: 80%; top: 50%; animation-delay: 2.5s; }
.particle:nth-child(7) { left: 90%; top: 20%; animation-delay: 3s; }

/* Enhanced Cards with Hover Effects */
.card-hover-lift {
  transition: box-shadow 0.3s ease;
}

.card-hover-lift:hover {
  box-shadow: var(--shadow-xl);
}

.card-hover-glow:hover {
  box-shadow: 0 0 30px rgba(26, 115, 232, 0.3);
}

.card-hover-scale {
  transition: transform 0.3s ease;
}

.card-hover-scale:hover {
  transform: scale(1.03);
}

/* Ribbon/Badge Styles */
.ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--hot);
  color: white;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: var(--shadow-md);
}

.corner-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gradient-gold);
  color: white;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0 0 var(--radius-md) 0;
}

/* Jackpot Counter */
.jackpot-counter {
  background: var(--gradient-gold);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.jackpot-counter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

.jackpot-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
  opacity: 0.9;
}

.jackpot-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  animation: pulse-glow 2s ease-in-out infinite;
}

.jackpot-casino {
  font-size: 16px;
  margin-top: var(--space-md);
  opacity: 0.9;
}

/* Winners Ticker */
.winners-ticker {
  background: var(--black);
  color: white;
  padding: var(--space-md) 0;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  gap: var(--space-2xl);
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  white-space: nowrap;
}

.ticker-avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.ticker-amount {
  color: #4caf50;
  font-weight: 700;
}

/* Brand Logos Section */
.brands-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-secondary);
}

.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-logo {
  width: 120px;
  height: 60px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gray);
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Text-based Brand Logos */
.brand-logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  opacity: 0.85;
}

.brand-logo-text:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.brand-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.comparison-table-wrapper::-webkit-scrollbar {
  display: none;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-border);
}

.comparison-table thead {
  background: var(--primary);
  color: white;
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
}

.comparison-table th {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table tbody tr {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s ease;
}

.comparison-table tbody td:first-child {
  border-left: 1px solid var(--border-light);
}

.comparison-table tbody td:last-child {
  border-right: 1px solid var(--border-light);
}

.comparison-table tbody tr:hover {
  background: var(--primary-light);
}

.comparison-table .casino-cell {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.comparison-table .casino-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  overflow: hidden;
}

.comparison-table .casino-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.check-icon {
  color: var(--success);
  font-size: 18px;
}

.cross-icon {
  color: var(--danger);
  font-size: 18px;
}

/* Quick Facts Box */
.quick-facts {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border-left: 4px solid var(--primary);
}

.quick-facts-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.quick-facts ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.quick-facts li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  color: var(--text-secondary);
}

.quick-facts li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
}

/* Progress Bar */
.progress-bar {
  background: var(--gray-lighter);
  border-radius: var(--radius-full);
  height: 8px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  transition: width 0.5s ease;
}

/* Rating Breakdown */
.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.rating-row-label {
  width: 100px;
  font-size: 13px;
  color: var(--text-secondary);
}

.rating-row-bar {
  flex: 1;
  height: 8px;
  background: var(--gray-lighter);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.rating-row-fill {
  height: 100%;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.rating-row-value {
  width: 40px;
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Pros & Cons Box */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.pros-box,
.cons-box {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

.pros-box {
  background: var(--success-light);
  border: 1px solid rgba(0, 138, 5, 0.2);
}

.cons-box {
  background: var(--danger-light);
  border: 1px solid rgba(193, 53, 21, 0.2);
}

.pros-box h4,
.cons-box h4 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 16px;
}

.pros-box h4 { color: var(--success); }
.cons-box h4 { color: var(--danger); }

.pros-box ul,
.cons-box ul {
  list-style: none;
}

.pros-box li,
.cons-box li {
  padding: var(--space-xs) 0;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.pros-box li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
}

.cons-box li::before {
  content: '✗';
  color: var(--danger);
  font-weight: bold;
}

/* Award Badge */
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--gradient-gold);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(245, 175, 25, 0.4);
}

.award-badge-icon {
  animation: sparkle 2s ease-in-out infinite;
}

/* Live Indicator */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 12px;
  font-weight: 600;
  color: var(--danger);
}

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

/* Enhanced Buttons */
.btn-gradient {
  background: var(--gradient-primary);
  border: none;
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-gradient:hover::before {
  left: 100%;
}

.btn-glow {
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.4);
}

.btn-glow:hover {
  box-shadow: 0 6px 25px rgba(26, 115, 232, 0.6);
}

/* Floating Action Buttons */
.fab-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  z-index: 100;
}

.fab-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.fab-container.expanded .fab-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-menu .fab-social {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.fab-container.expanded .fab-menu .fab-social {
  opacity: 1;
  transform: scale(1);
}

.fab-container.expanded .fab-menu .fab-social:nth-child(1) { transition-delay: 0.05s; }
.fab-container.expanded .fab-menu .fab-social:nth-child(2) { transition-delay: 0.1s; }
.fab-container.expanded .fab-menu .fab-social:nth-child(3) { transition-delay: 0.15s; }
.fab-container.expanded .fab-menu .fab-social:nth-child(4) { transition-delay: 0.2s; }
.fab-container.expanded .fab-menu .fab-social:nth-child(5) { transition-delay: 0.25s; }

.fab-toggle {
  background: var(--accent);
  position: relative;
}

.fab-toggle .fab-icon-share,
.fab-toggle .fab-icon-close {
  position: absolute;
  transition: all 0.3s ease;
}

.fab-toggle .fab-icon-close {
  opacity: 0;
  transform: rotate(-90deg);
}

.fab-container.expanded .fab-toggle .fab-icon-share {
  opacity: 0;
  transform: rotate(90deg);
}

.fab-container.expanded .fab-toggle .fab-icon-close {
  opacity: 1;
  transform: rotate(0);
}

.fab-top {
  background: var(--gray-dark);
}

.fab {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.fab-chat {
  background: var(--accent);
}

.fab-social {
  width: 44px;
  height: 44px;
  text-decoration: none;
}

.fab-whatsapp {
  background: #25d366;
}

.fab-telegram {
  background: #0088cc;
}

.fab-facebook {
  background: #1877f2;
}

.fab-twitter {
  background: #000000;
}

.fab-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Count Up Animation */
.count-up {
  font-variant-numeric: tabular-nums;
}

/* Image Overlay Card */
.overlay-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.overlay-card-bg {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
}

.overlay-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  color: white;
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, var(--gray-lighter) 25%, var(--gray-lightest) 50%, var(--gray-lighter) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

.skeleton-text {
  height: 16px;
  margin-bottom: var(--space-sm);
}

.skeleton-title {
  height: 24px;
  width: 60%;
  margin-bottom: var(--space-md);
}

.skeleton-image {
  height: 200px;
  margin-bottom: var(--space-md);
}

/* Tooltip */
.tooltip {
  position: relative;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 10;
}

.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Notification Badge */
.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--danger);
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* Divider with Text */
.divider-text {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.divider-text::before,
.divider-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-text span {
  font-size: 13px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Enhanced Responsive */
@media (max-width: 768px) {
  .jackpot-amount {
    font-size: 32px;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .quick-facts ul {
    grid-template-columns: 1fr;
  }

  .fab-container {
    bottom: 16px;
    right: 16px;
  }

  .fab {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .brands-grid {
    gap: var(--space-md);
  }

  .brand-logo-text {
    padding: 10px 12px;
    gap: 8px;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .brand-name {
    font-size: 11px;
  }
}

/* ============================================
   Game Detail Page - Google Play / App Store Style
   ============================================ */

/* Game Detail Hero */
.game-detail-hero {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.game-detail-hero .container {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: var(--space-xl);
}

.game-detail-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.game-detail-icon {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.game-detail-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.game-detail-info {
  flex: 1;
  min-width: 0;
}

.game-detail-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.game-detail-developer {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  cursor: pointer;
}

.game-detail-developer:hover {
  text-decoration: underline;
}

.game-detail-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.game-detail-rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.rating-stars {
  color: var(--accent);
  font-size: 14px;
}

.rating-score {
  font-weight: 600;
  color: var(--text-primary);
}

.rating-count {
  font-size: 13px;
  color: var(--text-secondary);
}

.game-detail-downloads {
  font-size: 13px;
  color: var(--text-secondary);
}

.game-detail-tags {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.game-tag {
  padding: 6px 12px;
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

.game-detail-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.btn-large {
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  min-width: 160px;
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--accent);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-icon:hover {
  color: var(--accent-dark);
}

.btn-icon svg {
  stroke: currentColor;
  transition: all var(--transition-fast);
}

.btn-icon.active svg {
  fill: var(--accent);
}

.btn-icon.active:hover svg {
  fill: var(--accent-dark);
}

/* Share Menu */
.sgh-share-wrapper {
  position: relative;
  display: inline-block;
}

.sgh-share-menu {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  padding: var(--space-xs);
  min-width: 160px;
  display: none;
  z-index: 10000;
}

.sgh-share-menu.active {
  display: block;
  animation: shareMenuFadeIn 0.15s ease-out;
}

@keyframes shareMenuFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sgh-share-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-dark);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  white-space: nowrap;
}

.sgh-share-item:hover {
  background: var(--gray-lightest);
  color: var(--black);
}

.sgh-share-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.sgh-share-item.twitter svg { color: #000000; }
.sgh-share-item.facebook svg { color: #1877F2; }
.sgh-share-item.whatsapp svg { color: #25D366; }
.sgh-share-item.telegram svg { color: #0088cc; }
.sgh-share-item.copy svg { color: var(--gray); }

/* Game Detail Stats */
.game-detail-stats {
  padding: var(--space-lg) 0;
  background: var(--white);
}

.game-detail-stats .container {
  padding-bottom: var(--space-lg);
}

.game-detail-stats .stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.game-detail-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-lg);
}

.game-detail-stats .stat-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  text-shadow: none;
  letter-spacing: normal;
  line-height: normal;
}

.game-detail-stats .stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 400;
}

.game-detail-stats .stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Game Detail Sections */
.game-detail-section {
  padding: var(--space-xl) 0;
}

.section-title-sm {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

/* Screenshots Carousel */
.screenshots-wrapper {
  position: relative;
  margin: 0 -16px;
  padding: 0 16px;
}

.screenshots-scroll {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-sm);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.screenshots-scroll::-webkit-scrollbar {
  display: none;
}

.screenshot-item {
  flex-shrink: 0;
  width: 220px;
  height: 140px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.screenshot-item span {
  font-size: 48px;
}

.screenshot-item p {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.screenshot-item:hover {
  transform: scale(1.02);
}

/* Screenshot Lightbox Modal */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  z-index: 10;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.lightbox-screenshot {
  width: 400px;
  height: 280px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-icon {
  font-size: 80px;
}

.lightbox-label {
  color: white;
  font-size: 24px;
  font-weight: 600;
}

.lightbox-counter {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

@media (max-width: 576px) {
  .lightbox-screenshot {
    width: 300px;
    height: 200px;
  }

  .lightbox-icon {
    font-size: 56px;
  }

  .lightbox-label {
    font-size: 18px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

/* Bonus Offer Card */
.bonus-offer-card {
  background: var(--accent);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  color: white;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}


.bonus-offer-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-md);
}

.bonus-offer-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: white;
}

.bonus-offer-card > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
}

.bonus-offer-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.bonus-detail-item {
  text-align: center;
  padding: var(--space-md);
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
}

.bonus-detail-label {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-detail-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.bonus-offer-card .btn-primary {
  background: white;
  color: var(--accent);
  border-radius: var(--radius-full);
}

.bonus-offer-card .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

/* About Section */
.about-content {
  max-width: 800px;
}

.about-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.about-expand {
  display: none;
}

.about-expand.expanded {
  display: block;
}

.about-expand h4 {
  font-size: 16px;
  margin: var(--space-lg) 0 var(--space-md);
  color: var(--text-primary);
}

.about-expand ul {
  list-style: none;
  margin-bottom: var(--space-md);
}

.about-expand ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

.about-expand ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 600;
}

.btn-text {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.btn-text:hover {
  text-decoration: underline;
}

/* Reviews Section */
.reviews-summary {
  display: flex;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
}

.reviews-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.big-score {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}

.score-stars {
  font-size: 16px;
  color: var(--accent);
  margin: var(--space-sm) 0;
}

.review-count {
  font-size: 13px;
  color: var(--text-secondary);
}

.reviews-breakdown {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.rating-bar span {
  width: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
}

.bar-track {
  flex: 1;
  height: 10px;
  background: var(--gray-lighter);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: var(--radius-full);
}

/* Review Cards */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.review-card.review-hidden {
  display: none;
}

.reviews-list.expanded .review-card.review-hidden {
  display: block;
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.review-date {
  font-size: 12px;
  color: var(--text-tertiary);
}

.review-rating {
  color: var(--accent);
  font-size: 14px;
}

.review-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.review-helpful {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 13px;
  color: var(--text-tertiary);
}

.btn-text-sm {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 13px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.btn-text-sm:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.btn-block {
  width: 100%;
}

/* Additional Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 12px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

/* Similar Games Wrapper with Navigation */
.similar-games-wrapper {
  position: relative;
  margin: 0 -16px;
  padding: 0 16px;
}

.similar-games-scroll {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: var(--space-sm) 0;
}

.similar-games-scroll::-webkit-scrollbar {
  display: none;
}

/* Similar Games Grid */
.similar-games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
}

.similar-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background-color var(--transition-normal);
  flex-shrink: 0;
  min-width: 120px;
}

.similar-game-card:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.similar-game-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
}

.similar-game-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.similar-game-info h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
  max-width: 100px;
}

.similar-game-rating {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Game Detail Page Responsive */
@media (max-width: 992px) {
  .game-detail-header {
    flex-wrap: wrap;
  }

  .game-detail-actions {
    width: 100%;
    flex-direction: row;
    margin-top: var(--space-md);
  }

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

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

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

@media (max-width: 768px) {
  .game-detail-icon {
    width: 120px;
    height: 120px;
    font-size: 56px;
  }

  .game-detail-title {
    font-size: 22px;
  }

  .game-detail-stats .stats-row {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .game-detail-stats .stat-divider {
    display: none;
  }

  .game-detail-stats .stat-item {
    flex: 1 1 40%;
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
  }

  .reviews-summary {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .reviews-score {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-lg);
  }

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

  .screenshot-item {
    width: 180px;
    height: 120px;
  }

  .screenshot-item span {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .game-detail-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .game-detail-meta {
    justify-content: center;
  }

  .game-detail-tags {
    justify-content: center;
  }

  .game-detail-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
  }

  .game-detail-actions .btn-large {
    width: 100%;
    order: 1;
  }

  .game-detail-actions .sgh-save-btn,
  .game-detail-actions .sgh-share-wrapper,
  .game-detail-actions .btn-icon {
    order: 2;
  }

  .bonus-offer-details {
    grid-template-columns: 1fr 1fr;
  }

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

  .similar-games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .similar-game-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }

.similar-game-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
}

/* ============================================
   Community Q&A - Reddit/Quora Style
   ============================================ */

/* Q&A Grid - Vertical List Layout */
.qa-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Question Card - Horizontal Row */
.qa-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition-normal);
}

.qa-card:hover {
  box-shadow: var(--shadow-lg);
}

/* Vote Section - Reddit Style */
.qa-vote {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  flex-shrink: 0;
  align-self: center;
}

.qa-vote-btn {
  background: none;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  margin-bottom: 2px;
}

.qa-vote-btn:hover {
  color: var(--accent);
  background: var(--accent-light);
}

.qa-vote-btn:active {
  transform: scale(1.15);
}

.qa-vote-btn.voted {
  color: var(--accent);
  background: none;
}

.qa-vote-btn.voted:hover {
  background: var(--accent-light);
}

.qa-vote-count {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  line-height: 1;
}

.qa-vote-count.voted {
  color: var(--accent);
}

.qa-vote-label {
  display: none;
}

.qa-vote-btn.downvote {
  margin-bottom: 0;
  margin-top: 2px;
}

.qa-vote-btn.downvote:hover {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
}

.qa-vote-btn.downvoted {
  color: #6366f1;
  background: none;
}

.qa-vote-btn.downvoted:hover {
  background: rgba(99, 102, 241, 0.1);
}

.qa-vote-count.downvoted {
  color: #6366f1;
}

/* Content Section */
.qa-content {
  flex: 1;
  min-width: 0;
}

.qa-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.qa-title a:hover {
  color: var(--accent);
}

.qa-tags {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.qa-tag {
  background: var(--gray-lightest);
  color: var(--gray-dark);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.qa-excerpt {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.qa-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 13px;
  color: var(--gray);
}

.qa-author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}

/* Answers Badge */
.qa-answers-badge {
  text-align: center;
  min-width: 64px;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  background: var(--gray-lightest);
  flex-shrink: 0;
}

.qa-answers-count {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.qa-answers-label {
  font-size: 11px;
  color: var(--gray);
}

.qa-answers-badge.has-accepted {
  background: var(--success-light);
}

.qa-answers-badge.has-accepted .qa-answers-count {
  color: var(--success);
}

/* Question Card Right Side (Badge + Actions) */
.qa-card-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Question Card Actions (Save/Share) */
.qa-card-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.qa-card-actions .sgh-save-btn,
.qa-card-actions .sgh-share-btn {
  background: none;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.qa-card-actions .sgh-save-btn:hover,
.qa-card-actions .sgh-share-btn:hover {
  color: var(--accent);
  background: var(--accent-light);
}

.qa-card-actions .sgh-save-btn.saved {
  color: var(--accent);
}

.qa-card-actions .sgh-save-btn.saved svg {
  fill: var(--accent);
}

.qa-card-actions .sgh-save-btn svg,
.qa-card-actions .sgh-share-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Blog Card Footer (Read More + Actions) */
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}

/* Blog Card Actions (Save/Share) */
.blog-card-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.blog-card-actions .sgh-save-btn,
.blog-card-actions .sgh-share-btn {
  background: none;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.blog-card-actions .sgh-save-btn:hover,
.blog-card-actions .sgh-share-btn:hover {
  color: var(--accent);
  background: var(--accent-light);
}

.blog-card-actions .sgh-save-btn.saved {
  color: var(--accent);
}

.blog-card-actions .sgh-save-btn.saved svg {
  fill: var(--accent);
}

.blog-card-actions .sgh-share-btn.shared {
  color: var(--accent);
}

.blog-card-actions .sgh-share-btn.shared svg circle {
  fill: var(--accent);
}

.blog-card-actions .sgh-save-btn svg,
.blog-card-actions .sgh-share-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Answer Cards (Detail Pages) */
.answers-section {
  max-width: 800px;
  margin: 0 auto;
}

.answers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.answer-card {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-light);
}

.answer-card:last-child {
  border-bottom: none;
}

.answer-card.expert-answer {
  border-left: 4px solid var(--success);
  background: var(--success-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border-bottom: none;
}

.answer-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.answer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}

.answer-author-info {
  flex: 1;
}

.answer-author-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
}

.answer-timestamp {
  font-size: 13px;
  color: var(--gray);
}

.expert-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--success);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.answer-vote {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.answer-vote-btn {
  background: none;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.answer-vote-btn:hover {
  color: var(--accent);
  background: var(--accent-light);
}

.answer-vote-btn:active {
  transform: scale(1.15);
}

.answer-vote-btn.voted {
  color: var(--accent);
  background: none;
}

.answer-vote-btn.voted:hover {
  background: var(--accent-light);
}

.answer-vote-count {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
}

.answer-vote-count.voted {
  color: var(--accent);
}

.answer-vote-btn.downvote:hover {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
}

.answer-vote-btn.downvoted {
  color: #6366f1;
  background: none;
}

.answer-vote-btn.downvoted:hover {
  background: rgba(99, 102, 241, 0.1);
}

.answer-vote-count.downvoted {
  color: #6366f1;
}

.answer-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.answer-body ul,
.answer-body ol {
  margin: var(--space-md) 0;
  padding-left: 30px;
}

.answer-body li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  list-style: disc;
}

.answer-body ol li {
  list-style: decimal;
}

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

/* Related Questions Grid */
.related-questions {
  padding: 60px 0;
}

.related-questions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.related-questions-grid-wrapper {
  position: relative;
}

.related-question-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition-normal);
}

.related-question-card:hover {
  box-shadow: var(--shadow-lg);
}

.related-question-card .qa-tag {
  margin-bottom: var(--space-sm);
}

.related-question-card h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--space-sm);
}

.related-question-card h3 a:hover {
  color: var(--accent);
}

.related-question-meta {
  display: flex;
  gap: var(--space-md);
  font-size: 13px;
  color: var(--gray);
}

/* Q&A Responsive */
@media (max-width: 768px) {
  .qa-grid {
    align-items: center;
  }

  .qa-card {
    flex-direction: column;
    gap: var(--space-md);
    max-width: 98%;
  }

  .qa-vote {
    flex-direction: row;
    gap: 6px;
  }

  .qa-card-right {
    flex-direction: row;
    align-items: center;
    align-self: flex-start;
    gap: 16px;
  }

  .qa-answers-badge {
    align-self: flex-start;
  }

  .related-questions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .qa-meta {
    flex-wrap: wrap;
  }

  .answers-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
}

/* ============================================
   Mobile Horizontal Scroll for Grid Sections
   ============================================ */
@media (max-width: 768px) {
  /* Testimonials - horizontal scroll */
  .testimonial-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 16px !important;
    padding-right: 16px !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }
  .testimonial-grid .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    flex-shrink: 0;
    display: block !important;
  }

  /* Blog grid - vertical layout */
  .blog-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
  .blog-grid .blog-card {
    max-width: 98%;
    width: 100%;
  }
  .blog-grid .blog-image {
    height: 220px;
  }

  /* Q&A grid - horizontal scroll */
  .qa-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-md);
    padding-bottom: var(--space-sm);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .qa-grid::-webkit-scrollbar {
    display: none;
  }
  .qa-grid .qa-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }

  /* Promo grid - horizontal scroll */
  .promo-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-md);
    padding-bottom: var(--space-sm);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .promo-grid::-webkit-scrollbar {
    display: none;
  }
  .promo-grid .promo-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  /* Bonus grid - horizontal scroll */
  .bonus-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-md);
    padding-bottom: var(--space-sm);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .bonus-grid::-webkit-scrollbar {
    display: none;
  }
  .bonus-grid {
    align-items: flex-start !important;
  }
  .bonus-grid .bonus-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center;
    padding: 20px 16px !important;
    gap: 12px !important;
    height: auto !important;
  }
  .bonus-grid .bonus-icon,
  .bonus-grid .bonus-icon-wrapper {
    margin-bottom: 0 !important;
  }
  .bonus-grid .bonus-content {
    align-items: center;
  }
  .bonus-grid .bonus-details {
    justify-content: center;
  }
  .bonus-grid .bonus-action {
    margin-top: 4px !important;
  }

  /* Games grid - horizontal scroll */
  .games-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-md);
    padding-bottom: var(--space-sm);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .games-grid::-webkit-scrollbar {
    display: none;
  }

  /* Casino grid (All Reviewed Games) - 3 rows × 2 columns per page */
  .games-grid-wrapper .casino-grid {
    display: grid !important;
    grid-template-columns: none !important;
    grid-template-rows: repeat(3, auto) !important;
    grid-auto-flow: column !important;
    grid-auto-columns: calc(50% - 4px) !important;
    gap: 8px !important;
    overflow: visible !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    padding: var(--space-sm) 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .games-grid-wrapper .casino-grid::-webkit-scrollbar {
    display: none;
  }
  .games-grid-wrapper .casino-grid .casino-card:nth-child(6n+1) {
    scroll-snap-align: start;
  }
  .games-grid .game-card {
    flex: 0 0 75%;
    scroll-snap-align: start;
  }

  /* Related questions grid - horizontal scroll */
  .related-questions-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-md);
    padding-bottom: var(--space-sm);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .related-questions-grid::-webkit-scrollbar {
    display: none;
  }
  .related-questions-grid .related-question-card {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* Related articles grid - horizontal scroll (on article detail pages) */
  .related-posts .blog-grid {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-md);
    padding-bottom: var(--space-sm);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .related-posts .blog-grid::-webkit-scrollbar {
    display: none;
  }
  .related-posts .blog-grid .blog-card {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* Latest News & Guides - horizontal scroll (on homepage) */
  .blog-grid-wrapper .blog-grid {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-md);
    padding-bottom: var(--space-sm);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .blog-grid-wrapper .blog-grid::-webkit-scrollbar {
    display: none;
  }
  .blog-grid-wrapper .blog-grid .blog-card {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* Share menu - bottom sheet style */
  .sgh-share-menu {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    border-radius: 24px 24px 0 0 !important;
    padding: var(--space-lg) var(--space-md) var(--space-xl) !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2) !important;
    z-index: 10001 !important;
  }

  .sgh-share-menu.active {
    animation: shareMenuSlideUp 0.3s ease-out;
  }

  .sgh-share-menu::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--gray-light);
    border-radius: 2px;
  }

  .sgh-share-item {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: var(--radius-lg);
  }

  .sgh-share-item svg {
    width: 20px;
    height: 20px;
  }
}

/* Share overlay for mobile bottom sheet */
.sgh-share-overlay {
  display: none;
}

@media (max-width: 768px) {
  .sgh-share-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    display: block;
  }

  .sgh-share-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes shareMenuSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
