/* ============================================
   88idofficial.org
   ============================================ */

:root {
  --gold: #f0b429;
  --gold-light: #ffd966;
  --gold-dark: #c8941a;
  --dark: #0a0c10;
  --dark-2: #111318;
  --dark-3: #181c24;
  --dark-4: #1f2430;
  --dark-5: #252b38;
  --text: #e8ecf4;
  --text-muted: #8a94a8;
  --green: #00d46a;
  --red: #ff4757;
  --accent: #f0b429;
  --border: rgba(240, 180, 41, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 30px rgba(240, 180, 41, 0.2);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  user-select: none;
}

/* GLOBAL LINK CONTROL */
a {
  color: #b30101;
  transition: color 0.25s ease;
}

a:hover {
  color: #ffffff !important;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.text-gold {
  color: var(--gold);
}

.text-green {
  color: var(--green);
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: #b30101;
  color: #fff;
  box-shadow: 0 4px 20px rgba(240, 180, 41, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 180, 41, 0.5);
  filter: brightness(1.05);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: rgba(240, 180, 41, 0.1);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, #00a854 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 212, 106, 0.3);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 106, 0.5);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}

/* ── HEADER / NAV ── */
.logo-img {
  height: 40px;
  /* adjust as needed */
  width: auto;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 12, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(240, 180, 41, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== HAMBURGER BUTTON ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate into X */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(10, 12, 16, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);

  display: flex;
  flex-direction: column;
  gap: 5px;

  padding: 15px 20px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 12px;
  border-radius: 8px;
  transition: all var(--transition);
}

.mobile-menu a:hover {
  background: rgba(240, 180, 41, 0.08);
  color: var(--gold);
}

/* CTA inside mobile */
.mobile-menu .btn {
  margin-top: 10px;
  text-align: center;
}

/* ACTIVE STATE */
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;

}


.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 106, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.25);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #B30101;
}


.hero-sub {
  color: #cbd5e1;
  ;
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  /* ensures vertical alignment */
  gap: 18px;
  flex-wrap: nowrap;
  /* prevents breaking into next line */
  margin-bottom: 40px;
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

/* TRUST ITEM */
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #d1d5db;
  /* slightly brighter than muted */
  line-height: 1.4;
}

/* ICON */
.trust-icon {
  width: 32px;
  height: 32px;
  background: rgba(0, 212, 106, 0.12);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--green);
  font-size: 0.9rem;

  flex-shrink: 0;

  /* subtle glow (premium feel) */
  box-shadow: 0 0 10px rgba(0, 212, 106, 0.25);
}

@media (max-width: 480px) {
  .trust-item {
    font-size: 0.85rem;
  }

  .trust-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
}

Hero Visual .hero-visual {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 340px;
  position: relative;
  box-shadow: var(--shadow), var(--shadow-gold);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.hero-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 71, 87, 0.15);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  position: relative;
}

/* main pulse */
.live-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--red);
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(2.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.match-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}


.hero-card-bonus {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.12), rgba(240, 180, 41, 0.05));
  border: 1px solid rgba(240, 180, 41, 0.25);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bonus-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.bonus-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gold);
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.float-badge-1 {
  top: -20px;
  left: -40px;
  color: var(--green);
  border-color: rgba(0, 212, 106, 0.25);
}

.float-badge-2 {
  bottom: 30px;
  right: -30px;
  color: var(--gold);
  border-color: rgba(240, 180, 41, 0.25);
}

@media (max-width: 768px) {

  .hero-inner {
    display: flex !important;
    flex-direction: column !important;
  }

  .hero-content {
    order: 1 !important;
  }

  .hero-visual {
    order: 2 !important;
  }

}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stat-item {
  text-align: center;
  padding: 16px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── SECTIONS ── */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(240, 180, 41, 0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* 
/* ── SPORTS SECTION ── */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.sport-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}

.sport-card:hover {
  border-color: var(--gold);
  background: var(--dark-4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(240, 180, 41, 0.1);
}

.sport-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: block;
}

.sport-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.sport-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sports-image {
  margin-top: 40px;
  text-align: center;
}

.sports-image img {
  width: 100%;
  max-width: 900px;
  /* controls size */
  height: auto;
  border-radius: 16px;

  /* premium shadow */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

  /* smooth load */
  transition: transform 0.3s ease;
}

.sports-image img:hover {
  transform: scale(1.02);
}

*/

/* ── GAMES SECTION ── */
.games-section {
  background: var(--dark-2);
}

.games-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.game-tab {
  padding: 9px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.game-tab:hover,
.game-tab.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  font-weight: 700;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.game-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}

.game-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.game-thumb {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
  position: relative;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* smooth fade */
.game-card {
  transition: all 0.3s ease;
}

.game-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6));
}

