:root {
  --bg0: #0c0d14;
  --bg1: #151722;
  --bg2: #1d1f2a;
  --card: #252836;
  --stroke: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.68);
  --accent-orange: #ff7a4d;
  --accent-gold: #ffc947;
  --accent-blue: #5dade2;
  --accent-purple: #9b59b6;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 3px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.55);
  --glow-orange: 0 0 20px rgba(255, 122, 77, 0.4);
  --glow-blue: 0 0 20px rgba(93, 173, 226, 0.4);
  --glow-purple: 0 0 20px rgba(155, 89, 182, 0.4);
  --sidebar-width: 320px;
  --topbar-height: 80px;
  --bottom-nav-height: 70px;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #000000;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.site-body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #000000;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.accessibility-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 1000;
  padding: 12px 24px;
  background: var(--accent-orange);
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.accessibility-link:focus {
  top: 12px;
}

.container {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  gap: 24px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 24px;
  min-height: 100vh;
  box-sizing: border-box;
}

@media (max-width: 860px) {
  .container {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
    max-width: 100%;
  }
}

.nav-panel {
  position: sticky;
  top: 24px;
  height: fit-content;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: linear-gradient(135deg, rgba(37, 40, 54, 0.75) 0%, rgba(29, 31, 46, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.nav-panel__header {
  margin-bottom: 24px;
}

.nav-panel__logo {
  display: block;
  width: 100%;
  height: auto;
}

.bonus-offer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(93, 173, 226, 0.9) 0%, rgba(155, 89, 182, 0.85) 100%);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  margin-bottom: 24px;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 16px rgba(93, 173, 226, 0.4), var(--glow-blue);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.bonus-offer:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(93, 173, 226, 0.5), var(--glow-blue);
  filter: brightness(1.1);
}

.bonus-offer__icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #ffc107 100%);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255, 201, 71, 0.6);
}

.bonus-offer__icon::before {
  content: '✨';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  line-height: 1;
}

.bonus-offer__title {
  font-weight: 600;
  font-size: 14px;
}

.bonus-offer__subtitle {
  font-size: 12px;
  opacity: 0.9;
}

.main-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.main-nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  font-size: 14px;
}

.main-nav__item:hover {
  background: var(--bg2);
  color: var(--text);
}

.main-nav__item.active {
  background: linear-gradient(90deg, rgba(93, 173, 226, 0.2) 0%, rgba(93, 173, 226, 0.05) 100%);
  color: var(--accent-blue);
  border-left: 3px solid var(--accent-blue);
  font-weight: 600;
  box-shadow: inset 0 0 20px rgba(93, 173, 226, 0.1);
}

.trending-games {
  margin-bottom: 24px;
}

