/* ===== CSS VARIABLES ===== */
:root {
  --bg: #0c0e18;
  --header-bg: #ffffff;
  --text: #ffffff;
  --text-dark: #111827;
  --accent-start: rgb(251, 176, 119);
  --accent-mid: rgb(253, 127, 138);
  --accent-end: rgb(255, 89, 153);
  --accent-gradient: linear-gradient(to right, var(--accent-start), var(--accent-mid), var(--accent-end));
  --border: #D2D2D2;
  --section-gap: 2rem;
  --radius: 12px;
  --max-width: 1280px;
}

/* ===== SCREEN READER ONLY ===== */
.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;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  padding-bottom: 64px;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }

/* ===== HEADER ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.5rem 2rem;
}
.logo img { height: 36px; }
.main-nav {
  display: flex;
  gap: 1.25rem;
  flex: 1;
  justify-content: center;
}
.header-actions {
  flex-shrink: 0;
}
.main-nav a {
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active-nav { color: rgb(253, 127, 138); }
.header-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}
.homepage-h1 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  padding: 0.6rem 1rem;
  background: var(--bg);
  letter-spacing: 0.02em;
}

.permanent-url-bar {
  width: 100%;
  background: var(--bg);
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  text-align: center;
  padding: 0.35rem 1rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.btn-register {
  padding: 0.25rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.875rem;
  color: #fff;
  background: var(--accent-gradient);
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-register:hover { opacity: 0.9; }
.btn-login {
  padding: 0.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-login:hover { background: #f3f4f6; }
.lang-switcher { position: relative; }
.btn-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-dark);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s;
  cursor: pointer;
}
.btn-lang:hover { background: #f3f4f6; }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 170px;
  z-index: 200;
  overflow: hidden;
}
.lang-dropdown.open { display: block; }
.lang-dropdown a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.15s;
}
.lang-dropdown a:hover { background: #f9fafb; color: rgb(253,127,138); }

/* Hamburger button — hidden on desktop */
.btn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 6px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  flex-shrink: 0;
}
.btn-hamburger span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.25s;
  transform-origin: center;
}
.btn-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.btn-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--header-bg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
  border-top: none;
}
.mobile-nav.open {
  max-height: 600px;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.mobile-nav > a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav > a:hover { background: #f9fafb; color: rgb(253,127,138); }
.mobile-nav > a:last-of-type { border-bottom: none; }
.mobile-nav-actions { display: flex; gap: 0.75rem; padding: 0.75rem 1.5rem 0.5rem; border-top: 1px solid rgba(0,0,0,0.06); }
.mobile-nav-actions .btn-register,
.mobile-nav-actions .btn-login { flex: 1; text-align: center; padding: 0.55rem 0; font-size: 0.875rem; border-radius: 6px; }
.mobile-nav-tagline { padding: 0.5rem 1.5rem 1rem; font-size: 0.75rem; color: rgba(0,0,0,0.4); line-height: 1.5; margin: 0; }
.mobile-nav-backdrop {
  display: none;
}

/* ===== ACTION BAR (Deposit / Withdraw / Transfer / VIP) ===== */
.action-bar {
  display: flex;
  width: 100%;
  gap: 0;
  background: var(--bg);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0.75rem 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.03);
  border: none;
  border-right: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.action-btn:last-child { border-right: none; }
.action-btn:hover {
  background: rgba(255,255,255,0.07);
  color: rgb(253,127,138);
}
.action-btn svg { stroke: currentColor; flex-shrink: 0; }

/* ===== CAROUSEL ===== */
.carousel-section { width: 100%; background: var(--bg); }
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1224/315;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg);
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10;
}
.carousel-btn:hover { background: rgba(0,0,0,0.7); }
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dots .dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 2rem;
  max-width: 100%;
  overflow: hidden;
}
.announce-icon { font-size: 1rem; flex-shrink: 0; }
.announce-ticker-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.announce-ticker {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  animation: ticker 20s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announce-more {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: rgb(253, 127, 138);
  font-weight: 500;
  padding: 2px 10px;
  border: 1px solid rgb(253, 127, 138);
  border-radius: 4px;
  transition: background 0.2s;
}
.announce-more:hover { background: rgba(253,127,138,0.1); }

/* ===== CONTENT WRAPPER ===== */
.content-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 0.75rem;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1em;
  background: var(--accent-gradient);
  border-radius: 2px;
}

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0.75rem;
}
.game-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.game-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(253,127,138,0.3);
  z-index: 1;
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.badge {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-new { background: #10b981; color: #fff; }
.badge-exclusive { background: var(--accent-gradient); color: #fff; }
.badge-top { background: #f59e0b; color: #fff; }
.badge-hot { background: #ef4444; color: #fff; }

/* ===== CATEGORIES SECTION ===== */
.categories-section { display: flex; flex-direction: column; gap: 1rem; }
.category-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
  white-space: nowrap;
}
.tab-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.12);
}
.tab-btn.active {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
}
.tab-content { display: none; }
.tab-content.active { display: block; padding: 0.75rem 0; }
.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (min-width: 480px) {
  .providers-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) {
  .providers-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 1024px) {
  .providers-grid { grid-template-columns: repeat(6, 1fr); }
}
.providers-grid img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  aspect-ratio: 415/525;
  object-fit: cover;
}
.providers-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(253,127,138,0.25);
}