.game-info {
  padding: 12px 14px;
}

.game-name {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.game-provider {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.game-badge.hot {
  background: var(--gold);
  color: var(--dark);
}

.game-badge.new {
  background: var(--green);
}

/* Game thumb colors */
.g1 {
  background: linear-gradient(135deg, #1a0a3d, #4a1a8a);
}

.g2 {
  background: linear-gradient(135deg, #0a2a1a, #1a6a2a);
}

.g3 {
  background: linear-gradient(135deg, #3d1a0a, #8a3a1a);
}

.g4 {
  background: linear-gradient(135deg, #0a1a3d, #1a3a8a);
}

.g5 {
  background: linear-gradient(135deg, #1a1a0a, #4a4a1a);
}

.g6 {
  background: linear-gradient(135deg, #2a0a1a, #6a1a3a);
}

.casino-showcase {
  margin-top: 50px;
  text-align: center;
  padding: 0 24px;
}

.casino-image img {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.casino-content {
  margin-top: 25px;
}

.casino-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ── BONUS SECTION ── */
.bonus-section {
  background: var(--dark);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.08), transparent 70%);
  pointer-events: none;
}

.bonus-card:hover {
  border-color: rgba(240, 180, 41, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.bonus-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 12px;
}

.bonus-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.bonus-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.bonus-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.bonus-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold);
}

.bonus-card.featured {
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.1), rgba(240, 180, 41, 0.03));
  border-color: rgba(240, 180, 41, 0.4);
}

.app-desc {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.app-visual {
  position: relative;
  text-align: center;
}

.app-visual img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.app-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f2;
  color: #000;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* SECTION */
.app-req-section {
  padding: 50px 0;
  background: var(--dark-2);
}

/* GRID */
.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* CARD */
.req-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

/* TITLE */
.req-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

/* TABLE */
.req-table {
  width: 100%;
  border-collapse: collapse;
}

.req-table th {
  font-size: 0.75rem;
  color: var(--gold);
  text-align: left;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.req-table td {
  font-size: 0.85rem;
  color: #cbd5e1;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* NOTE */
.req-note {
  margin-top: 10px;
  font-size: 0.75rem;
  color: #94a3b8;
}

/* MOBILE */
@media (max-width: 768px) {
  .req-grid {
    grid-template-columns: 1fr;
  }
}



/* payment */

.payment-section {
  padding: 60px 0;
  background: var(--dark);
}

.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.pay-badge {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text);
  background: var(--dark-3);
}


.payment-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.payment-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.payment-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.payment-info {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.payment-note {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 20px;
}

.cta-final {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(135deg,
      rgba(240, 180, 41, 0.08),
      rgba(0, 212, 106, 0.05));
  border-top: 1px solid var(--border);
}

.cta-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 16px auto 24px;
  max-width: 600px;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* LOGO STRIP */
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
}

/* LOGO CARD */
.pay-logo {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 100px;
  transition: all 0.3s ease;
}

/* IMAGE */
.pay-logo img {
  max-height: 26px;
  width: auto;
  object-fit: contain;
}

/* FALLBACK TEXT (EBPAY) */
.pay-logo span {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
}

/* HOVER EFFECT */
.pay-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 180, 41, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* MOBILE */
@media (max-width: 768px) {
  .pay-logo {
    height: 50px;
    padding: 10px 14px;
  }

  .pay-logo img {
    max-height: 22px;
  }
}



/* ── FAQ ── */
.faq-section {
  background: var(--dark-2);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction:
    column;
  gap: 12px;
}

.faq-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  margin-bottom: 16px;
}

.faq-item.open {
  border-color: rgba(240, 180, 41, 0.35);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 16px;
  user-select: none;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-chevron {
  width: 24px;
  height: 24px;
  background: var(--dark-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ── APP SECTION ── */
/* SECTION */
.app-section {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: none;
  padding-bottom: 20px;

  padding: 0;
}

/* GRID */
.app-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.app-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* META */
.apk-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  margin: 16px 0 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.apk-meta strong {
  color: #facc15;
}

/* FEATURES */
.app-features {
  margin: 24px 0;
}

.app-feature {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #cbd5e1;
}

/* BUTTONS */
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* TRUST */
.apk-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.apk-trust-bar span {
  background: rgba(240, 180, 41, 0.08);
  border: 1px solid rgba(240, 180, 41, 0.25);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #facc15;
  font-weight: 600;
}

/* HERO */
.hero {
  padding: 100px 0 80px;
}

/* GRID */
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.3);
  color: #facc15;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* TITLE */
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero h1 span {
  color: #facc15;
}

/* ⭐ STATS */
.hero-stats {
  font-size: 0.85rem;
  color: #facc15;
  margin-bottom: 14px;
}

/* TEXT */
.hero-sub {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* CTA */
.hero-ctas {
  margin-bottom: 16px;
}

/* TRUST */
.hero-trust {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 10px;
}

/* 🔥 LIVE */
.hero-live {
  font-size: 0.8rem;
  color: #f87171;
}

/* RIGHT */
.hero-visual {
  display: flex;
  justify-content: center;
}

/* CARD */
.apk-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;

  width: 100%;
  max-width: 320px;
  /* desktop only */

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {

  .hero-visual {
    width: 100%;
  }

  .apk-card {
    max-width: 100%;
    /* FULL WIDTH */
    margin: 0;
    /* remove centering squeeze */
  }

}




.apk-card img {
  width: 70px;
  border-radius: 16px;
  display: block;
  margin: 0 auto 12px;
}

.apk-name {
  text-align: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.apk-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 0.9rem;
  text-align: center;
}

.apk-meta div {
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.apk-meta span {
  display: block;
  color: #94a3b8;
}

.apk-meta strong {
  color: #facc15;
}

/* MOBILE */
@media (max-width: 768px) {

  .hero {
    padding: 70px 0 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    margin-top: 20px;
  }

  .hero-ctas a {
    width: 100%;
  }

}


/* STATS */
.apk-stats {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* IMAGE */
.app-image {
  text-align: center;
}

.app-image img {
  width: 220px;
  border-radius: 50%;
  border: 4px solid #facc15;
}

.app-version {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* INSTALL */
/* SECTION */
.install-section {
  padding: 10;
  background: var(--dark);
  margin-top: 20px;
  margin-bottom: 50px;
  /* pull section UP */
}



.install-section .container {
  margin-top: 0;
  padding-top: 0;
}


.install-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  /* 🔥 THIS FIXES IT */
}

/* COLUMN */
.install-col h2 {
  font-size: 1.9rem;
  /* was 1.6rem */
  line-height: 1.2;
  margin: 0 0 14px;

}

.install-sub {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 28px;
}



/* STEPS */
.install-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.install-step {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.step-num {
  min-width: 34px;
  height: 34px;
  background: #facc15;
  color: #000;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 0.82rem;
  color: #94a3b8;
}

/* CTA */
.install-cta {
  margin-top: 24px;
}

/* iOS BOX */
.ios-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.ios-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.ios-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.ios-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

  .install-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .install-col {
    text-align: left;
  }

}

.install-section {
  margin-top: 20px;
  padding-top: 60px;
  border-top: none;
}

.install-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(20, 25, 40, 0.9);
  border-radius: 16px;
}

.install-box h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.install-box ul {
  list-style: none;
  padding: 0;
}

.install-box li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1rem;
}

.install-box li span {
  width: 28px;
  height: 28px;
  background: #facc15;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.install-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #facc15;
}

/* MOBILE */
@media (max-width: 768px) {

  .app-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .app-image {
    order: 2;
  }

  .app-content {
    order: 1;
  }

  .app-image img {
    width: 160px;
  }

  .apk-meta {
    grid-template-columns: 1fr;
  }

  .apk-trust-bar {
    justify-content: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .install-box {
    padding: 25px 20px;
  }
}

/* CTA SECTION */
.app-cta {
  padding: 60px 0;
  text-align: center;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

/* SUBTEXT */
.cta-sub {
  max-width: 600px;
  margin: 16px auto 30px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* NOTE */
.cta-note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* MOBILE */
@media (max-width: 768px) {
  .app-cta {
    padding: 50px 0;
  }

  .cta-buttons a {
    width: 100%;
  }
}

/* features app */

/* SECTION */
.features-section {
  padding: 40px 0;
  background: var(--dark-2);
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* CARD */
.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 26px;
  transition: all 0.3s ease;
}

/* HOVER */
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 180, 41, 0.4);
}

/* ICON */
.feature-icon {
  font-size: 26px;
  margin-bottom: 14px;
}

/* TITLE */
.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* TEXT */
.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.features-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* MOBILE */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}


/* homepage login */

.login-section {
  padding: 80px 0;
  text-align: center;
}

.login-box {
  max-width: 600px;
  margin: 0 auto;
}

.login-box h2 {
  margin-bottom: 12px;
}

.login-box p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.login-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── LOGIN PAGE (CLEAN VERSION) ── */

/* Layout wrapper (if still used) */
.login-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 100vh;
}

/* LEFT SIDE */
.login-left {
  padding: 60px 40px;
  display: flex;
  align-items: center;
  background: var(--dark);
}

/* RIGHT SIDE */
.login-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--dark-2);
}

/* ── PROMO CARDS ── */
.login-promo-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.login-promo-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.lpc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.lpc-icon {
  font-size: 1.2rem;
}

.lpc-title {
  font-weight: 700;
  font-size: 0.9rem;
}

.lpc-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.lpc-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── SECURITY BADGES ── */
.sec-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--dark-4);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 50px;
}




/* ── LOGIN STEPS ── */
/* ── LOGIN & REGISTER STEPS (FINAL SYSTEM) ── */
.login-steps {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}

/* LOGIN (3 cards centered) */
.login-steps.steps-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* REGISTER (4 cards full clean row) */
.login-steps.steps-4 {
  grid-template-columns: repeat(4, 1fr);
}

.login-step-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition: all 0.3s ease;
}

.login-step-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.step-badge {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── HELP CARD ── */
.login-help-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  margin-top: 10px;
}

.login-help-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.login-help-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .login-layout {
    grid-template-columns: 1fr;
  }

  .login-left {
    padding: 40px 20px;
  }

  .login-right {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .login-steps {
    grid-template-columns: 1fr;
  }
}


/* REGISTER STEPS – PREMIUM HORIZONTAL */
/* Card */
.login-step-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: transform 0.25s ease, border 0.25s ease;
}

.login-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

/* Step number */
.step-badge {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

/* Titles */
.step-title {
  font-weight: 700;
  margin-bottom: 6px;
}

/* Description */
.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .login-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .login-steps {
    grid-template-columns: 1fr;
  }
}


/* pros and cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.pros-box,
.cons-box {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.pros-box h3 {
  color: #22c55e;
  margin-bottom: 16px;
}

.cons-box h3 {
  color: #facc15;
  margin-bottom: 16px;
}

.pros-box ul,
.cons-box ul {
  list-style: none;
  padding: 0;
}

.pros-box li,
.cons-box li {
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
}

/* ── PAYMENT METHODS ── */
.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.pay-badge {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ── FOOTER ── */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

/* Footer logo styling */
.footer-brand {
  text-align: left;
  /* keep text aligned left */
}

.footer-brand .nav-logo {
  display: block;
  text-align: center;
  /* center ONLY the logo */
  margin-bottom: 10px;
}

.footer-brand .logo-img {
  width: 64px;
  /* slightly bigger */
  height: auto;
}

.footer-license {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 50px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom p+p {
  margin-top: 6px;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ── MOBILE STICKY BAR ── */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 12, 16, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  z-index: 9999;
}

/* Buttons */
.mobile-btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

/* Primary */
.mobile-btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
}

/* Secondary */
.mobile-btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

/* Hide on desktop */
@media (min-width: 768px) {
  .mobile-bar {
    display: none;
  }
}

/* ── TABLET ── */
@media (max-width: 1024px) {

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-ctas,
  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-card {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .float-badge-1,
  .float-badge-2 {
    display: none;
  }

  .app-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2),
  .stat-item:nth-child(3) {
    border-right: none;
  }
}

/* ── MOBILE ── */
@media (max-width: 768px) {

  section {
    padding: 60px 0;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-bar {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .login-card {
    padding: 28px 20px;
  }

  .hero {
    padding: 60px 0 50px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-ctas {
    flex-wrap: wrap;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

}

/* ── SMALL MOBILE ── */
@media (max-width: 480px) {

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
    /* FIXED (was 3 → overflow risk) */
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

}

/* ── GLOBAL SAFETY (prevents horizontal scroll issues) ── */
img {
  max-width: 100%;
  height: auto;
}

html,
body {
  overflow-x: hidden;
}



/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TICKER WRAP ===== */
.ticker-wrap {
  background: var(--dark-4);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 8px 0;
  position: relative;
}

/* Optional fade edges (premium look) */
.ticker-wrap::before,
.ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-4), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-4), transparent);
}

/* ===== TICKER TRACK ===== */
.ticker {
  display: flex;
  gap: 0;
  width: max-content;

  /* SPEED CONTROL (adjust if needed) */
  animation: ticker 55s linear infinite;

  /* smooth performance */
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Pause on hover (desktop UX) */
.ticker-wrap:hover .ticker {
  animation-play-state: paused;
}

/* ===== ANIMATION ===== */
@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===== ITEMS ===== */
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  /* slightly reduced for better balance */
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  border-right: 1px solid var(--border);
  letter-spacing: 0.02em;
}

/* Remove border from last item (optional polish) */
.ticker-item:last-child {
  border-right: none;
}

/* ===== ODDS COLORS ===== */
.ticker-item .up {
  color: var(--green);
  font-weight: 600;
}

.ticker-item .down {
  color: var(--red);
  font-weight: 600;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
  .ticker-item {
    padding: 0 18px;
    font-size: 0.75rem;
  }

  .ticker {
    animation: ticker 65s linear infinite;
    /* slower on mobile */
  }
}

/* Background grid pattern */
.bg-grid {
  background-image:
    linear-gradient(rgba(240, 180, 41, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 180, 41, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* CASSINO PAGE */

.slots-slider {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.slots-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.slot-card {
  min-width: calc(25% - 12px);
  /* 4 per row */
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark-2);
  transition: transform 0.3s;
}

.slot-card img {
  width: 100%;
  display: block;
}

.slot-card:hover {
  transform: scale(1.05);
}

/* BUTTONS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* MOBILE */
@media (max-width: 992px) {
  .slot-card {
    min-width: calc(33.33% - 10px);
    /* 3 */
  }
}

@media (max-width: 600px) {
  .slot-card {
    min-width: calc(50% - 8px);
    /* 2 */
  }
}

@media (max-width: 768px) {
  .container>div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

.provider-item {
  background: linear-gradient(145deg, var(--dark-3), var(--dark-2));
  border: 1px solid var(--border);
  padding: 14px 10px;
  text-align: center;
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.25s ease;
  cursor: default;
  position: relative;
}

.provider-item:hover {
  border-color: var(--gold);
  color: var(--text);
  transform: translateY(-3px);
}

.provider-name {
  font-weight: 500;
  letter-spacing: 0.3px;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

/* esportes page */
/* FIX SPORTS GRID */
.sports-showcase {
  max-width: 680px;
  /* 🔥 key: don't stretch full width */
  margin: 50px auto;
  /* center it */
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--dark-2);
}

/* image stays natural */
.sports-showcase img {
  width: 100%;
  height: auto;
  display: block;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.game-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  transition: 0.3s;
}

.game-card:hover {
  border-color: rgba(240, 180, 41, 0.4);
  transform: translateY(-3px);
}

.game-name {
  font-weight: 700;
  margin-bottom: 4px;
}

.game-provider {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
}

.faq-chevron {
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.trust-badges .badge {
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.trust-badges {
  width: 100%;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  justify-content: center;

  .trust-badges {
    margin-bottom: 25px;
  }
}

.trust-badges .badge {
  font-size: 0.7rem;
  padding: 5px 9px;
}