/* =====================================================
   Lucine86 — 24king.uk-inspired Layout
   Brand Theme: Red · Orange · Black · Gold
   ===================================================== */

:root {
  /* Brand palette (kept from original Lucine86) */
  --c-bg: #0a0a0a;
  --c-bg-soft: #111111;
  --c-bg-card: #1a1010;
  --c-bg-card-2: #221015;
  --c-border: #3a1414;
  --c-border-hot: #7c2d12;

  --c-primary: #ef4444;
  --c-primary-hover: #dc2626;
  --c-primary-dark: #991b1b;
  --c-primary-glow: rgba(220, 38, 38, 0.35);

  --c-accent: #fbbf24;
  --c-accent-2: #f59e0b;
  --c-accent-glow: rgba(251, 191, 36, 0.45);

  --c-text: #f3f4f6;
  --c-text-muted: #9ca3af;
  --c-text-dim: #6b7280;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 14px 40px rgba(0, 0, 0, 0.55), 0 0 22px var(--c-primary-glow);

  --container: 1200px;
  --header-h: 64px;
  --announce-h: 32px;
  --transition: 0.25s ease;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Kanit", sans-serif;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("img/background/photo_2026-05-16_05-26-19.png") center center / cover no-repeat fixed,
    #0a0606;
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.text-purple { color: var(--c-primary); }

/* =====================================================
   PARTICLES (rising glow)
   ===================================================== */
#particles-container {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.particle {
  position: absolute;
  background-color: rgba(251, 191, 36, 0.55);
  border-radius: 50%;
  bottom: -10px;
  animation: floatUp linear infinite;
  box-shadow: 0 0 5px rgba(251, 191, 36, 0.7);
}
@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%, 90% { opacity: 1; }
  100% { transform: translateY(-110vh) translateX(var(--drift, 20px)); opacity: 0; }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  color: #fff;
}
.btn i { font-size: 0.95em; }
.btn:active { transform: translateY(1px); }

.btn--login {
  background: linear-gradient(180deg, #1f1f1f 0%, #0c0c0c 100%);
  border-color: var(--c-accent);
  color: var(--c-accent);
  box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.2),
              0 0 14px rgba(251, 191, 36, 0.2);
}
.btn--login:hover {
  color: #fff;
  background: linear-gradient(180deg, #2a2a2a 0%, #131313 100%);
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.45);
}

.btn--register {
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  border-color: var(--c-primary-hover);
  box-shadow: 0 0 14px var(--c-primary-glow);
}
.btn--register:hover {
  background: linear-gradient(180deg, var(--c-primary-hover) 0%, #7f1d1d 100%);
  box-shadow: 0 0 22px var(--c-primary-glow);
}

.btn--lg  { padding: 13px 28px; font-size: 1rem; }
.btn--block { width: 100%; }

/* =====================================================
   HEADER (24king-style sticky bar)
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: linear-gradient(180deg, rgba(15, 8, 8, 0.96) 0%, rgba(10, 5, 5, 0.92) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 38, 38, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.hamburger-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.35);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}
.hamburger-btn span {
  display: block;
  width: 20px; height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
}
.hamburger-btn:hover {
  background: rgba(220, 38, 38, 0.2);
  border-color: var(--c-accent);
  box-shadow: 0 0 12px var(--c-accent-glow);
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.brand__img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55));
}

.primary-nav {
  display: none;
  align-items: center;
  gap: 24px;
  justify-content: center;
}
.primary-nav__link {
  color: var(--c-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 4px;
  position: relative;
  transition: color var(--transition);
}
.primary-nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.primary-nav__link:hover,
.primary-nav__link.active {
  color: var(--c-accent);
}
.primary-nav__link:hover::after,
.primary-nav__link.active::after { transform: scaleX(1); }

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 992px) {
  .site-header__inner {
    grid-template-columns: auto auto 1fr auto;
    gap: 24px;
  }
  .primary-nav { display: inline-flex; }
}
@media (max-width: 600px) {
  .header-actions .btn span { display: none; }
  .header-actions .btn { padding: 9px 12px; }
  .brand__img { height: 38px; }
}

/* ---- Announcement marquee ---- */
.announce-bar {
  height: var(--announce-h);
  background: linear-gradient(90deg, #2a0a0a 0%, #4a0f0f 50%, #2a0a0a 100%);
  border-top: 1px solid rgba(220, 38, 38, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.announce-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.announce-bar__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-accent);
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.announce-bar__wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.announce-bar__text {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.82rem;
  color: #e7e7e7;
  padding-left: 100%;
  animation: marquee 38s linear infinite;
}
.announce-bar__text strong { color: var(--c-accent); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* =====================================================
   SIDEBAR DRAWER
   ===================================================== */
.sidebar-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1100;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }

.sidebar-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(320px, 88vw);
  z-index: 1101;
  background:
    linear-gradient(180deg, #1a0808 0%, #0a0404 100%);
  border-right: 2px solid var(--c-primary-dark);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.sidebar-drawer.active { transform: translateX(0); }

.sidebar-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}
.sidebar-drawer__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.sidebar-drawer__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(220, 38, 38, 0.5);
  background: rgba(220, 38, 38, 0.1);
  color: var(--c-accent);
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center; justify-content: center;
}
.sidebar-drawer__close:hover { background: rgba(220, 38, 38, 0.2); }

.sidebar-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  flex: 1;
}
.sidebar-drawer__nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: #f3f4f6;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid transparent;
}
.sidebar-drawer__nav a i {
  width: 22px;
  text-align: center;
  color: var(--c-accent);
  font-size: 1rem;
}
.sidebar-drawer__nav a:hover {
  background: rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.3);
}
.sidebar-drawer__nav a.active {
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.35), transparent);
  border-color: var(--c-primary);
  color: #fff;
}