/* Landscape provider grid — P2P, Lottery, E-Sports, Cockfight */
.providers-grid-landscape {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .providers-grid-landscape { grid-template-columns: repeat(2, 1fr); }
}
.providers-grid-landscape img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  aspect-ratio: 500/214;
  object-fit: cover;
}
.providers-grid-landscape img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(253,127,138,0.25);
}

/* Landscape provider grid — natural image dimensions (live/sports/fishing pages) */
.providers-grid-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .providers-grid-banner { grid-template-columns: repeat(2, 1fr); }
}
.providers-grid-banner img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.providers-grid-banner img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(253,127,138,0.25);
}

/* ===== REGISTER CTA ===== */
.register-cta-section {
  background: linear-gradient(135deg, rgba(251,176,119,0.12) 0%, rgba(255,89,153,0.12) 100%);
  border: 1px solid rgba(253,127,138,0.25);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 2rem;
}
.register-cta-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: space-between;
}
.register-cta-text { flex: 1; }
.register-cta-text h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.6rem; }
.register-cta-text p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.register-cta-perks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.register-cta-action { text-align: center; flex-shrink: 0; }
.btn-register-cta {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: var(--accent-gradient);
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-register-cta:hover { opacity: 0.9; transform: translateY(-2px); }
.register-cta-note { margin-top: 0.75rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
@media (max-width: 768px) {
  .register-cta-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .register-cta-perks { grid-template-columns: 1fr; }
  .register-cta-action { width: 100%; }
  .btn-register-cta { width: 100%; }
}

/* ===== APP DOWNLOAD ===== */
.app-section {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.app-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.app-img { width: 40%; flex-shrink: 0; border-radius: 8px; max-width: 340px; }
.app-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.app-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.btn-download {
  display: inline-block;
  padding: 0.6rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: var(--accent-gradient);
  transition: opacity 0.2s;
}
.btn-download:hover { opacity: 0.9; }

/* ===== TESTIMONIAL SLIDER ===== */
.testimonial-section {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2.5rem 2rem 1.75rem;
  text-align: center;
  overflow: hidden;
}
.testimonial-slider { overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}
.testimonial-slide { min-width: 100%; }
.testimonial-inner { max-width: 640px; margin: 0 auto; }
.stars { font-size: 1.25rem; color: #f59e0b; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-inner h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.testimonial-inner p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.65; }
.testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.t-dot.active { background: var(--accent-mid); transform: scale(1.3); }

/* ===== FOOTER ===== */
#site-footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  text-align: center;
}
.footer-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-partners img { height: 26px; width: auto; opacity: 0.8; transition: opacity 0.2s; }
.footer-partners img:hover { opacity: 1; }
@media (max-width: 768px) {
  .footer-partners img { height: 20px; }
  .footer-partners { gap: 0.6rem; }
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.footer-links a:hover, .footer-links button:hover { color: #fff; }
.footer-links a + a::before { content: '|'; margin-right: 0.5rem; color: rgba(255,255,255,0.2); pointer-events: none; }
.footer-contact { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ===== BOTTOM ACTION BAR ===== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(13,14,24,0.97);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  z-index: 99;
  backdrop-filter: blur(8px);
}
.bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.bar-btn:hover {
  color: rgb(253, 127, 138);
  background: rgba(253,127,138,0.08);
}
.bar-btn svg { stroke: currentColor; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(6, 1fr); }
  .main-nav { gap: 0.75rem; }
  .main-nav a { font-size: 0.8rem; }
}
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .main-nav { display: none; }
  .btn-hamburger { display: flex; }
  .mobile-nav { display: flex; }

  /* Remove top/bottom padding so header stays slim */
  .header-inner { padding: 0 1rem; gap: 0.5rem; min-height: 52px; }

  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .app-inner { flex-direction: column; text-align: center; }
  .app-img { width: 100%; max-width: 100%; }
  .content-wrapper { padding: 1rem; }
  .action-btn { font-size: 0.65rem; padding: 0.6rem 0.25rem; gap: 4px; }
  .btn-register { padding: 0.25rem 0.75rem; }
  .btn-login { padding: 0.25rem 0.75rem; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .category-tabs { gap: 0.375rem; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .category-tabs::-webkit-scrollbar { height: 2px; }
  .category-tabs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }
  .tab-btn { padding: 0.35rem 0.75rem; font-size: 0.78rem; white-space: nowrap; flex-shrink: 0; }
}

/* ===================================================
   INNER PAGE SHARED COMPONENTS
   =================================================== */

/* ── Page Hero (all inner pages) ── */
.page-hero { background: linear-gradient(135deg, #1a1c2e 0%, #0c0e18 100%); padding: 2.5rem 2rem 1.5rem; text-align: center; }
.page-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero p { color: rgba(255,255,255,0.6); }

/* ── Policy Pages (terms, privacy) ── */
.policy-wrap { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 2.5rem; max-width: 860px; margin: 0 auto; }
.policy-wrap h2 { font-size: 1.15rem; font-weight: 700; margin: 2rem 0 0.75rem; color: #fff; }
.policy-wrap h2:first-child { margin-top: 0; }
.policy-wrap h3 { font-size: 0.95rem; font-weight: 700; margin: 1.25rem 0 0.5rem; color: rgba(255,255,255,0.9); }
.policy-wrap p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.75; margin-bottom: 0.75rem; }
.policy-wrap ul { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.75; padding-left: 1.5rem; margin-bottom: 0.75rem; }
.policy-wrap ul li { margin-bottom: 0.4rem; }
.updated { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 2rem; }
.highlight-box { background: rgba(251,176,119,0.08); border: 1px solid rgba(251,176,119,0.2); border-radius: 8px; padding: 1rem 1.25rem; margin: 1rem 0; font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* ── Game Provider Cards (slot, live, sports pages) ── */
.provider-card { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.provider-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(253,127,138,0.3); }
.provider-card img { width: 100%; aspect-ratio: 415/525; object-fit: cover; display: block; border-radius: 12px; }
.provider-card-banner img { width: 100%; height: auto; aspect-ratio: unset; object-fit: unset; display: block; border-radius: 12px; }
.provider-card .play-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.provider-card:hover .play-overlay { background: rgba(0,0,0,0.45); }
.play-overlay span { opacity: 0; background: var(--accent-gradient); color: #fff; font-weight: 700; font-size: 0.85rem; padding: 0.4rem 1.2rem; border-radius: 20px; transition: opacity 0.2s; }
.provider-card:hover .play-overlay span { opacity: 1; }
.big-providers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .big-providers-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .big-providers-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .big-providers-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); } }

/* ── Table Wrap (commission, vip) ── */
.table-wrap { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; overflow-x: auto; }
.info-box { background: rgba(251,176,119,0.08); border: 1px solid rgba(251,176,119,0.2); border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* ── FAQ Accordion (contact, register, login) ── */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-item:last-child { border-bottom: none; }
.faq-question { width: 100%; text-align: left; background: none; border: none; color: #fff; font-size: 0.875rem; font-weight: 600; padding: 1rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question:hover { color: rgb(253,127,138); }
.faq-arrow { flex-shrink: 0; transition: transform 0.2s; font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding-bottom: 1rem; color: rgba(255,255,255,0.65); font-size: 0.875rem; line-height: 1.65; }
.faq-item.open .faq-answer { display: block; }
.faq-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 2rem; width: 100%; max-width: 860px; margin: 0 auto; }
.faq-box h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }

/* ── Steps (register, login) ── */
.steps-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 2rem; }
.steps-box h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; }
.steps-list { display: flex; flex-direction: column; gap: 1.25rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step > .step-num { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; background: var(--accent-gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }
.step-body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.step-body p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.55; }

/* ===================================================
   PAGE: PROMOTIONS
   =================================================== */
.promo-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.promo-tab { padding: 0.45rem 1.25rem; border-radius: 6px; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); cursor: pointer; transition: all 0.2s; }
.promo-tab:hover { color: #fff; background: rgba(255,255,255,0.12); }
.promo-tab.active { background: var(--accent-gradient); color: #fff; border-color: transparent; }
.promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.25rem; }
.promo-card { border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.promo-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(253,127,138,0.2); }
.promo-card img { width: 100%; aspect-ratio: 16/7; object-fit: cover; display: block; }
.promo-card-body { padding: 1rem 1.25rem 1.25rem; }
.promo-card-body h3 { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.promo-card-body p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.5; margin-bottom: 1rem; }
.btn-claim { display: inline-block; padding: 0.45rem 1.5rem; border-radius: 6px; font-weight: 600; font-size: 0.875rem; color: #fff; background: var(--accent-gradient); transition: opacity 0.2s; }
.btn-claim:hover { opacity: 0.85; }
.promo-content { display: none; }
.promo-content.active { display: block; }
@media (max-width: 600px) { .promo-grid { grid-template-columns: 1fr; } }

/* ===================================================
   PAGE: COMMISSION
   =================================================== */
.comm-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.comm-tab { padding: 0.45rem 1.1rem; border-radius: 6px; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.comm-tab:hover { color: #fff; background: rgba(255,255,255,0.12); }
.comm-tab.active { background: var(--accent-gradient); color: #fff; border-color: transparent; }
.comm-content { display: none; }
.comm-content.active { display: block; }
.comm-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.comm-table th { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.9); font-weight: 600; padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }
.comm-table td { padding: 0.65rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); }
.comm-table tr:hover td { background: rgba(255,255,255,0.03); }
.comm-table tr:last-child td { border-bottom: none; }
.rate { font-weight: 600; color: #fbbf24; }

/* ===================================================
   PAGE: VIP
   =================================================== */
.vip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.vip-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 1.5rem; position: relative; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.vip-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.vip-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; }
.vip-1::before { background: linear-gradient(to right, #b0b0b0, #d4d4d4); }
.vip-2::before { background: linear-gradient(to right, #cd7f32, #e8a055); }
.vip-3::before { background: linear-gradient(to right, #a8a8a8, #d0d0d0, #f0f0f0); }
.vip-4::before { background: linear-gradient(to right, #ffd700, #ffec6e); }
.vip-5::before { background: linear-gradient(to right, #00c6ff, #0072ff); }
.vip-6::before { background: linear-gradient(to right, #a855f7, #ec4899); }
.vip-7::before { background: linear-gradient(to right, #ff6b6b, #fbbf24, #a855f7); }
.vip-badge { font-size: 2rem; margin-bottom: 0.75rem; }
.vip-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.25rem; }
.vip-subtitle { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.vip-stat { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.82rem; }
.vip-stat:last-child { border-bottom: none; }
.vip-stat-label { color: rgba(255,255,255,0.55); }
.vip-stat-value { font-weight: 600; color: #fbbf24; }
.vip-perks { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.perk-chip { font-size: 0.72rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 2px 10px; color: rgba(255,255,255,0.75); }
.benefits-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; overflow-x: auto; display: block; }
.benefits-table th { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.9); font-weight: 600; padding: 0.7rem 0.75rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); white-space: nowrap; }
.benefits-table th:first-child { text-align: left; }
.benefits-table td { padding: 0.6rem 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.06); text-align: center; color: rgba(255,255,255,0.8); white-space: nowrap; }
.benefits-table td:first-child { text-align: left; color: rgba(255,255,255,0.6); }
.benefits-table tr:hover td { background: rgba(255,255,255,0.03); }
.check { color: #10b981; font-size: 1rem; }
.cross { color: rgba(255,255,255,0.25); font-size: 1rem; }

/* ===================================================
   PAGE: CONTACT
   =================================================== */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 560px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 1.75rem 1.5rem; text-align: center; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; text-decoration: none; display: flex; flex-direction: column; align-items: center; }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(253,127,138,0.2); border-color: rgba(253,127,138,0.3); }
.contact-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-card h3 { font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.contact-card p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.5; margin-bottom: 0.75rem; flex: 1; }
.contact-cta { display: inline-block; font-size: 0.8rem; font-weight: 600; color: rgb(253,127,138); margin-top: auto; }
.hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 640px) { .hours-grid { grid-template-columns: 1fr; } }
.hours-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 1.25rem 1.5rem; }
.hours-card h4 { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.83rem; padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.7); }
.hours-row:last-child { border-bottom: none; }
.hours-row .available { color: #10b981; font-weight: 600; }

/* ===================================================
   PAGE: LIVE GAMES
   =================================================== */
.live-badge { display: inline-flex; align-items: center; gap: 6px; background: #ef4444; color: #fff; font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 1rem; }
.live-badge::before { content:''; width:8px; height:8px; border-radius:50%; background:#fff; animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ===================================================
   PAGE: SPORTS GAMES
   =================================================== */
.sports-list { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.sport-chip { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 0.4rem 1rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); }

/* ===================================================
   PAGE: APP DOWNLOAD
   =================================================== */
.download-section { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.download-image { text-align: center; }
.download-image img { max-width: 340px; width: 100%; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.download-info h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.download-info p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.dl-buttons { display: flex; flex-direction: column; gap: 0.75rem; }
.dl-btn { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 1.5rem; border-radius: 10px; font-weight: 600; font-size: 0.9rem; color: #fff; text-decoration: none; transition: opacity 0.2s, transform 0.2s; }
.dl-btn:hover { opacity: 0.9; transform: translateX(4px); }
.dl-btn-android { background: linear-gradient(135deg, #3ddc84, #20b865); }
.dl-btn-ios { background: linear-gradient(135deg, #555, #333); border: 1px solid rgba(255,255,255,0.15); }
.dl-btn-icon { font-size: 1.75rem; flex-shrink: 0; }
.dl-btn-text small { display: block; font-size: 0.72rem; font-weight: 400; opacity: 0.8; margin-bottom: 1px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; }
.step-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 1.5rem; text-align: center; position: relative; }
.step-card > .step-num { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent-gradient); color: #fff; font-weight: 800; font-size: 0.85rem; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.step-card .step-icon { font-size: 2rem; margin: 0.5rem 0 0.75rem; }
.step-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; }
.step-card p { color: rgba(255,255,255,0.55); font-size: 0.8rem; line-height: 1.5; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.feature-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; background: rgba(255,255,255,0.03); border-radius: 10px; }
.feature-item .fi { font-size: 1.5rem; flex-shrink: 0; }
.feature-item h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.25rem; }
.feature-item p { color: rgba(255,255,255,0.55); font-size: 0.78rem; line-height: 1.5; }
@media (max-width: 768px) { .download-section { grid-template-columns: 1fr; } .download-image { order: -1; } }

/* ===================================================
   PAGE: REGISTER
   =================================================== */
.reg-wrap { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.reg-cta-box { background: linear-gradient(135deg, rgba(251,176,119,0.12) 0%, rgba(255,89,153,0.12) 100%); border: 1px solid rgba(253,127,138,0.3); border-radius: 14px; padding: 2.5rem 2rem; text-align: center; }
.reg-cta-box h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.6rem; }
.reg-cta-box p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 1.75rem; line-height: 1.6; }
.btn-reg-main { display: inline-block; padding: 0.9rem 3rem; border-radius: 8px; font-weight: 700; font-size: 1.05rem; color: #fff; background: var(--accent-gradient); transition: opacity 0.2s, transform 0.2s; letter-spacing: 0.02em; }
.btn-reg-main:hover { opacity: 0.9; transform: translateY(-2px); }
.bonus-chips { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.75rem; }
.bonus-chip { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 0.3rem 1rem; font-size: 0.82rem; color: rgba(255,255,255,0.85); }

/* ===================================================
   PAGE: LOGIN
   =================================================== */
.login-wrap { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.login-cta-box { background: linear-gradient(135deg, rgba(251,176,119,0.12) 0%, rgba(255,89,153,0.12) 100%); border: 1px solid rgba(253,127,138,0.3); border-radius: 14px; padding: 2.5rem 2rem; text-align: center; }
.login-cta-box h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.6rem; }
.login-cta-box p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 1.75rem; line-height: 1.6; }
.btn-login-main { display: inline-block; padding: 0.9rem 3rem; border-radius: 8px; font-weight: 700; font-size: 1.05rem; color: #fff; background: var(--accent-gradient); transition: opacity 0.2s, transform 0.2s; letter-spacing: 0.02em; }
.btn-login-main:hover { opacity: 0.9; transform: translateY(-2px); }
.login-note { margin-top: 1rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.login-note a { color: rgb(253,127,138); font-weight: 600; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.info-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 1.25rem; }
.info-card .info-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.info-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.35rem; }
.info-card p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.55; }
@media (max-width: 600px) { .info-grid { grid-template-columns: 1fr; } }

/* ===================================================
   PAGE: MY ACCOUNT
   =================================================== */
.account-wrap { max-width: 480px; margin: 0 auto; padding: 1rem 1rem 5rem; }
.account-profile { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 0 1rem; }
.avatar { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.avatar svg { opacity: 0.5; }
.account-greeting { flex: 1; font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.account-header-icons { display: flex; gap: 0.75rem; }
.account-header-icons button { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.55); padding: 0.25rem; transition: color 0.2s; }
.account-header-icons button:hover { color: #fff; }
.vip-card-account { border-radius: 14px; border: 1.5px solid rgba(253,127,138,0.5); padding: 1.25rem; margin-bottom: 1.25rem; background: rgba(255,255,255,0.03); }
.vip-progress-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.vip-label { display: flex; align-items: center; gap: 4px; font-size: 0.78rem; font-weight: 700; white-space: nowrap; }
.vip-label.v1 { color: #cd7f32; }
.vip-label.v2 { color: #a8a8a8; }
.vip-bar-track { flex: 1; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.12); }
.vip-bar-fill { height: 100%; width: 2%; border-radius: 3px; background: linear-gradient(to right, #cd7f32, rgb(253,127,138)); }
.vip-upgrade-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 1rem; }
.vip-upgrade-row a { color: rgb(253,127,138); font-weight: 600; font-size: 0.78rem; display: flex; align-items: center; gap: 3px; }
.vip-balance-row { display: flex; justify-content: space-between; align-items: flex-end; }
.vip-total-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-bottom: 2px; }
.vip-total-amount { font-size: 1.3rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.vip-actions { display: flex; gap: 1rem; }
.vip-action-btn { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 0.7rem; color: rgba(255,255,255,0.75); cursor: pointer; border: none; background: none; }
.vip-action-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.vip-action-icon.deposit { background: linear-gradient(135deg, #f87171, #fb923c); }
.vip-action-icon.withdraw { background: linear-gradient(135deg, #fb923c, #fbbf24); }
.vip-action-icon.transfer { background: linear-gradient(135deg, #f87171, #ec4899); }
.account-menu-section { border-radius: 14px; overflow: hidden; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); }
.account-menu-header { height: 48px; background: linear-gradient(135deg, rgba(251,176,119,0.6), rgba(253,127,138,0.6)); }
.account-menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.menu-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 1.1rem 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); border-right: 1px solid rgba(255,255,255,0.05); cursor: pointer; transition: background 0.2s; text-align: center; }
.menu-item:hover { background: rgba(255,255,255,0.05); }
.menu-item:nth-child(4n) { border-right: none; }
.menu-icon { width: 36px; height: 36px; color: rgba(255,255,255,0.75); }
.menu-label { font-size: 0.7rem; color: rgba(255,255,255,0.75); line-height: 1.3; font-weight: 500; }
