:root {
  --bg0: #0a0a0f;
  --bg1: #12121a;
  --bg2: #1a1a24;
  --card: #1e1e2e;
  --stroke: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --accent-orange: #ff6b35;
  --accent-gold: #ffd700;
  --accent-blue: #4a9eff;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --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;
}

.skip-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);
}

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

.layout {
  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) {
  .layout {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
    max-width: 100%;
  }
}

.sidebar {
  position: sticky;
  top: 24px;
  height: fit-content;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: linear-gradient(135deg, rgba(30, 30, 46, 0.98) 0%, rgba(26, 26, 36, 0.98) 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
}

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

.sidebar__brand {
  margin-bottom: 24px;
}

.sidebar__logo {
  display: block;
  width: 100%;
  height: auto;
}

.welcome-pack {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, #4a9eff 0%, #3a7fcc 100%);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  margin-bottom: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(74, 158, 255, 0.3);
}

.welcome-pack:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.welcome-pack__icon {
  width: 24px;
  height: 24px;
  background: var(--accent-gold);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

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

.welcome-pack__title {
  font-weight: 600;
  font-size: 14px;
}

.welcome-pack__subtitle {
  font-size: 12px;
  opacity: 0.9;
}

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

.side-nav__link {
  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;
}

.side-nav__link:hover {
  background: var(--bg2);
  color: var(--text);
}

.side-nav__link.is-active {
  background: rgba(74, 158, 255, 0.15);
  color: var(--accent-blue);
  border-left: 3px solid var(--accent-blue);
  font-weight: 600;
}

.popular-list {
  margin-bottom: 24px;
}

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

.popular-list__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-game {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg2);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s;
}

.mini-game:hover {
  background: var(--card);
}

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

.mini-game__meta {
  flex: 1;
  min-width: 0;
}

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

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

.mini-game__play {
  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;
}

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

.side-actions__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;
}

.side-actions__link:hover {
  background: var(--bg2);
  color: var(--text);
}

.lang-select {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: var(--bg2);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-select:hover {
  background: var(--card);
}

.lang-select__flag {
  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;
}

.lang-select__chev {
  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;
}

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

.topbar-mobile {
  display: none;
}

@media (max-width: 860px) {
  .topbar-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(18, 18, 26, 0.98) 0%, rgba(26, 26, 36, 0.98) 100%);
    border-bottom: 1px solid var(--stroke);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
  }
  
  .topbar-mobile__logo {
    height: 28px;
    width: auto;
    object-fit: contain;
  }
  
  .topbar-mobile__btn {
    padding: 8px 16px;
    font-size: 12px;
    white-space: nowrap;
  }
}

.topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(18, 18, 26, 0.95) 0%, rgba(26, 26, 36, 0.95) 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  height: var(--topbar-height);
  backdrop-filter: blur(8px);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 860px) {
  .topbar {
    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 {
    flex: 1;
    min-width: 0;
  }
  
  .search__input {
    font-size: 13px;
    padding: 8px 12px;
  }
  
  .burger {
    margin-left: 8px;
    flex-shrink: 0;
  }
}

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

.search__input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
}

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

.search__input:focus {
  outline: none;
  border-color: var(--accent-blue);
}

.topbar__actions {
  display: flex;
  gap: 12px;
}

.topbar__actions--sticky {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  gap: 12px;
  flex-direction: row;
  align-items: center;
  background: linear-gradient(135deg, rgba(18, 18, 26, 0.98) 0%, rgba(26, 26, 36, 0.98) 100%);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.topbar__actions--sticky.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.topbar__actions--sticky:not(.is-hidden) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

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

@media (max-width: 860px) {
  .topbar__actions {
    display: none;
  }
  
  .topbar__actions--sticky {
    display: none !important;
  }
}

.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;
}

.btn--primary {
  background: var(--accent-orange);
  color: var(--text);
}

.btn--primary:hover {
  background: #ff5722;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--stroke);
}

.btn--ghost:hover {
  background: var(--bg2);
  border-color: var(--accent-blue);
}

.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);
}

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

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

.burger {
  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) {
  .burger {
    display: flex;
  }
}

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

.burger[aria-expanded="true"] .burger__line {
  opacity: 0;
  transform: scale(0);
}

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

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

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

.hero__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.hero__media {
  display: block;
  width: 100%;
  height: auto;
}

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

.hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 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) {
  .hero {
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  
  .hero__card {
    border-radius: 0;
    max-width: 100%;
    margin: 0;
    width: 100%;
    position: relative;
    box-shadow: none;
  }
  
  .hero__img {
    max-height: none;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  .hero__overlay {
    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%);
  }
  
  .hero__cta {
    width: calc(100% - 32px);
    max-width: 280px;
    margin: 0 auto 6px;
    display: block;
  }
  
  .hero__cta img {
    width: 100%;
    height: auto;
  }
  
  .hero__payments {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 6px 0;
  }
  
  .hero__payments img {
    max-width: 100%;
    height: 30px;
    object-fit: contain;
  }
  
  .hero__note {
    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 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));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 60px rgba(74, 158, 255, 0.7)) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.6));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__cta {
    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));
  }
}

.hero__cta {
  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;
}

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

.hero__cta:active {
  transform: translateY(0);
  opacity: 0.9;
}

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

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

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

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

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

.highlights {
  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;
}

.highlights__wrapper {
  display: contents;
}

@media (max-width: 860px) {
  .highlights {
    display: block;
    padding: 0;
    margin-bottom: 32px;
    max-width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .highlights__wrapper {
    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;
  }
}

.highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  width: 100%;
  transition: transform 0.3s ease;
}

@media (max-width: 860px) {
  .highlight {
    flex-shrink: 0 !important;
    width: 33.333% !important;
    min-width: 33.333% !important;
    max-width: 33.333% !important;
    padding: 20px 16px;
    gap: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 30, 46, 0.95) 0%, rgba(26, 26, 36, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
  }
  
  .highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    pointer-events: none;
    opacity: 0.6;
    z-index: 0;
  }
  
  .highlight__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    position: relative;
    z-index: 1;
    align-items: center;
  }
}

.highlight__text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

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

.highlight__img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .highlight__img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    align-self: center;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  }
}

.highlights__nav {
  display: none;
}

@media (max-width: 860px) {
  .highlights__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    padding: 0 16px;
  }
  
  .highlights__nav-btn {
    width: 40px;
    height: 40px;
    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;
    transition: all 0.2s;
    position: relative;
    z-index: 10;
  }
  
  .highlights__nav-btn:hover:not(:disabled) {
    background: var(--card);
    border-color: var(--accent-blue);
    transform: scale(1.1);
  }
  
  .highlights__nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
  
  .highlights__nav-btn::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-top: none;
    border-right: none;
  }
  
  .highlights__nav-btn[data-highlights-prev]::before {
    transform: rotate(45deg);
    margin-left: 2px;
  }
  
  .highlights__nav-btn[data-highlights-next]::before {
    transform: rotate(-135deg);
    margin-right: 2px;
  }
  
  .highlights__dots {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  
  .highlights__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    background: var(--text-muted);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .highlights__dot.is-active {
    background: var(--accent-orange);
    width: 24px;
    border-radius: 4px;
  }
  
  .highlights__dot:hover {
    background: var(--accent-blue);
  }
}

.section {
  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) {
  .section {
    margin-bottom: 24px;
    padding: 0 16px;
    max-width: 100%;
    width: 100%;
  }
  
  .section--carousel {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    width: 100%;
  }
  
  .section--carousel .section__head {
    padding: 0 16px;
    margin-left: 0;
    margin-right: 0;
  }
}

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

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

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

.section__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);
}

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

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

.icon-btn {
  width: 40px;
  height: 40px;
  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;
  transition: all 0.2s;
  z-index: 10;
  position: relative;
  pointer-events: auto;
}

.icon-btn:hover:not(:disabled) {
  background: var(--card);
  border-color: var(--accent-blue);
}

.icon-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

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

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

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

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

@media (max-width: 860px) {
  .section--carousel .carousel {
    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;
  }
  
  .section--carousel .carousel::-webkit-scrollbar {
    display: none;
  }
  
  .section--carousel .carousel__track {
    transition: none;
    display: flex;
    gap: 12px;
    padding-left: 16px;
    padding-right: 0;
    width: max-content;
  }
  
  .section--carousel .carousel__track::after {
    content: '';
    flex-shrink: 0;
    width: 0;
    height: 1px;
  }
}

.game-card,
.sport-card,
.live-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-card {
  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) {
  .game-card,
  .sport-card,
  .live-card {
    width: 150px;
    min-width: 150px;
  }
  
  .collection-card {
    width: 260px;
    min-width: 260px;
  }
}

@media (min-width: 861px) {
  .game-card:hover,
  .sport-card:hover,
  .live-card:hover,
  .collection-card:hover {
    transform: translateY(-4px);
  }
}

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