.trending-games__heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.trending-games__container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(29, 31, 46, 0.6);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.game-item:hover {
  background: rgba(37, 40, 54, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 8px rgba(93, 173, 226, 0.2);
}

.game-item__thumbnail {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.game-item__info {
  flex: 1;
  min-width: 0;
}

.game-item__title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-item__studio {
  font-size: 11px;
  color: var(--text-muted);
}

.game-item__action {
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.nav-panel__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.nav-panel__footer-link {
  padding: 12px 16px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  font-size: 14px;
}

.nav-panel__footer-link:hover {
  background: var(--bg2);
  color: var(--text);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: rgba(29, 31, 46, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(8px);
}

.language-switcher:hover {
  background: rgba(37, 40, 54, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.language-switcher__icon {
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cg fill-rule='evenodd' stroke-width='1pt'%3E%3Cpath fill='%23fff' d='M0 0h640v480H0z'/%3E%3Cpath fill='%2300295d' d='M0 0h213.3v480H0z'/%3E%3Cpath fill='%23ed2939' d='M426.7 0H640v480H426.7z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.language-switcher__arrow {
  width: 12px;
  height: 12px;
  margin-left: auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.page-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.mobile-header {
  display: none;
}

@media (max-width: 860px) {
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(21, 23, 34, 0.85) 0%, rgba(29, 31, 46, 0.9) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  }
  
  .mobile-header__logo {
    height: 28px;
    width: auto;
    object-fit: contain;
  }
  
  .mobile-header__button {
    padding: 8px 16px;
    font-size: 12px;
    white-space: nowrap;
  }
}

.page-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(21, 23, 34, 0.7) 0%, rgba(29, 31, 46, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  height: var(--topbar-height);
  backdrop-filter: blur(20px) saturate(180%);
  width: 100%;
  box-sizing: border-box;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (max-width: 860px) {
  .page-header {
    padding: 10px 12px;
    margin-bottom: 0;
    border-radius: 0;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 100;
    height: auto;
    min-height: 60px;
    width: 100%;
    max-width: 100%;
    border-top: 1px solid var(--stroke);
    backdrop-filter: blur(10px);
  }
  
  .search-form {
    flex: 1;
    min-width: 0;
  }
  
  .search-form__field {
    font-size: 13px;
    padding: 8px 12px;
  }
  
  .menu-toggle {
    margin-left: 8px;
    flex-shrink: 0;
  }
}

.search-form {
  flex: 1;
  max-width: 400px;
}

.search-form__field {
  width: 100%;
  padding: 12px 16px;
  background: rgba(29, 31, 46, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}

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

.search-form__field:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(29, 31, 46, 0.8);
  box-shadow: 0 0 12px rgba(93, 173, 226, 0.3);
}

.page-header__controls {
  display: flex;
  gap: 12px;
}

.page-header__controls--fixed {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  gap: 12px;
  flex-direction: row;
  align-items: center;
  background: linear-gradient(135deg, rgba(21, 23, 34, 0.85) 0%, rgba(29, 31, 46, 0.9) 100%);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow-md), 0 0 20px rgba(93, 173, 226, 0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.page-header__controls--fixed.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-header__controls--fixed:not(.hidden) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 861px) {
  .page-header__controls--fixed {
    display: flex;
  }
  
  @media (min-width: 1400px) {
    .page-header__controls--fixed {
      right: calc((100% - 1400px) / 2 + 24px);
    }
  }
}

@media (max-width: 860px) {
  .page-header__controls {
    display: none;
  }
  
  .page-header__controls--fixed {
    display: none !important;
  }
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.action-btn--primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c65 100%);
  color: var(--text);
  box-shadow: 0 4px 12px rgba(255, 122, 77, 0.4), var(--glow-orange);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn--primary:hover {
  background: linear-gradient(135deg, #ff8c65 0%, var(--accent-orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 77, 0.5), var(--glow-orange);
  filter: brightness(1.1);
}

.action-btn--secondary {
  background: rgba(37, 40, 54, 0.6);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.action-btn--secondary:hover {
  background: rgba(93, 173, 226, 0.15);
  border-color: var(--accent-blue);
  box-shadow: 0 0 12px rgba(93, 173, 226, 0.3);
}

.action-btn--hero {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #4a9eff 0%, #3a7fcc 100%);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 4px 16px rgba(74, 158, 255, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.2);
}

.action-btn--hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74, 158, 255, 0.4);
}

.action-btn:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
  z-index: 101;
  position: relative;
  pointer-events: auto;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: flex;
  }
}

.menu-toggle__bar {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar {
  opacity: 0;
  transform: scale(0);
}

.main-content {
  flex: 1;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 860px) {
  .main-content {
    padding-bottom: calc(var(--bottom-nav-height) + 16px);
    width: 100%;
    max-width: 100%;
  }
}

.banner-section {
  margin-bottom: 48px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.banner-section__wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(93, 173, 226, 0.2);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-section__image {
  display: block;
  width: 100%;
  height: auto;
}

.banner-section__img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

.banner-section__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

/* MOBILE ADAPTATION - COMPLETE REDESIGN */
@media (max-width: 860px) {
  .banner-section {
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  
  .banner-section__wrapper {
    border-radius: 0;
    max-width: 100%;
    margin: 0;
    width: 100%;
    position: relative;
    box-shadow: none;
  }
  
  .banner-section__img {
    max-height: none;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  .banner-section__content {
    padding: 16px;
    gap: 10px;
    align-items: center;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
  }
  
  .banner-section__button {
    width: calc(100% - 32px);
    max-width: 280px;
    margin: 0 auto 6px;
    display: block;
  }
  
  .banner-section__button img {
    width: 100%;
    height: auto;
  }
  
  .banner-section__payments {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 6px 0;
  }
  
  .banner-section__payments img {
    max-width: 100%;
    height: 30px;
    object-fit: contain;
  }
  
  .banner-section__disclaimer {
    font-size: 9px;
    line-height: 1.3;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 8px;
  }
}

@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 24px rgba(255, 201, 71, 0.7)) drop-shadow(0 0 48px rgba(93, 173, 226, 0.5)) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 36px rgba(255, 201, 71, 1)) drop-shadow(0 0 72px rgba(93, 173, 226, 0.8)) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.7));
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner-section__button {
    animation: none;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)) drop-shadow(0 0 40px rgba(74, 158, 255, 0.4)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  }
}

.banner-section__button {
  margin-bottom: 8px;
  margin-top: 20px;
  align-self: center;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  animation: glowPulse 2s ease-in-out infinite;
}

.banner-section__button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
  animation: glowPulse 1s ease-in-out infinite;
}

.banner-section__button:active {
  transform: translateY(0);
  opacity: 0.9;
}

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

@media (min-width: 861px) {
  .banner-section__button img {
    max-width: 380px;
    height: auto;
  }
}

.banner-section__payments {
  margin: 8px 0;
  align-self: center;
}

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

.banner-section__disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 500px;
  text-align: center;
  align-self: center;
}

.features-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.features-section__container {
  display: contents;
}

@media (max-width: 860px) {
  .features-section {
    display: block;
    padding: 0;
    margin-bottom: 32px;
    max-width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .features-section__container {
    display: flex !important;
    overflow: visible;
    position: relative;
    width: 300%;
    gap: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(37, 40, 54, 0.75) 0%, rgba(29, 31, 46, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  width: 100%;
  min-height: 320px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
              0 0 0 1px rgba(255, 255, 255, 0.05) inset,
              0 2px 8px rgba(0, 0, 0, 0.2) inset;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(93, 173, 226, 0.08) 0%, 
    rgba(255, 122, 77, 0.06) 50%,
    rgba(147, 51, 234, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(93, 173, 226, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 
              0 0 0 1px rgba(93, 173, 226, 0.2) inset,
              0 0 40px rgba(93, 173, 226, 0.15),
              0 4px 16px rgba(0, 0, 0, 0.3) inset;
}

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

@media (max-width: 860px) {
  .feature-card {
    flex-shrink: 0 !important;
    width: 33.333% !important;
    min-width: 33.333% !important;
    max-width: 33.333% !important;
    padding: 18px 14px;
    min-height: 200px;
    gap: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(37, 40, 54, 0.8) 0%, rgba(29, 31, 46, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    box-sizing: border-box;
    backdrop-filter: blur(16px) saturate(180%);
  }
  
  .feature-card::before {
    opacity: 0.3;
  }
  
  .feature-card:hover {
    transform: translateY(-3px) scale(1.01);
  }
  
  .feature-card__body {
    gap: 16px;
  }
}

.feature-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.feature-card__description {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  max-width: 100%;
  text-align: center;
  letter-spacing: 0.2px;
}

.feature-card__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 8px;
  position: relative;
}

.feature-card__image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(93, 173, 226, 0.4) 50%, 
    transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .feature-card__image-wrapper::after {
  opacity: 1;
}

@media (max-width: 860px) {
  .feature-card__description {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--text);
    margin: 0;
    text-align: center;
    width: 100%;
    letter-spacing: 0.1px;
  }
}

.feature-card__image {
  width: 140px;
  height: 140px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-card__image {
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 12px 32px rgba(93, 173, 226, 0.3)) 
          drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}

@media (max-width: 860px) {
  .feature-card__image {
    width: 110px;
    height: 110px;
    object-fit: contain;
    align-self: center;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
  }
  
  .feature-card:hover .feature-card__image {
    transform: translateY(-2px) scale(1.03);
  }
  
  .feature-card__image-wrapper {
    padding-top: 4px;
  }
  
  .feature-card__image-wrapper::after {
    width: 50%;
    bottom: -12px;
  }
}

.features-section__navigation {
  display: none;
}

@media (max-width: 860px) {
  .features-section__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    padding: 0 16px;
  }
  
  .features-section__nav-button {
    width: 40px;
    height: 40px;
    padding: 0;
    background: rgba(29, 31, 46, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(8px);
  }
  
  .features-section__nav-button:hover:not(:disabled) {
    background: rgba(93, 173, 226, 0.25);
    border-color: var(--accent-blue);
    transform: scale(1.1);
    box-shadow: 0 0 16px rgba(93, 173, 226, 0.5);
  }
  
  .features-section__nav-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
  
  .features-section__nav-button::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-top: none;
    border-right: none;
  }
  
  .features-section__nav-button[data-highlights-prev]::before {
    transform: rotate(45deg);
    margin-left: 2px;
  }
  
  .features-section__nav-button[data-highlights-next]::before {
    transform: rotate(-135deg);
    margin-right: 2px;
  }
  
  .features-section__indicators {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  
  .features-section__indicator {
    width: 8px;
    height: 8px;
    padding: 0;
    background: var(--text-muted);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .features-section__indicator.active {
    background: linear-gradient(90deg, var(--accent-orange) 0%, #ff8c65 100%);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(255, 122, 77, 0.6);
  }
  
  .features-section__indicator:hover {
    background: var(--accent-blue);
    box-shadow: 0 0 8px rgba(93, 173, 226, 0.5);
  }
}

.content-block {
  margin-bottom: 48px;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  box-sizing: border-box;
}

@media (max-width: 860px) {
  .content-block {
    margin-bottom: 24px;
    padding: 0 16px;
    max-width: 100%;
    width: 100%;
  }
  
  .content-block--slider {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    width: 100%;
  }
  
  .content-block--slider .content-block__header {
    padding: 0 16px;
    margin-left: 0;
    margin-right: 0;
  }
}

.content-block__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 860px) {
  .content-block__header {
    margin-bottom: 16px;
    gap: 12px;
  }
  
  .content-block__title {
    font-size: 18px;
  }
  
  .content-block__title::before {
    width: 2px;
    height: 16px;
  }
}

.content-block__title {
  font-size: 24px;
  font-weight: 700;
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.content-block__title::before {
  content: '';
  width: 3px;
  height: 20px;
  background: var(--accent-orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--bg2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.pill:hover {
  background: var(--card);
  border-color: var(--accent-blue);
}

.slider-controls {
  display: flex;
  gap: 8px;
  margin-left: auto;
  z-index: 10;
  position: relative;
}

@media (max-width: 860px) {
  .slider-controls {
    display: none;
  }
}

.slider-controls__button {
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(29, 31, 46, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
  position: relative;
  pointer-events: auto;
  backdrop-filter: blur(8px);
}

.slider-controls__button:hover:not(:disabled) {
  background: rgba(93, 173, 226, 0.2);
  border-color: var(--accent-blue);
  box-shadow: 0 0 12px rgba(93, 173, 226, 0.4);
  transform: scale(1.05);
}

.slider-controls__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slider-controls__button::before {
  content: '';
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-top: none;
  border-right: none;
}

.slider-controls__button[data-carousel-prev]::before {
  transform: rotate(45deg);
}

.slider-controls__button[data-carousel-next]::before {
  transform: rotate(-135deg);
}

.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 861px) {
  .slider {
    overflow: hidden;
  }
}

.slider__container {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
  will-change: transform;
  justify-content: flex-start;
  width: max-content;
}

@media (max-width: 860px) {
  .content-block--slider .slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
  }
  
  .content-block--slider .slider::-webkit-scrollbar {
    display: none;
  }
  
  .content-block--slider .slider__container {
    transition: none;
    display: flex;
    gap: 12px;
    padding-left: 16px;
    padding-right: 0;
    width: max-content;
  }
  
  .content-block--slider .slider__container::after {
    content: '';
    flex-shrink: 0;
    width: 0;
    height: 1px;
  }
}

.slot-card,
.sports-card,
.live-game-card {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s;
  margin: 0;
  box-sizing: border-box;
}

.collection-item {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: block;
  line-height: 0;
}

@media (max-width: 860px) {
  .slot-card,
  .sports-card,
  .live-game-card {
    width: 150px;
    min-width: 150px;
  }
  
  .collection-item {
    width: 260px;
    min-width: 260px;
  }
}

@media (min-width: 861px) {
  .slot-card:hover,
  .sports-card:hover,
  .live-game-card:hover,
  .collection-item:hover {
    transform: translateY(-4px);
    filter: brightness(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 20px rgba(93, 173, 226, 0.3);
  }
}

.slot-card img,
.sports-card img,
.live-game-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: block;
}

.collection-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: block;
  margin: 0;
  padding: 0;
}

@media (max-width: 860px) {
  .slot-card img,
  .sports-card img,
  .live-game-card img {
    height: 200px;
  }
  
  .collection-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
}

.slot-card__title,
.sports-card__title,
.live-game-card__title,
.collection-item__title {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  padding: 0;
  line-height: 1.4;
  display: block;
}

.live-game-card__provider {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  width: 100%;
}

.live-game-card--highlighted {
  position: relative;
}

.live-game-card--highlighted::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold), var(--accent-blue));
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.9;
  filter: blur(8px);
  box-shadow: 0 0 30px rgba(255, 122, 77, 0.6);
}

.live-game-card__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 122, 77, 0.95) 0%, rgba(255, 140, 101, 0.9) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 122, 77, 0.6), 0 0 24px rgba(255, 122, 77, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.live-game-card__play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid var(--text);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

/* Collection item styles are defined above */

.collection-item__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c65 100%);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  z-index: 1;
  box-shadow: 0 2px 8px rgba(255, 122, 77, 0.5), var(--glow-orange);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.promotions-section {
  padding: 32px;
  background: linear-gradient(135deg, rgba(37, 40, 54, 0.7) 0%, rgba(29, 31, 46, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: var(--shadow-md);
}

@media (max-width: 860px) {
  .promotions-section {
    padding: 20px 16px;
    border-radius: var(--radius-md);
    margin: 0 16px;
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }
  
  .promotion-card {
    padding: 16px;
  }
  
  .promotion-card__heading {
    font-size: 18px;
  }
  
  .promotion-card__text {
    font-size: 13px;
  }
}

.promotions-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  justify-items: center;
}

@media (max-width: 860px) {
  .promotions-section__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: stretch;
  }
}

.promotion-card {
  padding: 24px;
  background: linear-gradient(135deg, rgba(37, 40, 54, 0.8) 0%, rgba(29, 31, 46, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 100%;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.promotion-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(93, 173, 226, 0.2);
}

.promotion-card__heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.promotion-card__text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center;
}

.faq-section {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

@media (max-width: 860px) {
  .faq-section {
    max-width: 100%;
    padding: 0 16px;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-list__item {
  background: linear-gradient(135deg, rgba(37, 40, 54, 0.7) 0%, rgba(29, 31, 46, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: box-shadow 0.2s;
}

.faq-list__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.faq-list__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-list__question:hover {
  background: var(--bg2);
}

.faq-list__question:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: -2px;
}

.faq-list__icon {
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-list__question[aria-expanded="true"] .faq-list__icon {
  transform: rotate(180deg);
}

.faq-list__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-list__answer[aria-hidden="false"] {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-list__answer > * {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.site-footer {
  margin-top: 64px;
  padding-top: 48px;
  padding-left: 24px;
  padding-right: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(to top, rgba(13, 14, 21, 0.8) 0%, transparent 100%);
  backdrop-filter: blur(8px);
}

@media (max-width: 860px) {
  .site-footer {
    margin-top: 32px;
    padding-top: 24px;
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
  }
}

.site-footer__banner {
  margin-bottom: 48px;
  text-align: center;
  padding: 0;
  width: 100%;
}

.site-footer__banner img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (min-width: 861px) {
  .site-footer__banner img {
    max-width: 600px;
    max-height: 30px;
    height: auto;
    width: auto;
    object-fit: contain;
  }
}

@media (max-width: 860px) {
  .site-footer__banner {
    margin-bottom: 24px;
    padding: 0;
  }
  
  .site-footer__banner img {
    width: 100%;
    max-width: 100%;
  }
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 32px;
  width: 100%;
}

@media (max-width: 860px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }
  
  .site-footer__brand {
    max-width: 100%;
  }
}

.site-footer__brand {
  max-width: 300px;
}

.site-footer__logo {
  margin-bottom: 16px;
}

.site-footer__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.site-footer__column h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  white-space: nowrap;
}

.site-footer__column a {
  display: block;
  padding: 8px 0;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  white-space: nowrap;
}

.site-footer__column a:hover {
  color: var(--text);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--stroke);
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 860px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 20px;
  }
}

.age-restriction {
  display: flex;
  align-items: center;
  gap: 8px;
}

.age-restriction::before {
  content: '18+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent-orange);
  color: var(--text);
  font-weight: 700;
  border-radius: 50%;
  font-size: 14px;
}

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.bottom-click:hover {
  opacity: 0.9;
}

.bottom-click:active {
  opacity: 0.8;
}

.bottom-click img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 860px) {
  .mobile-cta {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  pointer-events: none;
  display: none;
}

.mobile-menu[aria-hidden="true"] {
  display: none;
  pointer-events: none;
}

.mobile-menu[aria-hidden="false"] {
  display: block;
  pointer-events: auto;
}

.mobile-menu__overlay {
  display: none;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: linear-gradient(135deg, rgba(21, 23, 34, 0.95) 0%, rgba(29, 31, 46, 0.98) 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  -webkit-overflow-scrolling: touch;
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.5);
}

.mobile-menu[aria-hidden="false"] .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: var(--bg2);
  border: 1px solid var(--stroke);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.mobile-menu__close::before,
.mobile-menu__close::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.mobile-menu__close::after {
  transform: rotate(-45deg);
}

.mobile-menu__body {
  padding: 24px;
  padding-top: 64px;
}

.mobile-menu__header {
  margin-bottom: 24px;
}

.mobile-menu__logo {
  width: 100%;
  height: auto;
}

@media (max-width: 860px) {
  .main-content {
    padding-bottom: calc(var(--bottom-nav-height) + 16px);
  }
  
  .page-content {
    padding: 0;
    padding-top: 120px; /* 60px (mobile-header) + 60px (page-header) */
  }
  
  .content-block {
    padding: 0 16px;
    margin-bottom: 32px;
  }
  
  .content-block__header {
    margin-bottom: 16px;
    gap: 12px;
  }
  
  .content-block__title {
    font-size: 20px;
  }
  
  .banner-section {
    margin-bottom: 24px;
  }
  
  .banner-section__wrapper {
    border-radius: 0;
    margin: 0 -16px;
    width: calc(100% + 32px);
  }
  
  .features-section {
    padding: 0;
  }
  
  .slider {
    margin: 0 -16px;
    padding: 0 16px;
  }
  
  .slider__container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .slider__container::-webkit-scrollbar {
    display: none;
  }
  
  .slot-card,
  .sports-card,
  .live-game-card {
    scroll-snap-align: start;
    min-width: 180px;
    width: 180px;
  }
  
  .slot-card img,
  .sports-card img,
  .live-game-card img {
    height: 240px;
  }
  
  .collection-item {
    scroll-snap-align: start;
    min-width: 260px;
    width: 260px;
  }
  
  .page-header {
    margin-bottom: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }
  
  .search-form {
    max-width: none;
    flex: 1;
  }
  
  .search-form__field {
    font-size: 14px;
    padding: 10px 14px;
  }
}

/* SEO Section */
.seo-content {
  max-width: 1200px;
  width: 100%;
  margin: 64px auto 48px;
  padding: 0 24px;
  box-sizing: border-box;
}

.seo-content__wrapper {
  background: linear-gradient(135deg, rgba(37, 40, 54, 0.7) 0%, rgba(29, 31, 46, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px) saturate(180%);
}

.seo-content h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--text);
}

.seo-content h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text);
}

.seo-content h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text);
}

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

.seo-content__warning {
  background: rgba(255, 107, 53, 0.1);
  border-left: 4px solid var(--accent-orange);
  padding: 16px 20px;
  margin: 32px 0;
  border-radius: var(--radius-sm);
}

.seo-content__warning strong {
  color: var(--accent-orange);
}

.seo-content__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 32px 0;
  background: linear-gradient(135deg, rgba(37, 40, 54, 0.8) 0%, rgba(29, 31, 46, 0.9) 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.seo-content__table thead {
  background: linear-gradient(135deg, rgba(93, 173, 226, 0.15) 0%, rgba(155, 89, 182, 0.1) 100%);
  border-bottom: 2px solid rgba(93, 173, 226, 0.3);
}

.seo-content__table th {
  padding: 18px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(93, 173, 226, 0.3);
  position: relative;
}

.seo-content__table th:first-child {
  border-top-left-radius: var(--radius-md);
}

.seo-content__table th:last-child {
  border-top-right-radius: var(--radius-md);
}

.seo-content__table th::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(93, 173, 226, 0.5), transparent);
}