.sidebar-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(220, 38, 38, 0.25);
}
.sidebar-drawer__contact { padding: 0 14px 18px; }
.sidebar-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(6, 199, 85, 0.1);
  border: 1px solid #06c755;
  border-radius: 10px;
  color: #06c755;
  font-weight: 600;
}
.sidebar-line img { width: 28px; height: 28px; object-fit: contain; }
.sidebar-line:hover { background: rgba(6, 199, 85, 0.2); }

body.sidebar-open { overflow: hidden; }

/* =====================================================
   MAIN LAYOUT
   ===================================================== */
.main-wrap {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* =====================================================
   HERO BANNER (swiper-style like 24king)
   ===================================================== */
.hero {
  width: 100%;
}
.hero__viewport {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  background: var(--c-bg-card);
  box-shadow: var(--shadow);
}
.hero__viewport.is-dragging { cursor: grabbing; }

.hero__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}
.hero__slide {
  flex: 0 0 100%;
  width: 100%;
}
.hero__slide-inner {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
}
.hero__slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border: 1px solid rgba(251, 191, 36, 0.4);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 5;
}
.hero__arrow:hover {
  background: var(--c-primary);
  border-color: var(--c-accent);
  box-shadow: 0 0 16px var(--c-primary-glow);
}
.hero__arrow--prev { left: 12px; }
.hero__arrow--next { right: 12px; }

.hero__dots {
  position: absolute;
  bottom: 12px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 4;
}
.hero__dot {
  width: 26px; height: 4px;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.hero__dot.active {
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  box-shadow: 0 0 8px var(--c-accent-glow);
}

@media (max-width: 600px) {
  .hero__arrow { width: 34px; height: 34px; }
}

/* =====================================================
   QUICK ACTIONS (deposit/withdraw/promo/contact)
   ===================================================== */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 14px 8px;
  background: linear-gradient(180deg, var(--c-bg-card) 0%, var(--c-bg-card-2) 100%);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: var(--radius);
  color: var(--c-text);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.quick-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-accent);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.25);
}
.quick-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.25), rgba(251, 191, 36, 0.18));
  color: var(--c-accent);
  font-size: 1.35rem;
  margin-bottom: 4px;
  box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.25);
}
.quick-card__title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}
.quick-card__sub {
  font-size: 0.72rem;
  color: var(--c-text-muted);
}
.quick-card--primary {
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.25), rgba(153, 27, 27, 0.18));
  border-color: var(--c-primary);
}
.quick-card--primary .quick-card__icon {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
}

