:root {
  --bg-primary: #07090e;
  --bg-secondary: #0f1420;
  --bg-card: #121929;

  --accent-gold: #f59e0b;
  --accent-gold-light: #fbbf24;

  --accent-red: #ef4444;
  --accent-green: #10b981;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --border-color: #1e293b;
  --border-gold: rgba(245, 158, 11, 0.35);

  --font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;

  --container-max: 1280px;
  --transition-fast: all 0.18s ease;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.45;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  padding-bottom: calc(65px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img.img-error {
  object-fit: initial !important;
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  touch-action: manipulation;
}

button {
  cursor: pointer;
  user-select: none;
}

ul, ol {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  min-height: 38px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
  transition: var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn:active {
  transform: scale(0.96);
}

.btn--primary {
  background: #f59e0b;
  color: #090d16;
  font-weight: 800;
  border-color: #f59e0b;
}

.btn--primary:hover {
  background: #d97706;
  border-color: #d97706;
  color: #000000;
}

.btn--secondary {
  background: #172033;
  color: #f8fafc;
  border-color: #2e3d56;
}

.btn--secondary:hover {
  background: #1f2b44;
  border-color: #f59e0b;
}

.btn--login {
  background: #151d2c;
  color: #e2e8f0;
  border: 1px solid #334155;
  padding: 0.42rem 0.85rem;
  min-height: 34px;
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 7px;
}

.btn--login:hover {
  background: #1e2b40;
  border-color: #475569;
  color: #ffffff;
}

.btn--login .icon {
  color: #94a3b8;
  transition: var(--transition-fast);
}

.btn--login:hover .icon {
  color: #ffffff;
}

.btn--register {
  background: #f59e0b;
  color: #090d16;
  border: 1px solid #f59e0b;
  padding: 0.42rem 0.95rem;
  min-height: 34px;
  font-size: 0.775rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 7px;
}

.btn--register:hover {
  background: #d97706;
  border-color: #d97706;
  color: #000000;
}

.btn--register .icon {
  color: #090d16;
}

.btn--block {
  width: 100%;
  min-height: 44px;
}

.pulse-btn {
  animation: pulse-soft 2.4s infinite;
}

@keyframes pulse-soft {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.82;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(7, 9, 14, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.top-bar {
  background-color: #04060a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.6875rem;
  padding: 0.3rem 0;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  overflow-x: auto;
  white-space: nowrap;
}

.top-bar__divider {
  color: #1e293b;
  font-size: 0.65rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.6875rem;
  padding: 0.2rem 0.4rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-link:hover,
.contact-link:active {
  background: rgba(255, 255, 255, 0.08);
}

.contact-link--wa { color: #86efac; border-color: rgba(37, 211, 102, 0.25); }
.contact-link--wa:hover { color: #4ade80; border-color: rgba(37, 211, 102, 0.5); }

.contact-link--tg { color: #7dd3fc; border-color: rgba(34, 158, 217, 0.25); }
.contact-link--tg:hover { color: #38bdf8; border-color: rgba(34, 158, 217, 0.5); }

.contact-link--livechat {
  color: var(--accent-gold-light);
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.08);
}
.contact-link--livechat:hover {
  color: #fef08a;
  border-color: rgba(245, 158, 11, 0.6);
}

.contact-svg {
  flex-shrink: 0;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.contact-link:hover .contact-svg {
  transform: scale(1.1);
}

.top-bar__time {
  font-size: 0.625rem;
  color: var(--text-muted);
  font-weight: 600;
  flex-shrink: 0;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: var(--accent-green);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
}

.main-header {
  padding: 0.5rem 0;
}

.main-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.brand-logo__img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .brand-logo__img {
    height: 42px;
    max-width: 190px;
  }
}

.header-auth {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.category-ribbon {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.category-ribbon__list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
  margin: 0;
}

.category-ribbon__list::-webkit-scrollbar {
  display: none;
}

.category-ribbon__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.category-ribbon__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  background: #111726;
  border: 1px solid #1e293b;
  border-radius: var(--radius-sm);
  color: #94a3b8;
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.category-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  color: #64748b;
  transition: var(--transition-fast);
}

.category-icon-box svg {
  width: 18px;
  height: 18px;
}

.category-ribbon__link:hover .category-icon-box,
.category-ribbon__link.active .category-icon-box {
  color: #f59e0b;
}

@media (min-width: 1024px) {
  .category-ribbon__list {
    justify-content: space-between;
  }
  .category-ribbon__item {
    flex: 1;
  }
  .category-ribbon__link {
    width: 100%;
    padding: 0.5rem 0.6rem;
    font-size: 0.75rem;
  }
}

@media (min-width: 1200px) {
  .category-ribbon {
    padding: 0.55rem 0;
  }
  .category-ribbon__list {
    gap: 0.5rem;
  }
  .category-ribbon__link {
    padding: 0.55rem 0.8rem;
    font-size: 0.8125rem;
  }
}

.announcement-bar {
  background: #090d14;
  border-bottom: 1px solid var(--border-color);
  padding: 0.35rem 0;
  font-size: 0.75rem;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.announcement-bar__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #151d2c;
  color: #f59e0b;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  border: 1px solid #29384d;
}

.announcement-badge__icon {
  flex-shrink: 0;
}

.announcement-bar__ticker {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-marquee 28s linear infinite;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.ticker-content:hover,
.ticker-content:active {
  animation-play-state: paused;
}

@keyframes ticker-marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

.hero-section {
  padding: 0.75rem 0 0.5rem;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  --hero-banner-ratio: 1342 / 428;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.22);
  background: #0a0e17;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  user-select: none;
  touch-action: pan-y;
  isolation: isolate;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 72px;
  background: linear-gradient(to top, rgba(7, 9, 14, 0.75) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-slider__track {
  position: relative;
  width: 100%;
  aspect-ratio: var(--hero-banner-ratio);
  background: #0a0e17;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
  background: #0a0e17;
}

.hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
}

.hero-banner__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slider .hero-banner__img.img-error {
  display: none;
}

.hero-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(7, 9, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.hero-slider__btn:hover {
  background: rgba(7, 9, 14, 0.92);
  border-color: rgba(245, 158, 11, 0.55);
  opacity: 1;
  transform: translateY(-50%) scale(1.04);
}

.hero-slider__btn:active {
  background: rgba(7, 9, 14, 1);
  opacity: 1;
  transform: translateY(-50%) scale(0.98);
}

.hero-slider__btn--prev {
  left: 10px;
}

.hero-slider__btn--next {
  right: 10px;
}

@media (min-width: 768px) {
  .hero-slider__btn {
    width: 38px;
    height: 38px;
  }
  .hero-slider__btn--prev {
    left: 14px;
  }
  .hero-slider__btn--next {
    right: 14px;
  }
}

@media (max-width: 767px) {
  .hero-slider__btn {
    width: 30px;
    height: 30px;
    opacity: 0.75;
  }
}

.hero-slider__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(7, 9, 14, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-slider__dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.hero-slider__dot:hover {
  background: rgba(255, 255, 255, 0.65);
}

.hero-slider__dot.active {
  width: 20px;
  background: var(--accent-gold);
}

@media (min-width: 768px) {
  .hero-slider__dots {
    bottom: 14px;
    gap: 8px;
    padding: 6px 12px;
  }

  .hero-slider__dot {
    width: 8px;
    height: 8px;
  }

  .hero-slider__dot.active {
    width: 24px;
  }
}

.hero-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.hero-act-btn {
  width: 100%;
  min-height: 40px;
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .hero-quick-actions {
    display: none;
  }
}

.jackpot-section {
  padding: 0.75rem 0;
}

.jackpot-banner-card {
  position: relative;
  width: 100%;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.jackpot-banner__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: none;
}

.jackpot-overlay {
  position: absolute;
  top: 66%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78%;
  max-width: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.jackpot-display {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.jackpot-display__currency {
  font-size: clamp(0.9rem, 3.2vw, 1.8rem);
  font-weight: 900;
  color: #f59e0b;
  letter-spacing: 0.8px;
}

.jackpot-display__digits {
  display: inline-flex;
  align-items: baseline;
  font-size: clamp(1.35rem, 5.2vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.jackpot-display__digits .highlight {
  color: #fbbf24;
}

.digit-sep {
  color: #e2e8f0;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .jackpot-display__digits {
    letter-spacing: 2.5px;
  }
}

.games-section {
  padding: 0.5rem 0 1rem 0;
}

.sub-section-block {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .games-section {
    padding: 0.75rem 0 1.25rem 0;
  }
  .sub-section-block {
    margin-top: 2.25rem;
    padding-top: 2.25rem;
  }
}

.section-header {
  margin-bottom: 1.15rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.section-title::before,
.section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-gold);
  opacity: 0.5;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 1.45rem;
    gap: 1.15rem;
    max-width: 680px;
  }
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
}

@media (min-width: 1024px) {
  .games-grid {
    gap: 1.15rem;
  }
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
}

@media (min-width: 1024px) {
  .game-card {
    position: relative;
  }
}

.game-card:hover,
.game-card:focus-within {
  border-color: var(--accent-gold);
}

.game-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #080c14;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn--play {
  background: var(--accent-gold);
  color: #000;
  padding: 0.35rem 1rem;
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: var(--radius-full);
  justify-content: center;
}

.btn--demo {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.3rem 0.85rem;
  font-size: 0.6875rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.3);
  justify-content: center;
}

.game-card__info {
  padding: 0.55rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-card__title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .game-card__title {
    font-size: 0.875rem;
  }
}

.rtp-bar {
  margin-top: 0.45rem;
}

.rtp-bar__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.625rem;
  color: var(--text-secondary);
  font-weight: 700;
  margin-bottom: 2px;
}

.rtp-bar__val {
  color: var(--accent-green);
  font-weight: 900;
}

.rtp-bar__meter {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 4px;
  border: none;
  border-radius: var(--radius-full);
  background: #172033;
  overflow: hidden;
}

.rtp-bar__meter::-webkit-meter-bar {
  background: #172033;
  border: none;
  border-radius: var(--radius-full);
  height: 4px;
}

.rtp-bar__meter::-webkit-meter-optimum-value,
.rtp-bar__meter::-webkit-meter-suboptimum-value,
.rtp-bar__meter::-webkit-meter-even-less-good-value {
  background: var(--accent-green);
  border: none;
  border-radius: var(--radius-full);
}

.rtp-bar__meter::-moz-meter-bar {
  background: #172033;
  border: none;
  border-radius: var(--radius-full);
  height: 4px;
}

.rtp-bar__meter::-moz-meter-optimum::-moz-meter-bar {
  background: var(--accent-green);
  border: none;
  border-radius: var(--radius-full);
}

.game-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.game-card__actions .btn--play,
.game-card__actions .btn--demo {
  padding: 0.35rem 0.2rem;
  font-size: 0.625rem;
  font-weight: 800;
  text-align: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

@media (min-width: 1024px) {
  .game-card__actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0;
    background: rgba(7, 9, 14, 0.85);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    padding: 1rem;
    z-index: 3;
  }

  .game-card__actions .btn--play,
  .game-card__actions .btn--demo {
    min-width: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    border-radius: var(--radius-full);
  }

  .game-card:hover .game-card__actions,
  .game-card:focus-within .game-card__actions {
    opacity: 1;
    pointer-events: auto;
  }
}

.providers-grid,
.deposit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .providers-grid,
  .deposit-grid {
    gap: 0.85rem;
  }
}

.provider-card,
.deposit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  text-align: center;
  gap: 0.35rem;
}

.provider-card__icon,
.deposit-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
}

.provider-card__img,
.deposit-card__img {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.provider-card__img {
  max-height: 38px;
}

.deposit-card__img {
  max-height: 36px;
}

.provider-card__name,
.deposit-card__name {
  font-size: 0.6875rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.deposit-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .deposit-summary {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }
}

.summary-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  overflow: hidden;
}

.summary-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.summary-card--speed .summary-card__icon {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.25);
}

.summary-card__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.summary-card__label {
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  line-height: 1.2;
}

.summary-card__value {
  font-size: 0.875rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-top: 3px;
  white-space: nowrap;
}

.summary-card__value.highlight {
  color: var(--accent-gold);
}

@media (min-width: 768px) {
  .summary-card {
    padding: 0.85rem 1rem;
    gap: 0.85rem;
  }
  .summary-card__icon {
    width: 42px;
    height: 42px;
  }
  .summary-card__value {
    font-size: 0.95rem;
  }
}

.article-section {
  padding: 0.5rem 0 1.5rem 0;
}

@media (min-width: 768px) {
  .article-section {
    padding: 0.75rem 0 2rem 0;
  }
}

.article-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.15rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
}

@media (min-width: 768px) {
  .article-box {
    padding: 2rem 2.25rem;
  }
}

.article-box h1 {
  color: var(--accent-gold-light);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.article-box h2 {
  color: var(--accent-gold-light);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .article-box h1 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
  }
  .article-box h2 {
    font-size: 1.05rem;
    margin-top: 1.45rem;
    margin-bottom: 0.85rem;
  }
}

.article-box p {
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.article-box a {
  color: var(--accent-gold-light);
  font-weight: 700;
  transition: var(--transition-fast);
}

.article-box a:hover {
  color: #fef08a;
}

.article-box p:last-child {
  margin-bottom: 0;
}

.site-footer {
  background-color: #04060a;
  border-top: 1px solid var(--border-color);
  padding: 1.25rem 0 1.25rem 0;
  color: var(--text-secondary);
  font-size: 0.75rem;
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1.25rem;
}

.cert-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.75rem 0.35rem 0.45rem;
  border-radius: var(--radius-full);
}

.cert-icon-wrapper {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-badge {
  background: var(--accent-gold);
  color: #000000;
  font-weight: 900;
  font-size: 0.625rem;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  letter-spacing: 0.4px;
  line-height: 1.2;
}

.cert-text {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #cbd5e1;
  white-space: nowrap;
}

.cert-item--warning .cert-icon-wrapper {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.cert-item--warning .cert-badge {
  background: var(--accent-red);
  color: #ffffff;
}

.cert-item--secure .cert-icon-wrapper {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.cert-item--secure .cert-badge {
  background: var(--accent-green);
  color: #ffffff;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transition: var(--transition-fast);
}

.footer-logo:hover {
  transform: translateY(-2px);
}

.footer-logo .brand-logo__img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.copyright-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.2px;
  margin: 0;
}

.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(56px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background-color: #07090e;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 99;
}

@media (min-width: 1024px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #64748b;
  font-size: 0.65rem;
  font-weight: 700;
  flex: 1;
  height: 100%;
  transition: var(--transition-fast);
}

.bottom-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: inherit;
}

.bottom-icon-box svg {
  width: 20px;
  height: 20px;
}

.bottom-item.active,
.bottom-item:hover,
.bottom-item:active {
  color: var(--accent-gold);
}

.floating-left-shortcuts {
  position: fixed;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
}

.shortcut-box {
  background: #090e17;
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
  padding: 5px 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.shortcut-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: #111827;
  border: 1px solid #1f293d;
  border-radius: 6px;
  padding: 6px 3px;
  width: 56px;
  color: #cbd5e1;
  cursor: pointer;
  transition: var(--transition-fast);
  overflow: hidden;
}

.shortcut-item:hover {
  border-color: var(--accent-gold);
  background: #1a233a;
  color: #ffffff;
}

.shortcut-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.shortcut-item__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.shortcut-item__label {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.15;
  text-align: center;
  color: #94a3b8;
  width: 100%;
  word-break: break-word;
}

.shortcut-item:hover .shortcut-item__label {
  color: var(--accent-gold);
}

@media (min-width: 768px) {
  .floating-left-shortcuts {
    left: 10px;
  }
  .shortcut-box {
    padding: 6px 5px;
    gap: 6px;
  }
  .shortcut-item {
    width: 62px;
    padding: 7px 4px;
  }
  .shortcut-item__icon {
    width: 34px;
    height: 34px;
  }
  .shortcut-item__label {
    font-size: 0.55rem;
  }
}

.modal-dialog {
  border: none;
  background: transparent;
  padding: 0;
  margin: auto;
  max-width: 400px;
  width: 92%;
  z-index: 1000;
}

.modal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.modal-dialog__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1;
}

.modal-dialog__content {
  position: relative;
  z-index: 2;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.modal-dialog__close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 1.25rem;
  color: var(--text-muted);
  padding: 4px 8px;
}

.modal-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
  padding-right: 2rem;
}

.modal-tab {
  flex: 1;
  padding: 0.6rem 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  background: transparent;
  transition: var(--transition-fast);
}

.modal-tab.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-group label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-group input,
.form-group select {
  background: #04060a;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
  color: #fff;
  font-size: 0.8125rem;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent-gold);
}

.modal-form-wrapper.hidden {
  display: none;
}

.modal-dialog--chat {
  max-width: 360px;
  width: 95%;
  bottom: calc(65px + env(safe-area-inset-bottom, 0px));
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .modal-dialog--chat {
    margin-right: 20px;
    bottom: 20px;
  }
}

.chat-window {
  position: relative;
  z-index: 2;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  height: 400px;
  overflow: hidden;
}

.chat-window__header {
  background: #080c14;
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.chat-window__agent {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.chat-agent-avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-agent-avatar .status-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  border: 1.5px solid #080c14;
}

.chat-agent-name {
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
}

.chat-agent-status {
  font-size: 0.625rem;
  color: var(--accent-green);
  display: block;
}

.chat-window__messages {
  flex: 1;
  padding: 0.85rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: #04060a;
}

.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
}

.chat-msg--bot { align-self: flex-start; }
.chat-msg--user { align-self: flex-end; }

.chat-bubble {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  line-height: 1.4;
}

.chat-msg--bot .chat-bubble {
  background: #172033;
  color: #f1f5f9;
  border: 1px solid #243147;
  border-bottom-left-radius: 2px;
}

.chat-msg--user .chat-bubble {
  background: var(--accent-gold);
  color: #000;
  font-weight: 700;
  border-bottom-right-radius: 2px;
}

.chat-time {
  font-size: 0.5625rem;
  color: var(--text-muted);
  margin-top: 2px;
  align-self: flex-end;
}

.chat-window__input {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.65rem;
  background: #0f1420;
  border-top: 1px solid var(--border-color);
}

.chat-window__input input {
  flex: 1;
  background: #04060a;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.75rem;
  color: #fff;
  font-size: 0.75rem;
}

.chat-send-btn {
  background: var(--accent-gold);
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promo-section,
.casino-section,
.sportsbook-section,
.arcade-section,
.togel-section,
.poker-section {
  padding: 0.75rem 0 1.25rem 0;
}

.promo-grid,
.casino-grid,
.sportsbook-grid,
.arcade-grid,
.togel-grid,
.poker-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .promo-grid,
  .casino-grid,
  .sportsbook-grid,
  .arcade-grid,
  .togel-grid,
  .poker-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .promo-grid,
  .casino-grid,
  .sportsbook-grid,
  .arcade-grid,
  .togel-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .poker-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
    margin: 0 auto;
    gap: 1.25rem;
  }
}

.promo-card,
.casino-card,
.sportsbook-card,
.arcade-card,
.togel-card,
.poker-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
}

.promo-card:hover,
.casino-card:hover,
.sportsbook-card:hover,
.arcade-card:hover,
.togel-card:hover,
.poker-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.promo-card__media,
.casino-card__media,
.sportsbook-card__media,
.arcade-card__media,
.togel-card__media,
.poker-card__media {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #0d1527 0%, #17233d 50%, #0d1527 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-card__img,
.casino-card__img,
.sportsbook-card__img,
.arcade-card__img,
.togel-card__img,
.poker-card__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-card:hover .promo-card__img,
.casino-card:hover .casino-card__img,
.sportsbook-card:hover .sportsbook-card__img,
.arcade-card:hover .arcade-card__img,
.togel-card:hover .togel-card__img,
.poker-card:hover .poker-card__img {
  transform: scale(1.03);
}

.promo-card__badge,
.casino-card__badge,
.sportsbook-card__badge,
.arcade-card__badge,
.togel-card__badge,
.poker-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-weight: 900;
  font-size: 0.65rem;
  letter-spacing: 0.4px;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.promo-card__badge,
.casino-card__badge {
  background: #f59e0b;
  color: #000;
}

.promo-card__badge--hot,
.casino-card__badge--live {
  background: #ef4444;
  color: #fff;
}

.sportsbook-card__badge {
  background: #3b82f6;
  color: #fff;
}

.arcade-card__badge {
  background: #8b5cf6;
  color: #fff;
}

.togel-card__badge {
  background: #10b981;
  color: #fff;
}

.poker-card__badge {
  background: #e11d48;
  color: #fff;
}

.promo-card__body,
.casino-card__body,
.sportsbook-card__body,
.arcade-card__body,
.togel-card__body,
.poker-card__body {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.promo-card__title,
.casino-card__title,
.sportsbook-card__title,
.arcade-card__title,
.togel-card__title,
.poker-card__title {
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
}

.promo-card__title {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.casino-card__title,
.sportsbook-card__title,
.arcade-card__title,
.togel-card__title,
.poker-card__title {
  font-size: 1rem;
  margin-bottom: 0.65rem;
}

.promo-card__desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.85rem;
  flex-grow: 1;
}

.promo-card__footer,
.casino-card__footer,
.sportsbook-card__footer,
.arcade-card__footer,
.togel-card__footer,
.poker-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.promo-card__period {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
}

.casino-card__status,
.sportsbook-card__status,
.arcade-card__status,
.togel-card__status,
.poker-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  color: var(--accent-green);
  font-weight: 700;
}

.casino-card__status-dot,
.sportsbook-card__status-dot,
.arcade-card__status-dot,
.togel-card__status-dot,
.poker-card__status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  display: inline-block;
}

.promo-card__btn,
.casino-card__btn,
.sportsbook-card__btn,
.arcade-card__btn,
.togel-card__btn,
.poker-card__btn {
  padding: 0.4rem 0.85rem;
  font-size: 0.725rem;
  min-height: 32px;
}