.seo-content__table td {
  padding: 18px 20px;
  font-size: 15px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
  position: relative;
}

.seo-content__table tbody tr {
  transition: all 0.3s ease;
  background: transparent;
}

.seo-content__table tbody tr:last-child td {
  border-bottom: none;
}

.seo-content__table tbody tr:last-child td:first-child {
  border-bottom-left-radius: var(--radius-md);
}

.seo-content__table tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--radius-md);
}

.seo-content__table tbody tr:hover {
  background: linear-gradient(90deg, rgba(93, 173, 226, 0.08) 0%, rgba(93, 173, 226, 0.12) 50%, rgba(93, 173, 226, 0.08) 100%);
  transform: translateX(2px);
  box-shadow: inset 4px 0 0 rgba(93, 173, 226, 0.4);
}

.seo-content__table tbody tr:hover td {
  color: var(--text);
  border-bottom-color: rgba(93, 173, 226, 0.2);
}

.seo-content__table tbody tr:nth-child(even) {
  background: rgba(29, 31, 46, 0.4);
}

.seo-content__table tbody tr:nth-child(even):hover {
  background: linear-gradient(90deg, rgba(93, 173, 226, 0.1) 0%, rgba(93, 173, 226, 0.15) 50%, rgba(93, 173, 226, 0.1) 100%);
}

