:root {
  --primary-color: #e8c547;
  --primary-bright: #ffd85c;
  --secondary-color: #c9a227;
  --dark-bg: #121214;
  --darker-bg: #0a0a0c;
  --surface: #18181c;
  --surface-hover: #1f1f24;
  --text-light: #f4f4f5;
  --text-gray: #b4b4bc;
  --text-dark-gray: #71717a;
  --border-color: #2a2a32;
  --gradient-primary: linear-gradient(135deg, #ffd85c 0%, #e8a317 55%, #c78b12 100%);
  --gradient-dark: linear-gradient(160deg, #1c1c22 0%, #0e0e12 100%);
  --gradient-hero-scrim: linear-gradient(
    105deg,
    rgba(6, 6, 10, 0.92) 0%,
    rgba(6, 6, 10, 0.75) 38%,
    rgba(6, 6, 10, 0.35) 62%,
    rgba(6, 6, 10, 0.2) 100%
  );
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 4px 24px rgba(232, 197, 71, 0.22);
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --transition: all 0.25s ease;
  --nav-height: 70px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--darker-bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -40%, rgba(232, 197, 71, 0.08), transparent 55%),
    linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 35%, var(--darker-bg) 100%);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-signup {
  background: var(--gradient-primary);
  color: #111;
  font-weight: 700;
  padding: 10px 22px;
  box-shadow: var(--shadow-gold);
}

.btn-signup:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(232, 197, 71, 0.35);
}

.btn-login {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-color);
  padding: 10px 22px;
}

.btn-login:hover {
  border-color: rgba(232, 197, 71, 0.55);
  color: var(--primary-bright);
  background: rgba(232, 197, 71, 0.06);
}

.bonus-label {
  display: inline-block;
  width: fit-content;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
  background: var(--gradient-primary);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-gold);
}

.btn-cta {
  background: var(--gradient-primary);
  color: #111;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  min-height: 52px;
  border-radius: 999px;
  box-shadow: var(--shadow-gold);
}

.btn-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 197, 71, 0.4);
}

/* Page main column */
main.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--darker-bg);
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-dark-gray);
}

.breadcrumb .separator {
  margin: 0 8px;
}

/* Header */
.header {
  background: var(--darker-bg);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.logo svg {
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.header-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  min-height: 44px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #000;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  min-height: 56px;
}

/* Sticky Navigation */
.sticky-nav {
  background: rgba(10, 10, 12, 0.88);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
  position: sticky;
  top: var(--nav-height);
  z-index: 150;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
}

.sticky-nav.scrolled {
  background: rgba(8, 8, 10, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.sticky-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.sticky-nav .nav-items {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
  background: var(--surface);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.nav-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}

.nav-item:hover {
  color: var(--text-light);
  border-color: rgba(232, 197, 71, 0.35);
  background: var(--surface-hover);
}

.nav-item.active {
  color: #111;
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.nav-item.active svg {
  opacity: 1;
}

.nav-tabs {
  display: flex;
  gap: 30px;
}

.tab-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--border-radius);
  background: var(--gradient-dark);
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.tab-item.active,
.tab-item:hover {
  background: var(--gradient-primary);
  color: #111;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.tab-item svg {
  width: 18px;
  height: 18px;
}

.search-box {
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  gap: 10px;
  min-width: 250px;
}

.search-box svg {
  color: var(--text-dark-gray);
  width: 16px;
  height: 16px;
}

.search-box input {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 14px;
  outline: none;
  width: 100%;
}

.search-box input::placeholder {
  color: var(--text-dark-gray);
}

/* Hero — full-bleed banner */
.hero {
  position: relative;
  min-height: clamp(320px, 52vw, 520px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--gradient-hero-scrim);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 100px) 24px clamp(40px, 6vw, 72px);
  display: flex;
  align-items: center;
}

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

.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #fff4d4 38%, var(--primary-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.55));
}

.hero-subtitle {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(244, 244, 245, 0.88);
  margin-bottom: 28px;
  font-weight: 500;
  line-height: 1.45;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}

.welcome-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: #000;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

/* Games Grid */
.games-grid {
  padding: 48px 0 56px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.games-grid .game-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.games-grid .game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 197, 71, 0.45);
  box-shadow: var(--shadow), 0 0 0 1px rgba(232, 197, 71, 0.12);
}

.games-grid .game-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--darker-bg);
}

.games-grid .game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.games-grid .game-card:hover .game-image img {
  transform: scale(1.06);
}

.games-grid .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.75));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.games-grid .play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: #111;
  background: var(--gradient-primary);
  border-radius: 999px;
  box-shadow: var(--shadow-gold);
  transform: translateY(8px);
  transition: var(--transition);
}

.games-grid .game-card:hover .play-btn {
  transform: translateY(0);
}

.games-grid .play-btn:hover {
  filter: brightness(1.05);
}

.games-grid .game-title {
  padding: 12px 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  line-height: 1.3;
  border-top: 1px solid var(--border-color);
}

@media (hover: none) {
  .games-grid .play-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
  }

  .games-grid .play-btn {
    transform: none;
    padding: 8px 20px;
    font-size: 13px;
  }
}

/* SEO article block */
.seo-content {
  padding: 48px 0 64px;
  border-top: 1px solid var(--border-color);
}

.breadcrumbs {
  font-size: 13px;
  color: var(--text-dark-gray);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.breadcrumbs span:last-child {
  color: var(--text-gray);
}

.seo-content h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, var(--primary-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seo-content h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--text-light);
  padding-left: 16px;
  border-left: 3px solid var(--primary-color);
}

.seo-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--primary-bright);
}

.seo-content p {
  margin-bottom: 16px;
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.75;
  max-width: 72ch;
}

.seo-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.seo-content table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-gray);
}

