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

:root {
  --bg-dark: #130022;
  --bg-dark-secondary: #1c0733;
  --bg-card: rgba(12, 3, 30, 0.9);
  --accent-gold: #ffb347;
  --accent-gold-dark: #ff9f1c;
  --accent-purple: #7b5cff;
  --accent-purple-light: #c3b5ff;
  --text-white: #ffffff;
  --text-gray: #d5c9ff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --border-radius: 20px;
  --transition: all 0.25s ease-out;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(ellipse at top, #1c0733 0%, #130022 50%, #0a0015 100%);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19, 0, 34, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--text-white);
}

.main-nav a:hover::after {
  width: 100%;
}

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

.burger-menu {
  display: none;
  position: relative;
  width: 24px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.burger-menu span {
  width: 24px;
  height: 3px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
  position: absolute;
  left: 0;
  transform-origin: center;
}

.burger-menu span:nth-child(1) {
  top: 0;
}

.burger-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-menu span:nth-child(3) {
  bottom: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(255, 179, 71, 0.3);
}

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

.btn-ghost {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--accent-gold);
}

.btn-ghost:hover {
  background: rgba(255, 179, 71, 0.1);
  transform: translateY(-2px);
}

.btn-game {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-dark);
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 179, 71, 0.4);
}

.btn-game:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 179, 71, 0.6);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  padding: 80px 0 40px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url('images/bannermain.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(19, 0, 34, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 32px;
}

.hero-text h1,
.hero-text h3 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-white), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-badges {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-badges li {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.hero-banner {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.promo-slider {
  position: relative;
  width: 100%;
  height: 400px;
}

.promo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.promo-slide.active {
  opacity: 1;
}

.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.promo-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.promo-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.promo-dots .dot.active {
  background: var(--accent-gold);
  width: 24px;
  border-radius: 5px;
}

.hero-footer {
  text-align: center;
  padding-top: 24px;
}

.legal-badge {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Categories Strip */
.categories-strip {
  padding: 24px 0;
  background: rgba(12, 3, 30, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chips-wrapper {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
  flex-wrap: wrap;
}

.chips-wrapper::-webkit-scrollbar {
  display: none;
}

.chip {
  padding: 10px 20px;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text-gray);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  display: inline-block;
}

.chip:hover,
.chip.chip-active {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-dark);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 64px 0;
}

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

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-white), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.section-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 16px;
}

.link-secondary {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.link-secondary:hover {
  text-decoration: underline;
}

/* Games Carousel */
.games-carousel-wrapper {
  position: relative;
  margin-bottom: 48px;
  padding: 0 60px;
}

.games-carousel-container {
  overflow: hidden;
  position: relative;
}

.games-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.game-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  position: relative;
  border: 2px solid transparent;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 179, 71, 0.4);
  border-color: var(--accent-gold);
}

.game-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark-secondary), var(--bg-dark));
}

.game-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover .game-thumb img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

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

.game-overlay .btn-game {
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.game-card:hover .game-overlay .btn-game {
  transform: translateY(0);
}

.game-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(255, 179, 71, 0.5);
}

.game-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-card);
}

.game-info h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-white);
  line-height: 1.3;
}

.game-provider {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  font-weight: 500;
}

/* Carousel Navigation */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 179, 71, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 179, 71, 0.5);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
  left: 0;
}

.carousel-btn-next {
  right: 0;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(255, 179, 71, 0.6);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--accent-gold);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(255, 179, 71, 0.5);
}

.games-subsection {
  margin-top: 64px;
}

.games-subsection .section-header h3 {
  text-align: center;
}

.games-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) transparent;
}

.games-carousel::-webkit-scrollbar {
  height: 6px;
}

.games-carousel::-webkit-scrollbar-track {
  background: transparent;
}

.games-carousel::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 3px;
}

.games-carousel .game-card {
  min-width: 400px;
  flex-shrink: 0;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(123, 92, 255, 0.3);
}

.feature-icon {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-gold);
}

.feature-icon svg {
  width: 48px;
  height: 48px;
}

.hero-badges .icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.hero-badges li {
  display: flex;
  align-items: center;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.7;
}

/* Bonus Section */
.bonus-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.bonus-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist li {
  padding-left: 32px;
  position: relative;
  color: var(--text-gray);
  line-height: 1.7;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.2rem;
}

.bonus-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.bonus-table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.bonus-table-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.bonus-table-wrapper::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 3px;
}

/* Tables */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 3px;
}

.table th,
.table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.table thead th {
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-dark);
  font-weight: 600;
}

.table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.table tbody tr:hover {
  background: rgba(255, 179, 71, 0.1);
}

/* Payments Section */
.payments-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.payment-pill {
  padding: 12px 24px;
  background: var(--bg-card);
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--text-gray);
  font-weight: 500;
  transition: var(--transition);
}

.payment-pill:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.payments-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.payments-tables .table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.payments-tables .table-wrapper h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.payments-tables .table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.payments-tables .table-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.payments-tables .table-wrapper::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 3px;
}

/* Live Section */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.live-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.live-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(123, 92, 255, 0.3);
}

.live-thumb {
  width: 100%;
  padding-top: 60%;
  position: relative;
  overflow: hidden;
}

.live-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-info {
  padding: 24px;
}