.seo-faq {
  margin-top: 32px;
}

.seo-faq__item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--stroke);
}

.seo-faq__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.seo-faq__item h3 {
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.seo-faq__item p {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .seo-content {
    margin: 32px 0;
    padding: 0 16px;
  }
  
  .seo-content__wrapper {
    padding: 24px;
  }
  
  .seo-content h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .seo-content h2 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
  }
  
  .seo-content h3 {
    font-size: 16px;
  }
  
  .seo-content p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .seo-content__table {
    font-size: 12px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }
  
  .seo-content__table thead {
    display: none;
  }
  
  .seo-content__table tbody {
    display: block;
  }
  
  .seo-content__table tr {
    display: block;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(37, 40, 54, 0.8) 0%, rgba(29, 31, 46, 0.9) 100%);
    border-radius: var(--radius-md);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .seo-content__table tr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(93, 173, 226, 0.6) 0%, rgba(155, 89, 182, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .seo-content__table tr:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-color: rgba(93, 173, 226, 0.3);
  }
  
  .seo-content__table tr:hover::before {
    opacity: 1;
  }
  
  .seo-content__table td {
    display: block;
    padding: 14px 18px;
    text-align: left;
    position: relative;
    transition: all 0.2s ease;
  }
  
  .seo-content__table td:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .seo-content__table td:first-child {
    font-weight: 700;
    color: var(--text);
    font-size: 14px;
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.12) 0%, rgba(93, 173, 226, 0.06) 100%);
    padding-top: 16px;
    padding-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(93, 173, 226, 0.2);
    position: relative;
  }
  
  .seo-content__table td:first-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(93, 173, 226, 0.4), transparent);
  }
  
  .seo-content__table td:not(:first-child) {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    padding-left: 18px;
    padding-right: 18px;
  }
  
  .seo-content__table td:not(:first-child)::before {
    content: '→';
    display: inline-block;
    margin-right: 8px;
    color: rgba(93, 173, 226, 0.6);
    font-weight: bold;
    transition: all 0.2s ease;
  }
  
  .seo-content__table tr:hover td:not(:first-child)::before {
    color: var(--accent-blue);
    transform: translateX(4px);
  }
  
  .seo-content__table tr:hover td:not(:first-child) {
    color: var(--text);
  }
  
  .seo-content__table td:last-child {
    border-bottom: none;
    padding-bottom: 18px;
  }
  
  .seo-content__table tr:last-child {
    margin-bottom: 0;
  }
}

/* Smooth scroll offset for mobile */
@media (max-width: 860px) {
  html {
    scroll-padding-top: var(--topbar-height);
  }
}