@media (max-width: 600px) {
  .quick-actions { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .quick-card { padding: 10px 4px; border-radius: 12px; }
  .quick-card__icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .quick-card__title { font-size: 0.78rem; }
  .quick-card__sub { display: none; }
}

/* =====================================================
   JACKPOT WIDGET
   ===================================================== */
.jackpot-wrap { display: flex; justify-content: center; }

.ap-widget {
  width: 100%;
  max-width: 640px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--c-accent);
  box-shadow: 0 12px 36px rgba(220, 38, 38, 0.35);
}
.ap-widget * { box-sizing: border-box; }
.ap-widget .page-container { width: 100%; }

.ap-widget .header-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.ap-widget .stat-box {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  border: 1px solid rgba(251, 191, 36, 0.2);
}
.ap-widget .stat-icon { font-size: 1.1rem; color: var(--c-accent); margin-bottom: 4px; }
.ap-widget .stat-value { color: #fff; font-size: 1.05rem; font-weight: 700; }
.ap-widget .stat-label { color: #f9fafb; font-size: 0.75rem; opacity: 0.9; }
.ap-widget .stat-box:nth-child(1) .stat-icon i { color: #4CAF50; animation: apPulse 1.5s infinite; }
.ap-widget .stat-box:nth-child(2) .stat-icon i { color: var(--c-accent); }
.ap-widget .stat-box:nth-child(3) .stat-icon i { color: #fde68a; }

.ap-widget .jackpot-container {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.ap-widget .jackpot-title {
  text-align: center;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin-bottom: 12px;
}
.ap-widget .jackpot-amount {
  background: linear-gradient(45deg, var(--c-primary-dark), var(--c-primary));
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  position: relative;
  cursor: pointer;
  margin-bottom: 12px;
  overflow: hidden;
  border: 2px solid var(--c-accent);
}
.ap-widget .jackpot-amount::before {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  animation: apShine 2.6s infinite;
}
.ap-widget .amount-label { color: #fff; font-size: 0.95rem; margin-bottom: 4px; opacity: 0.9; }
.ap-widget .amount-value { color: #fff; font-size: 2rem; font-weight: 800; text-shadow: 0 2px 4px rgba(0,0,0,.3); }
.ap-widget .jackpot-info { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.ap-widget .info-item { background: #fff7ed; border-radius: 12px; padding: 12px; text-align: center; }
.ap-widget .info-label { color: var(--c-primary-dark); font-size: 0.85rem; margin-bottom: 4px; font-weight: 600; }
.ap-widget .info-value { color: #1f2937; font-size: 1.2rem; font-weight: 700; }

@keyframes apShine { to { left: 100%; } }
@keyframes apPulse { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }

.ap-widget .coin-container { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ap-widget .coin {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  animation: apCoinAnim 2s ease forwards;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.ap-widget .coin.golden {
  background: linear-gradient(45deg, #FFD700, #DAA520);
  border: 2px solid #fff;
  box-shadow: 0 0 18px rgba(255,215,0,0.6), inset 0 0 10px rgba(255,255,255,0.8);
}
.ap-widget .coin.collect { animation: apCollectCoin 1s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
@keyframes apCoinAnim {
  0% { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0.3); opacity: 0; }
}
@keyframes apCollectCoin {
  0% { transform: translate(var(--sx), var(--sy)) scale(1); opacity: 1; }
  60% { transform: translate(calc(var(--tx)*.7), calc(var(--ty)*.7)) scale(0.8); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0.4); opacity: 0; }
}

@media (max-width: 520px) {
  .ap-widget .amount-value { font-size: 1.6rem; }
  .ap-widget .jackpot-title { font-size: 1.2rem; }
  .ap-widget .stat-value { font-size: 0.95rem; }
}

/* =====================================================
   ZONE TABS (categories)
   ===================================================== */
.zone-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.zone-tabs::-webkit-scrollbar { display: none; }

.zone-tab {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 80px;
  padding: 12px 10px;
  background: linear-gradient(180deg, var(--c-bg-card) 0%, var(--c-bg-card-2) 100%);
  border: 1px solid rgba(220, 38, 38, 0.35);
  border-radius: var(--radius);
  color: var(--c-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  text-align: center;
}
.zone-tab img { width: 40px; height: 40px; object-fit: contain; }
.zone-tab:hover {
  color: #fff;
  border-color: var(--c-accent);
}
.zone-tab.active {
  color: #fff;
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  border-color: var(--c-accent);
  box-shadow: 0 8px 24px var(--c-primary-glow);
}

@media (min-width: 768px) {
  .zone-tabs { gap: 12px; padding: 6px 2px 10px; }
  .zone-tab { min-width: 100px; padding: 14px; font-size: 0.95rem; }
  .zone-tab img { width: 46px; height: 46px; }
}

/* =====================================================
   HIGHWAY (auto-scrolling logos row)
   ===================================================== */
.highway-row {
  overflow: hidden;
  padding: 6px 0;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(220, 38, 38, 0.18);
  border-radius: var(--radius);
}
.highway-slider { overflow: hidden; }
.highway-lane {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: highwayScroll 35s linear infinite;
}
.highway-img {
  width: 130px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
@keyframes highwayScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   GAME LOBBIES (zones)
   ===================================================== */
.lobby-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.zone {
  background: linear-gradient(180deg, rgba(20, 10, 10, 0.7), rgba(10, 5, 5, 0.6));
  border: 1px solid rgba(220, 38, 38, 0.22);
  border-radius: var(--radius);
  padding: 14px;
  scroll-margin-top: calc(var(--header-h) + var(--announce-h) + 16px);
}

.zone__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.zone__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.zone__icon { font-size: 1.3rem; }

.zone__controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.zone__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--c-accent);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  transition: var(--transition);
}
.zone__all:hover {
  background: rgba(251, 191, 36, 0.12);
  border-color: var(--c-accent);
}

.lobby-section__body { position: relative; }

.lobby-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px 2px 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.lobby-scroll::-webkit-scrollbar { display: none; }

.lobby-card,
.lobby-game {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--c-bg-card);
  border: 1px solid rgba(220, 38, 38, 0.18);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.lobby-card { width: 140px; }
.lobby-game { width: 120px; }

.lobby-card:hover,
.lobby-game:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
  box-shadow: 0 10px 28px var(--c-primary-glow);
}

.lobby-card img,
.lobby-game img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.lobby-card__name,
.lobby-game__name {
  display: block;
  padding: 8px 6px;
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  color: var(--c-text);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.scroll-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(251, 191, 36, 0.4);
  background: linear-gradient(180deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.scroll-btn:hover:not(:disabled) {
  border-color: var(--c-accent);
  box-shadow: 0 0 14px var(--c-accent-glow);
}
.scroll-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (min-width: 768px) {
  .lobby-card { width: 168px; }
  .lobby-game { width: 140px; }
  .zone { padding: 18px 20px; }
  .zone__title { font-size: 1.25rem; }
}

@media (max-width: 600px) {
  .zone__head { gap: 8px; }
  .zone__title { font-size: 1rem; }
  .zone__all { display: none; }
  .scroll-btn { width: 30px; height: 30px; }
}

/* =====================================================
   GENERIC BLOCK (promotions, faq, providers, seo)
   ===================================================== */
.block {
  background: linear-gradient(180deg, rgba(20, 10, 10, 0.7), rgba(10, 5, 5, 0.6));
  border: 1px solid rgba(220, 38, 38, 0.22);
  border-radius: var(--radius);
  padding: 22px 18px;
  scroll-margin-top: calc(var(--header-h) + var(--announce-h) + 16px);
}
.block__head { text-align: center; margin-bottom: 18px; }
.block__title {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.block__sub {
  color: var(--c-text-muted);
  font-size: 0.95rem;
}
.block__cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

/* ---- Promotions tiles ---- */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.promo-tile {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  transition: var(--transition);
}
.promo-tile:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(220, 38, 38, 0.25);
}
.promo-tile__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.promo-tile__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.promo-tile:hover .promo-tile__img img { transform: scale(1.06); }

/* ---- Providers ---- */
.providers {
  overflow: hidden;
  padding: 6px 0;
}
.providers__track {
  display: flex;
  gap: 16px;
  animation: providersScroll 32s linear infinite;
  width: max-content;
}
.providers__track:hover { animation-play-state: paused; }
@keyframes providersScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.provider-logo {
  flex-shrink: 0;
  width: clamp(140px, 18vw, 180px);
  height: clamp(72px, 9vw, 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.provider-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(15%);
}
.provider-logo:hover {
  border-color: var(--c-accent);
  box-shadow: 0 0 18px var(--c-primary-glow);
}
.provider-logo:hover img { filter: none; }

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: linear-gradient(180deg, rgba(28, 12, 12, 0.85), rgba(18, 8, 8, 0.85));
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item:hover { border-color: var(--c-accent); }
.faq-item[open] {
  border-color: var(--c-accent);
  box-shadow: 0 0 18px var(--c-primary-glow);
}
.faq-question {
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::before {
  content: "+";
  font-size: 1.3rem;
  font-weight: 700;
  margin-right: 10px;
  color: var(--c-accent);
  width: 22px;
  text-align: center;
  transition: var(--transition);
}
.faq-item[open] .faq-question::before {
  content: "−";
  color: var(--c-primary);
}
.faq-answer {
  padding: 0 18px 18px 50px;
  color: var(--c-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---- SEO Content ---- */
.seo-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, var(--c-bg-card) 0%, var(--c-bg-card-2) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
}
.seo-card__text { flex: 1; }
.seo-card__text h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}
.seo-card__text p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.seo-card__text p:last-child { margin-bottom: 0; }
.seo-card__text h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 24px 0 12px;
}
.seo-card__text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.seo-card__text li {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.seo-card__text li::before {
  content: "•";
  color: var(--c-accent);
  position: absolute;
  left: 4px;
}
.seo-card__text li strong {
  color: #fff;
  font-weight: 500;
}
.seo-card__image-slot {
  width: 100%;
  margin: 24px 0;
  text-align: center;
}
.seo-card__image-slot img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  display: block;
  margin: 0 auto;
}
.seo-card__image {
  flex-shrink: 0;
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-accent);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(251, 191, 36, 0.08));
  padding: 18px;
}
.seo-card__image img { width: 100%; height: auto; object-fit: contain; }

@media (min-width: 900px) {
  .seo-card:not(.seo-card--article) { flex-direction: row; align-items: flex-start; }
  .seo-card__image { max-width: 280px; }
}

/* ---- Bank CTA ---- */
.bank-cta {
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(220, 38, 38, 0.3) 0%, transparent 70%),
    var(--c-bg-soft);
  border: 1px solid var(--c-primary-dark);
  border-radius: var(--radius);
  padding: 30px 18px;
}
.bank-cta h2 {
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.bank-cta p {
  color: var(--c-text-muted);
  font-size: 1rem;
}
.bank-cta img { margin: 18px auto 0; max-width: 100%; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: linear-gradient(180deg, var(--c-bg-soft) 0%, #050202 100%);
  border-top: 1px solid var(--c-border-hot);
  padding: 36px 16px 80px;
  position: relative;
  z-index: 1;
}
.site-footer__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.site-footer__logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}
.site-footer__desc {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  font-size: 0.88rem;
}
.site-footer__nav a {
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.site-footer__nav a:hover { color: var(--c-accent); }
.site-footer__copy {
  color: var(--c-text-dim);
  font-size: 0.8rem;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .site-footer { padding-bottom: 110px; }
  body { padding-bottom: 0; }
}

/* =====================================================
   BOTTOM NAV (mobile only, injected by bottomNav.js)
   ===================================================== */
#account-actions-mobile {
  position: fixed;
  left: 0; bottom: 0;
  z-index: 1100;
  width: 100%;
  display: none;
}
@media (max-width: 767px) {
  #account-actions-mobile { display: block; }
}

#account-actions-mobile .-outer-wrapper {
  display: flex;
  align-items: flex-end;
}
#account-actions-mobile .-left-wrapper,
#account-actions-mobile .-right-wrapper {
  display: flex;
  align-items: flex-end;
  flex: 1;
  z-index: 2;
  height: 66px;
  padding-bottom: 6px;
  background: linear-gradient(180deg, #c90d0c, #360402);
  border-top: 3px solid var(--c-accent);
  transition: filter .2s;
}
#account-actions-mobile .-left-wrapper {
  border-top-left-radius: 10px;
  border-top-right-radius: 22px;
}
#account-actions-mobile .-right-wrapper {
  border-top-right-radius: 10px;
  border-top-left-radius: 22px;
}
#account-actions-mobile .-center-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 4;
  width: 72px; height: 72px;
  margin: 0 8px 14px;
  padding-bottom: 8px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(182deg, var(--c-accent), var(--c-accent-2));
  animation: x-jello-horizontal 3s infinite both;
  box-shadow: 0 0 24px rgba(251, 191, 36, 0.5);
}
@keyframes x-jello-horizontal {
  0% { transform: scaleX(1); }
  5% { transform: scale3d(1.2, .8, 1); }
  10% { transform: scale3d(.85, 1.15, 1); }
  15% { transform: scale3d(1.05, .95, 1); }
  20% { transform: scale3d(.97, 1.02, 1); }
}
#account-actions-mobile .-center-wrapper .-selected {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  height: 100%; width: 100%;
  border-radius: 50%;
}
#account-actions-mobile .-center-wrapper .-selected img {
  width: 74px !important;
  max-width: 74px !important;
  height: auto;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  margin-top: -24px;
}
#account-actions-mobile .-center-wrapper .-selected span {
  position: absolute;
  font-size: 12px;
  bottom: 4px;
  font-weight: 500;
  display: block;
}
#account-actions-mobile .-center-wrapper .-selected span a { color: #fff; text-decoration: none; }

#account-actions-mobile .-fake-center-bg-wrapper {
  position: absolute;
  left: 0; bottom: 0;
  z-index: 1;
  width: 100%; height: 48px;
  overflow: hidden;
}
#account-actions-mobile .-fake-center-bg-wrapper svg {
  position: absolute;
  left: 50%; bottom: 0;
  height: 104px;
  transform: translateX(-50%);
}
#account-actions-mobile .-fake-center-bg-wrapper svg path {
  fill: url(#rectangleGradient);
}
#account-actions-mobile .-item-wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  position: relative;
}
#account-actions-mobile .-item-wrapper .-ic-img img {
  width: 30px;
  height: auto;
  display: block;
  margin: 0 auto;
  padding-bottom: 18px;
  position: relative;
}
#account-actions-mobile .-item-wrapper .-textfooter {
  font-size: 0.78rem;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
#account-actions-mobile .d-block { display: block !important; }
#account-actions-mobile .-item-wrapper .-textfooter a { color: #fff; text-decoration: none; }

#account-actions-mobile .-fully-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, .6);
}