.collection-card 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) {
  .game-card img,
  .sport-card img,
  .live-card img {
    height: 200px;
  }
  
  .collection-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
}

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

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

.live-card--active {
  position: relative;
}

.live-card--active::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.8;
}

.live-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 107, 53, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.5);
}

.live-card__play::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 card styles are defined above */

.collection-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: var(--accent-orange);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  z-index: 1;
}

.promos {
  padding: 32px;
  background: var(--card);
  border-radius: var(--radius-md);
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

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

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

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

.promo-card {
  padding: 24px;
  background: var(--bg2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 100%;
  text-align: center;
}

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

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

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

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

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

.accordion__item {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion__trigger {
  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;
}

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

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

.accordion__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;
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(180deg);
}

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

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

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

.footer {
  margin-top: 64px;
  padding-top: 48px;
  padding-left: 24px;
  padding-right: 24px;
  border-top: 1px solid var(--stroke);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

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

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

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

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

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

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

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

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  margin-bottom: 16px;
}

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

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

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

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

.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) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 20px;
  }
}

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

.rg::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;
}

.bottom-click {
  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) {
  .bottom-click {
    display: block;
  }
}

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

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

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

.drawer__backdrop {
  display: none;
}

.drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--bg1);
  border-right: 1px solid var(--stroke);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  -webkit-overflow-scrolling: touch;
  backdrop-filter: none;
}

.drawer[aria-hidden="false"] .drawer__panel {
  transform: translateX(0);
}

.drawer__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;
}

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

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

.drawer__content {
  padding: 24px;
  padding-top: 64px;
}

.drawer__brand {
  margin-bottom: 24px;
}

.drawer__logo {
  width: 100%;
  height: auto;
}

@media (max-width: 860px) {
  .main {
    padding-bottom: calc(var(--bottom-nav-height) + 16px);
  }
  
  .content {
    padding: 0;
    padding-top: 120px; /* 60px (topbar-mobile) + 60px (topbar) */
  }
  
  .section {
    padding: 0 16px;
    margin-bottom: 32px;
  }
  
  .section__head {
    margin-bottom: 16px;
    gap: 12px;
  }
  
  .section__title {
    font-size: 20px;
  }
  
  .hero {
    margin-bottom: 24px;
  }
  
  .hero__card {
    border-radius: 0;
    margin: 0 -16px;
    width: calc(100% + 32px);
  }
  
  .highlights {
    padding: 0;
  }
  
  .carousel {
    margin: 0 -16px;
    padding: 0 16px;
  }
  
  .carousel__track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .carousel__track::-webkit-scrollbar {
    display: none;
  }
  
  .game-card,
  .sport-card,
  .live-card {
    scroll-snap-align: start;
    min-width: 180px;
    width: 180px;
  }
  
  .game-card img,
  .sport-card img,
  .live-card img {
    height: 240px;
  }
  
  .collection-card {
    scroll-snap-align: start;
    min-width: 260px;
    width: 260px;
  }
  
  .topbar {
    margin-bottom: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }
  
  .search {
    max-width: none;
    flex: 1;
  }
  
  .search__input {
    font-size: 14px;
    padding: 10px 14px;
  }
}

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

.seo-section__content {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

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

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

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

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

.seo-section__responsible {
  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-section__responsible strong {
  color: var(--accent-orange);
}

.seo-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: var(--bg2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.seo-table thead {
  background: var(--bg1);
}

.seo-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  border-bottom: 2px solid var(--stroke);
}

.seo-table td {
  padding: 16px;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--stroke);
}

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

.seo-table tbody tr:hover {
  background: rgba(74, 158, 255, 0.05);
}

.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-section {
    margin: 32px 0;
    padding: 0 16px;
  }
  
  .seo-section__content {
    padding: 24px;
  }
  
  .seo-section h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .seo-section h2 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
  }
  
  .seo-section h3 {
    font-size: 16px;
  }
  
  .seo-section p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .seo-table {
    font-size: 12px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .seo-table thead {
    display: none;
  }
  
  .seo-table tbody {
    display: block;
  }
  
  .seo-table tr {
    display: block;
    margin-bottom: 16px;
    background: var(--bg2);
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 1px solid var(--stroke);
  }
  
  .seo-table td {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--stroke);
    text-align: left;
  }
  
  .seo-table td:first-child {
    font-weight: 600;
    color: var(--text);
    font-size: 13px;
  }
  
  .seo-table td:last-child {
    border-bottom: none;
  }
}

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