.seo-content table tr:last-child td {
  border-bottom: none;
}

.seo-content table tr:first-child td {
  background: linear-gradient(135deg, rgba(232, 197, 71, 0.2) 0%, rgba(232, 197, 71, 0.08) 100%);
  color: var(--text-light);
  font-weight: 700;
}

.seo-content table tr:hover td {
  background: rgba(232, 197, 71, 0.06);
}

.seo-content ul,
.seo-content ol {
  margin: 16px 0 16px 24px;
  color: var(--text-gray);
}

.seo-content li {
  margin-bottom: 8px;
}

.seo-content li::marker {
  color: var(--primary-color);
}

/* Payment logos strip */
.payment-methods {
  padding: 40px 0 56px;
  border-top: 1px solid var(--border-color);
}

.section-title {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--text-light);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.payment-methods .payment-item {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  height: 88px;
  transition: var(--transition);
}

.payment-methods .payment-item:hover {
  border-color: rgba(232, 197, 71, 0.4);
  transform: translateY(-2px);
}

.games-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.game-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--darker-bg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
}

.game-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.game-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-provider {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--text-light);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.exclusive-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gradient-primary);
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Providers */
.providers {
  padding: 40px 0;
  background: var(--darker-bg);
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  align-items: center;
}

.provider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 80px;
}

.provider-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.provider-item img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: var(--transition);
}

.provider-item:hover img {
  filter: grayscale(0%) brightness(1);
}

/* Banking */
.banking {
  padding: 60px 0;
  background: var(--dark-bg);
}

.banking-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--text-light);
}

.banking .payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.payment-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--darker-bg);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 80px;
}

.payment-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.payment-item img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

/* Content Section */
.content-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

.content-section article {
  max-width: 900px;
  margin: 0 auto;
}

.content-section h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.content-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 40px 0 20px 0;
  color: var(--text-light);
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
}

.content-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 32px 0 16px 0;
  color: var(--primary-color);
}

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

.content-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--darker-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.content-section table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-gray);
  font-size: 14px;
  word-wrap: break-word;
  max-width: 200px;
}

.content-section table tr:first-child td {
  background: var(--gradient-primary);
  color: #000;
  font-weight: 600;
}

.content-section table tr:hover td {
  background: rgba(255, 215, 0, 0.1);
}

.content-section ul,
.content-section ol {
  margin: 16px 0 16px 24px;
  color: var(--text-gray);
}

.content-section ul li,
.content-section ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.content-section ul li::marker {
  color: var(--primary-color);
}

.content-section ol li::marker {
  color: var(--primary-color);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  border-top: 1px solid var(--border-color);
  padding: 56px 0 28px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  width: 100%;
  text-align: left;
}

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

.footer-heading {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  color: var(--primary-bright);
}

.footer-column a {
  color: var(--text-dark-gray);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--primary-bright);
}

.footer-brand svg {
  filter: drop-shadow(0 4px 12px rgba(232, 197, 71, 0.25));
}

.age-verification {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.footer-logo svg {
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.age-restriction {
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-badge {
  background: #dc2626;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  border: 3px solid white;
}

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

.social-links a {
  color: var(--text-dark-gray);
  transition: var(--transition);
  padding: 8px;
  border-radius: 50%;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.social-links a:hover {
  color: var(--primary-color);
  background: rgba(255, 215, 0, 0.1);
}

.copyright {
  color: var(--text-dark-gray);
  font-size: 14px;
  text-align: center;
  width: 100%;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.chat-widget:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(232, 197, 71, 0.45);
}

.chat-widget svg {
  color: #111;
  width: 28px;
  height: 28px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header-content {
    flex-direction: column;
    gap: 16px;
  }

  .sticky-nav .container {
    flex-direction: column;
    gap: 16px;
  }

  .nav-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .tab-item {
    padding: 10px 16px;
    font-size: 14px;
  }

  .search-box {
    min-width: 100%;
    max-width: 300px;
  }

  .nav-container {
    padding: 12px 16px;
  }

  main.content {
    padding: 0 16px 64px;
  }

  .hero {
    min-height: 300px;
  }

  .hero-inner {
    justify-content: center;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 48px;
  }

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

  .bonus-label {
    margin-left: auto;
    margin-right: auto;
  }

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

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
    padding: 32px 0 40px;
  }

  .games-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .provider-grid,
  .payment-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 16px;
  }

  .provider-item,
  .payment-item {
    height: 70px;
    padding: 16px;
  }

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

  .content-section h1 {
    font-size: 32px;
  }

  .content-section h2 {
    font-size: 24px;
  }

  .content-section h3 {
    font-size: 20px;
  }

  .content-section table {
    font-size: 12px;
  }

  .content-section table td {
    padding: 12px 8px;
    max-width: 150px;
  }

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

  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    text-align: center;
  }

  .chat-widget {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }

  .chat-widget svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

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

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

  .btn-large {
    padding: 14px 28px;
    font-size: 15px;
  }

  .games-container {
    grid-template-columns: 1fr;
  }

  .content-section h1 {
    font-size: 26px;
  }

  .content-section h2 {
    font-size: 22px;
  }

  .content-section table td {
    padding: 8px 6px;
    font-size: 11px;
    max-width: 120px;
  }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Accessibility */
.btn:focus-visible,
.tab-item:focus-visible,
.nav-item:focus-visible,
.search-box:focus-within {
  outline: 2px solid var(--primary-bright);
  outline-offset: 2px;
}

@media (prefers-color-scheme: light) {
  /* Light theme support if needed */
}

/* Loading optimization */
.lazy-load {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy-load.loaded {
  opacity: 1;
}

/* Critical CSS above the fold */
.above-fold {
  contain: layout style;
}

.below-fold {
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}