/* =====================================================
   LIGHTBOX / ACTIVITY MODAL (kept from original)
   ===================================================== */
.lucine-lightbox {
  position: fixed !important;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 48px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.lucine-lightbox--open { opacity: 1; visibility: visible; pointer-events: auto; }
.lucine-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: zoom-out;
}
.lucine-lightbox__close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 44px; height: 44px;
  border: none; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center; justify-content: center;
}
.lucine-lightbox__close:hover { background: rgba(255, 255, 255, 0.22); }
.lucine-lightbox__figure {
  position: relative; z-index: 1;
  max-width: min(96vw, 1200px);
  max-height: 90vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lucine-lightbox__image-link { display: block; line-height: 0; }
.lucine-lightbox__image-link--active { cursor: pointer; }
.lucine-lightbox__img {
  max-width: 100%;
  max-height: calc(90vh - 48px);
  width: auto; height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55);
}
.lucine-lightbox__caption {
  color: #e8e8e8;
  font-size: 15px;
  text-align: center;
}
img.lucine-lightbox-trigger { cursor: zoom-in; }

.lucine-activity-modal {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: flex;
  flex-direction: column;
  background: #0f0f12;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.lucine-activity-modal--open { opacity: 1; visibility: visible; pointer-events: auto; }
.lucine-activity-modal__panel {
  position: relative;
  display: flex; flex-direction: column;
  height: 100dvh; max-height: 100vh; width: 100%;
}
.lucine-activity-modal__close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 5;
  width: 44px; height: 44px;
  border: none; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.lucine-activity-modal__close:hover { background: rgba(255, 255, 255, 0.22); }
.lucine-activity-modal__scroll {
  flex: 1; min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 56px 16px 24px;
}
.lucine-activity-modal__image-wrap { text-align: center; margin-bottom: 20px; }
.lucine-activity-modal__image-link { display: inline-block; max-width: 100%; cursor: pointer; }
.lucine-activity-modal__image {
  display: block;
  max-width: 100%;
  max-height: 45vh;
  width: auto; height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.lucine-activity-modal__details {
  margin-bottom: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}
.lucine-activity-modal__details-title {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  text-align: center;
}
.lucine-activity-modal__details-body {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: center;
}
.lucine-activity-modal__form-section {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}
.lucine-activity-modal__form-title,
.lucine-activity-modal__comments-heading {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f3f4f6;
}
.lucine-activity-modal__form { display: flex; flex-direction: column; gap: 12px; }
.lucine-activity-modal__field { display: flex; flex-direction: column; gap: 6px; }
.lucine-activity-modal__field span { font-size: 14px; color: #d1d5db; }
.lucine-activity-modal__field input {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
}
.lucine-activity-modal__field input:focus {
  outline: 2px solid var(--c-primary);
  outline-offset: 1px;
}
.lucine-activity-modal__submit {
  align-self: flex-start;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent-2));
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.lucine-activity-modal__submit:hover:not(:disabled) { filter: brightness(1.08); }
.lucine-activity-modal__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.lucine-activity-modal__form-error { margin: 0; font-size: 14px; color: #fca5a5; }
.lucine-activity-modal__comments-section { padding-bottom: 24px; }
.lucine-activity-modal__comments-list { display: flex; flex-direction: column; gap: 12px; }
.lucine-activity-comment {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
}
.lucine-activity-comment__row {
  display: flex; flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.45;
}
.lucine-activity-comment__row:last-child { margin-bottom: 0; }
.lucine-activity-comment__label {
  color: #9ca3af;
  flex: 0 0 auto;
  min-width: 72px;
}
.lucine-activity-comment__value {
  color: #f3f4f6;
  flex: 1 1 auto;
  word-break: break-word;
}
.lucine-activity-modal__comments-loading,
.lucine-activity-modal__comments-empty {
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
  padding: 12px 0;
}
.lucine-activity-modal__comments-sentinel { height: 1px; }
img.activity-item__img { cursor: pointer; }

/* =====================================================
   PROMOTIONS PAGE (kept for promotions.html)
   ===================================================== */
.promotions-page { padding: 40px 16px 80px; max-width: var(--container); margin: 0 auto; }
.promotions-page__title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 32px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
@media (min-width: 1024px) {
  .promotions-grid { grid-template-columns: repeat(3, 1fr); }
}
.promo-item {
  display: flex;
  flex-direction: column;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.promo-item:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.2);
}
.promo-item__img-wrap { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; }
.promo-item__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.promo-item__content {
  padding: 16px;
  text-align: center;
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-border);
}
.promo-item__content p { color: #fff; font-size: 1rem; font-weight: 500; margin: 0; }

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.page-link, .page-num {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}
.page-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 6px;
}
.page-num.active { background: var(--c-border-hot); color: #fff; }
.page-num:hover:not(.active), .page-link:hover:not(.disabled) { color: var(--c-accent); }
.page-link.disabled { opacity: 0.5; cursor: default; }

/* =====================================================
   ACTIVITIES PAGE (kept for activities.html)
   ===================================================== */
.activities-page { padding: 40px 16px 80px; max-width: var(--container); margin: 0 auto; }
.activities-page__title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 32px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
}
.activity-item {
  display: flex;
  flex-direction: column;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.activity-item:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.2);
}
.activity-item__img-wrap { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; }
.activity-item__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.activity-item__content {
  padding: 18px 16px;
  text-align: left;
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-border);
}
.activity-item__content p { color: #fff; font-size: 1.05rem; font-weight: 500; margin: 0; }

/* =====================================================
   FLOATING LINE BANNER
   ===================================================== */
.floating-banner {
  position: fixed;
  bottom: 92px;
  right: 12px;
  z-index: 1099;
  max-width: 130px;
}
.floating-banner img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 -4px 10px rgba(0, 0, 0, 0.5));
}
@media (min-width: 768px) {
  .floating-banner { bottom: 24px; max-width: 140px; }
}