.live-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.live-info p {
  color: var(--text-gray);
  margin-bottom: 16px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: var(--transition);
  color: var(--accent-gold);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* SEO Section */
.section-seo {
  background: rgba(12, 3, 30, 0.3);
}

.section-seo .container {
  max-width: 900px;
  margin: 0 auto;
}

.section-seo h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff !important;
  line-height: 1.3;
  text-align: center;
}

.section-seo h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 20px;
  color: #ffb347 !important;
  line-height: 1.4;
  text-align: center;
}

.section-seo h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 20px;
  color: #ffb347 !important;
  line-height: 1.4;
  text-align: center;
}

.section-seo h2:first-of-type {
  margin-top: 32px;
}

.section-seo p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d5c9ff !important;
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-seo td {
  color: #d5c9ff !important;
}

.section-seo .seo-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

.section-seo .table-wrapper {
  margin: 32px 0;
}

.section-seo table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
}

.section-seo th,
.section-seo td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-seo thead th {
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-dark);
  font-weight: 600;
}

.section-seo tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.section-seo .table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.section-seo .table-wrapper table {
  min-width: 100%;
}

@media (max-width: 768px) {
  .section-seo .table-wrapper table {
    min-width: 600px;
  }
}

.section-seo .table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.section-seo .table-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.section-seo .table-wrapper::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 3px;
}

/* Footer */
.site-footer {
  background: rgba(10, 0, 21, 0.8);
  padding: 48px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--accent-gold);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Menu */
@media (max-width: 1023px) {
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(19, 0, 34, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }

  body.nav-open .main-nav {
    transform: translateX(0);
  }

  .burger-menu {
    display: flex;
  }

  .burger-menu.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
  }

  .burger-menu.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-text h1,
  .hero-text h3 {
    font-size: 2rem;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .promo-slider {
    height: 300px;
  }

  .section {
    padding: 48px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header h3 {
    font-size: 1.5rem;
  }

  .games-carousel-wrapper {
    padding: 0 50px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }

  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }

  .game-card {
    min-width: 200px;
    max-width: 200px;
  }

  .games-carousel .game-card {
    min-width: 200px;
  }

  .carousel-dots {
    margin-top: 24px;
    gap: 8px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  .carousel-dot.active {
    width: 24px;
  }

  .section-seo h1 {
    font-size: 2rem;
  }

  .section-seo h2 {
    font-size: 1.7rem;
    margin-top: 32px;
  }

  .section-seo h3 {
    font-size: 1.4rem;
  }

  .section-seo p {
    font-size: 1rem;
    text-align: center;
  }

  .section-seo .seo-divider {
    margin: 32px 0;
  }

  /* Mobile adaptation for all tables - everything should fit */
  .table-wrapper {
    margin: 0;
    padding: 0;
    overflow-x: visible;
  }

  .table {
    font-size: 0.6rem;
    width: 100% !important;
    min-width: auto !important;
    max-width: 100%;
    table-layout: fixed;
  }

  .table th,
  .table td {
    padding: 6px 4px;
    font-size: 0.6rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
  }

  .table th {
    font-size: 0.65rem;
    padding: 8px 4px;
  }

  /* For tables in SEO section */
  .section-seo .table-wrapper {
    overflow-x: visible;
  }

  .section-seo table {
    font-size: 0.6rem;
    width: 100% !important;
    min-width: auto !important;
    max-width: 100%;
    table-layout: fixed;
  }

  .section-seo th,
  .section-seo td {
    padding: 6px 4px;
    font-size: 0.6rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
  }

  .section-seo th {
    font-size: 0.65rem;
    padding: 8px 4px;
  }

  /* For tables with 2 columns */
  .table:has(th:nth-child(2):last-child) th,
  .table:has(th:nth-child(2):last-child) td {
    width: 50%;
  }

  /* For tables with 3 columns */
  .table:has(th:nth-child(3):last-child) th,
  .table:has(th:nth-child(3):last-child) td {
    width: 33.33%;
  }

  /* For tables with 4 columns */
  .table:has(th:nth-child(4):last-child) th,
  .table:has(th:nth-child(4):last-child) td {
    width: 25%;
  }

  /* For tables with 5 columns */
  .table:has(th:nth-child(5):last-child) th,
  .table:has(th:nth-child(5):last-child) td {
    width: 20%;
    font-size: 0.55rem;
  }

  .table:has(th:nth-child(5):last-child) th {
    font-size: 0.6rem;
  }

  .bonus-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .header-actions {
    display: none;
  }

  .header-actions.mobile-visible {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 24px;
  }

  .header-actions.mobile-visible .btn {
    width: 100%;
  }

  /* Fixed buttons at the bottom on mobile */
  .mobile-fixed-actions {
    display: flex;
    gap: 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: rgba(19, 0, 34, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.5);
    z-index: 99;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-fixed-actions .btn {
    flex: 1;
    width: auto;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  /* Add bottom padding for content so it's not overlapped by buttons */
  .site-footer {
    margin-bottom: 80px;
  }
}

@media (min-width: 769px) {
  .mobile-fixed-actions {
    display: none !important;
  }

  .site-footer {
    margin-bottom: 0;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .games-carousel-wrapper {
    padding: 0 55px;
  }

  .game-card {
    min-width: 260px;
    max-width: 260px;
  }
}

@media (min-width: 1024px) {
  .games-carousel-wrapper {
    padding: 0 60px;
  }

  .game-card {
    min-width: 280px;
    max-width: 280px;
  }
}

