/* ===========================
   GLOBAL STYLES & VARIABLES
=========================== */
:root {
  --bg-dark: #050505;
  --bg-card: #0e0e0e;
  --bg-card-2: #121212;
  --gold: #f5b922;
  --gold-2: #ffd24a;
  --gold-light: #fde17a;
  --gold-dark: #b8841a;
  --text: #ffffff;
  --text-dim: #9a9a9a;
  --text-soft: #cfcfcf;
  --border: rgba(245, 185, 34, 0.18);
  --border-soft: rgba(255, 255, 255, 0.06);
  --green: #2ecc71;
  --radius: 14px;
  --radius-lg: 22px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
ul { list-style: none; }

.gold-text {
  background: linear-gradient(180deg, #ffd97a 0%, #f5b922 55%, #b8841a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   BUTTONS
=========================== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #ffd24a 0%, #f5b922 50%, #c9911c 100%);
  color: #1a0f00;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 22px rgba(245, 185, 34, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform .2s, box-shadow .2s;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(245, 185, 34, 0.55); }
.btn-gold i { font-size: 11px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: all .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; }

.logo { display: inline-flex; align-items: center; }
.logo-text {
  font-family: 'Russo One', sans-serif;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(180deg, #ffe48a 0%, #f5b922 60%, #a26d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  filter: drop-shadow(0 2px 6px rgba(245, 185, 34, 0.35));
}

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav-links a.active, .nav-links a:hover { color: var(--gold); }

.nav-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-login {
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all .2s;
}
.btn-login:hover { border-color: var(--gold); color: var(--gold); }

.btn-signup {
  background: linear-gradient(180deg, #ffd24a 0%, #f5b922 50%, #c9911c 100%);
  color: #1a0f00;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 4px 16px rgba(245, 185, 34, 0.35);
  transition: all .2s;
}
.btn-signup:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245, 185, 34, 0.55); }

.menu-toggle { display: none; background: transparent; color: var(--gold); font-size: 22px; }

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(5,5,5,0.97); border-bottom: 1px solid var(--border);
    padding: 16px 22px 20px; gap: 12px; z-index: 200;
    backdrop-filter: blur(14px);
  }
  .nav-links.open { display: flex; }
  .nav-auth {
    display: none; flex-direction: column;
    padding: 0 22px 16px; gap: 8px;
    background: rgba(5,5,5,0.97);
    position: absolute; top: calc(100% + 132px);
    left: 0; right: 0;
    border-bottom: 1px solid var(--border); z-index: 200;
  }
  .nav-auth.open { display: flex; }
  .nav-auth .btn-login,
  .nav-auth .btn-signup { width: 100%; text-align: center; padding: 12px; display: block; }
}

/* Mobile-only elements - hidden on desktop */
.m-appbar, .m-bottom-nav { display: none; }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,185,34,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: 420px;
}

.hero-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245, 185, 34, 0.08);
  border: 1px solid rgba(245, 185, 34, 0.25);
  margin-bottom: 22px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.hero-desc {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

/* HERO RIGHT */
.hero-right {
  position: relative;
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  top: 38px;
}

.prize-circle {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  margin-top: -90px;
}

.prize-content {
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prize-label { font-size: 10px; color: var(--gold); font-weight: 700; letter-spacing: 1.5px; text-shadow: 0 0 8px rgba(0,0,0,0.8); }
.prize-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(180deg, #ffe48a 0%, #f5b922 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 12px rgba(0,0,0,0.8);
}
.prize-sub { font-size: 9px; color: #fff; letter-spacing: 2px; font-weight: 600; text-shadow: 0 0 8px rgba(0,0,0,0.8); }

/* ===========================
   STATS BAR
=========================== */
.stats-section { padding: 10px 0 30px; }
.stats-bar {
  background: linear-gradient(180deg, #0b0b0b 0%, #0a0a0a 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.03);
}
.stat-item { display: flex; align-items: center; gap: 14px; flex: 1; }
.stat-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245, 185, 34, 0.10);
  border: 1px solid rgba(245, 185, 34, 0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 16px;
  box-shadow: inset 0 0 12px rgba(245, 185, 34, 0.15);
}
.stat-info { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label { font-size: 11px; color: var(--text-dim); margin-top: 4px; }
.stat-divider {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, rgba(245,185,34,0.25), transparent);
}

/* ===========================
   DREAM WIN BANNER
=========================== */
.dream-section { padding: 30px 0; }
.dream-banner {
  position: relative;
  background: #050505;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(245, 185, 34, 0.08);
}
.dream-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   FEATURES
=========================== */
.features-section { padding: 22px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: transform .25s, border-color .25s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(245,185,34,0.45); }
.feature-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(245, 185, 34, 0.10);
  border: 1px solid rgba(245, 185, 34, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 14px;
}
.feature-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.feature-desc { font-size: 12px; color: var(--text-dim); line-height: 1.5; }

/* ===========================
   MEGA OFERTA
=========================== */
.mega-section { padding: 22px 0; }
.mega-banner {
  background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  align-items: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.mega-left { position: relative; display: flex; align-items: center; justify-content: center; }
.mega-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Mega Right */
.mega-right { padding: 8px 6px; }
.mega-tag { font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 1.5px; }
.mega-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 6px 0 12px;
  letter-spacing: -0.5px;
}
.mega-desc { color: var(--text-dim); font-size: 13px; margin-bottom: 16px; }
.mega-list { margin-bottom: 22px; }
.mega-list li {
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}
.mega-list i { color: var(--gold); font-size: 11px; }
.mega-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===========================
   HOW IT WORKS
=========================== */
.how-section { padding: 40px 0 22px; }
.section-title-line {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-soft);
  position: relative;
  margin-bottom: 26px;
}
.section-title-line::before, .section-title-line::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-title-line::before { right: calc(50% + 110px); }
.section-title-line::after { left: calc(50% + 110px); background: linear-gradient(90deg, var(--gold), transparent); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}
.how-card {
  background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px 20px 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  min-height: 90px;
}
.how-num {
  position: absolute;
  top: -12px; left: 14px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd24a 0%, #f5b922 100%);
  color: #000;
  font-weight: 800;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(245,185,34,0.5);
  border: 2px solid #050505;
}
.how-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(245, 185, 34, 0.10);
  border: 1px solid rgba(245, 185, 34, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.how-content h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.how-content p { font-size: 11px; color: var(--text-dim); }

.how-dots {
  width: 50px;
  height: 1px;
  background-image: linear-gradient(90deg, var(--gold) 50%, transparent 50%);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}

/* ===========================
   SECTION HEADER
=========================== */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}
.view-all {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245, 185, 34, 0.4);
  transition: all .2s;
}
.view-all:hover { background: var(--gold); color: #000; }

/* ===========================
   FEATURED DRAWS
=========================== */
.featured-section { padding: 30px 0 20px; }
.draws-wrapper {
  position: relative;
  overflow: hidden;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(245, 185, 34, 0.12);
  border: 1px solid rgba(245, 185, 34, 0.4);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: all .2s;
  font-size: 12px;
  opacity: 1;
}
.slider-arrow:hover { background: var(--gold); color: #000; }
.slider-arrow.disabled { opacity: 0.25; pointer-events: none; }
.slider-arrow.left { left: 4px; }
.slider-arrow.right { right: 4px; }

.draws-grid {
  display: flex;
  gap: 16px;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.draw-card {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 0;
  background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.draw-card:hover { transform: translateY(-4px); border-color: rgba(245,185,34,0.5); }
.draw-head { padding: 14px 14px 8px; }
.draw-head h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.draw-prize { font-size: 11px; color: var(--gold); }

.draw-img {
  height: 120px;
  margin: 8px 14px;
  border-radius: 8px;
  background: radial-gradient(circle at center, #100a02 0%, #050505 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245,185,34,0.12);
}
.draw-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.draw-foot {
  padding: 12px 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
}
.end-label {
  display: block;
  font-size: 9px;
  color: var(--gold);
  background: rgba(245,185,34,0.1);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
  width: fit-content;
}
.end-time { font-size: 11px; color: #fff; font-weight: 600; }
.entries { font-size: 10px; color: var(--text-dim); }

/* ===========================
   DRAW OVERVIEW TABLE
=========================== */
.overview-section { padding: 20px 0; }
.overview-card {
  background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 18px;
  overflow-x: auto;
}
.overview-table { width: 100%; border-collapse: collapse; }
.overview-table th {
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-dim);
  padding: 16px 8px;
  border-bottom: 1px solid var(--border-soft);
}
.overview-table td {
  padding: 16px 8px;
  font-size: 12px;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border-soft);
}
.overview-table tr:last-child td { border-bottom: none; }
.status-active { color: var(--green); font-weight: 600; font-size: 12px; }

/* ===========================
   COMPLETED DROPS
=========================== */
.completed-section { padding: 20px 0; }
.completed-card {
  background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.completed-left { display: flex; align-items: center; gap: 16px; }
.completed-icon {
  width: 64px; height: 64px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.completed-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(245,185,34,0.4));
}
.completed-left h3 { font-size: 16px; color: #fff; font-weight: 700; margin-bottom: 2px; }
.completed-left p { font-size: 12px; color: var(--text-dim); }

/* ===========================
   TEAM
=========================== */
/* ===========================
   TOP WINNERS THIS MONTH
=========================== */
.winners-section { padding: 22px 0 40px; }
.winners-card {
  background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
}
.winners-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.winners-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.winners-title i { color: var(--gold); margin-right: 6px; }
.winners-sub { font-size: 12px; color: var(--text-dim); }

.winners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.winner-card {
  background: #111;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.winner-card:hover { transform: translateY(-4px); border-color: rgba(245,185,34,0.4); }

.winner-card.rank-1 {
  border-color: rgba(255, 215, 0, 0.5);
  background: linear-gradient(180deg, #141005 0%, #0d0d0d 100%);
  box-shadow: 0 0 22px rgba(245, 185, 34, 0.12);
}
.winner-card.rank-2 {
  border-color: rgba(192, 192, 192, 0.4);
  background: linear-gradient(180deg, #111213 0%, #0d0d0d 100%);
}
.winner-card.rank-3 {
  border-color: rgba(205, 127, 50, 0.4);
  background: linear-gradient(180deg, #120e0a 0%, #0d0d0d 100%);
}

.winner-rank {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.rank-1 .winner-rank { color: var(--gold); font-size: 11px; }
.rank-2 .winner-rank { color: #c0c0c0; }
.rank-3 .winner-rank { color: #cd7f32; }
.rank-1 .winner-rank i, .rank-2 .winner-rank i, .rank-3 .winner-rank i { margin-right: 3px; }

.winner-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(245, 185, 34, 0.5);
  box-shadow: 0 0 0 3px rgba(245, 185, 34, 0.08), 0 4px 14px rgba(0,0,0,0.4);
}
.rank-1 .winner-avatar {
  width: 68px; height: 68px;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(245,185,34,0.2), 0 6px 18px rgba(245,185,34,0.3);
}

.winner-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}
.winner-name { font-size: 13px; font-weight: 700; color: #fff; }
.winner-location { font-size: 10px; color: var(--text-dim); }
.winner-location i { color: var(--gold); font-size: 9px; margin-right: 2px; }

.winner-prize {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  border-top: 1px solid var(--border-soft);
  padding-top: 10px;
}
.prize-tag {
  font-size: 9px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.prize-won {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #050505;
  border-top: 1px solid var(--border-soft);
  padding: 40px 0 0;
  margin-top: 20px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.6fr;
  gap: 30px;
  padding-bottom: 30px;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-brand p { font-size: 12px; color: var(--text-dim); margin: 12px 0 16px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  font-size: 12px;
  transition: all .2s;
}
.socials a:hover { background: var(--gold); color: #000; }

.footer-news p { font-size: 12px; color: var(--text-dim); margin-bottom: 14px; }
.news-form { display: flex; gap: 0; background: #0d0d0d; border: 1px solid var(--border-soft); border-radius: 999px; padding: 4px; overflow: hidden; }
.news-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 12px;
  padding: 8px 14px;
}
.news-form input::placeholder { color: var(--text-dim); }
.news-form button {
  background: linear-gradient(180deg, #ffd24a 0%, #f5b922 100%);
  color: #000;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 20px;
  border-radius: 999px;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 16px 0;
  text-align: center;
}
.footer-bottom p { font-size: 11px; color: var(--text-dim); }

/* ===========================
   RESPONSIVE
=========================== */
/* --- Tablet adjustments (between 769px and 992px) --- */
@media (max-width: 992px) and (min-width: 769px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { height: 360px; }
  .hero-title { font-size: 38px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .draw-card { flex: 0 0 calc(50% - 8px); }
  .mega-banner { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-dots { display: none; }
  .winners-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-bar { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 40%; }
}

/* ===========================================================
   MOBILE APP EXPERIENCE
   (only applies on screens <= 768px - desktop unchanged)
=========================================================== */
@media (max-width: 768px) {

  body {
    font-size: 13px;
    padding-bottom: 0px;
    background:
      radial-gradient(circle at 50% 0%, rgba(245, 185, 34, 0.10), transparent 50%),
      var(--bg-dark);
  }

  .container { padding: 0 16px; }

  /* --- Hide desktop navbar --- */
  .navbar { display: none; }

  /* --- Mobile App Bar (top) --- */
  .m-appbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 12px;
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-soft);
  }
  .m-appbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .m-avatar {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245,185,34,0.18), rgba(245,185,34,0.04));
    border: 1px solid rgba(245,185,34,0.4);
    box-shadow: 0 4px 14px rgba(245,185,34,0.2);
  }
  .m-avatar-dot {
    position: absolute;
    top: -2px; right: -2px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #050505;
    box-shadow: 0 0 8px #22c55e;
  }
  .m-greet { display: flex; flex-direction: column; line-height: 1.2; }
  .m-hi { font-size: 13px; font-weight: 700; color: #fff; }
  .wave { display: inline-block; animation: wave 2s ease-in-out infinite; transform-origin: 70% 70%; }
  @keyframes wave {
    0%, 60%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
  }
  .m-sub { font-size: 11px; color: var(--text-dim); margin-top: 1px; }

  .m-appbar-right { display: flex; gap: 8px; }
  .m-icon-btn {
    position: relative;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid var(--border-soft);
    color: #fff;
    font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
  }
  .m-icon-btn:hover, .m-icon-btn:active {
    background: rgba(245,185,34,0.12);
    border-color: rgba(245,185,34,0.4);
    color: var(--gold);
  }
  .m-notif-dot {
    position: absolute;
    top: 8px; right: 9px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 6px #ef4444;
    border: 2px solid #0a0a0a;
  }

  /* --- HERO mobile redesign --- */
  .hero { padding: 16px 0 12px; }
  .hero::before { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
  }
  .hero-left {
    order: 2;
    text-align: center;
    padding: 0 8px;
    margin-top: -10px;
  }
  .hero-right {
    order: 1;
    height: 280px;
    margin-bottom: 8px;
  }
  .hero-bg-img { object-fit: cover;top: -2px;}
  .prize-circle {
    width: 150px;
    height: 150px;
    margin-top: -60px;
  }
  .prize-label { font-size: 9px; }
  .prize-amount { font-size: 20px; }
  .prize-sub { font-size: 7px; }

  .hero-badge { font-size: 9px; padding: 5px 12px; margin-bottom: 14px; }
  .hero-title { font-size: 28px; letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 12px; }
  .hero-desc { font-size: 12px; margin-bottom: 18px; }
  .hero-desc br { display: none; }
  .hero-left .btn-gold {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    font-size: 14px;
  }

  /* --- Quick action chips below hero --- */
  .hero-left::after {
    content: '';
    display: block;
    margin-top: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
  }

  /* --- STATS BAR mobile - 2x2 grid card --- */
  .stats-section { padding: 8px 0 16px; }
  .stats-bar {
    flex-wrap: wrap;
    padding: 16px;
    gap: 12px;
    border-radius: 18px;
    background:
      radial-gradient(circle at top right, rgba(245,185,34,0.06), transparent 60%),
      linear-gradient(180deg, #0d0d0d, #080808);
  }
  .stat-divider { display: none; }
  .stat-item {
    flex: 1 1 calc(50% - 6px);
    min-width: calc(50% - 6px);
    padding: 8px 4px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
  }
  .stat-icon { width: 38px; height: 38px; font-size: 14px; border-radius: 10px; }
  .stat-num { font-size: 17px; }
  .stat-label { font-size: 10px; }

  /* --- SECTION HEADS mobile --- */
  .section-head {
    margin-bottom: 14px;
    padding: 0 2px;
  }
  .section-title { font-size: 15px; }
  .view-all { font-size: 10px; padding: 7px 14px; }
  .section-title-line { font-size: 11px; letter-spacing: 3px; margin-bottom: 18px; }
  .section-title-line::before, .section-title-line::after { width: 28px; }
  .section-title-line::before { right: calc(50% + 80px); }
  .section-title-line::after { left: calc(50% + 80px); }

  /* --- DREAM WIN BANNER --- */
  .dream-section { padding: 0px 0; }
  .dream-banner { border-radius: 18px; }

  /* --- FEATURES — horizontal scrolling cards --- */
  .features-section { padding: 18px 0; }
  .features-grid {
    grid-template-columns: none;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 16px 8px;
    margin: 0 -16px;
    scrollbar-width: none;
  }
  .features-grid::-webkit-scrollbar { display: none; }
  .feature-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    padding: 18px 16px;
    border-radius: 16px;
  }
  .feature-card:first-child { margin-left: 0; }
  .feature-icon { width: 36px; height: 36px; font-size: 14px; }
  .feature-title { font-size: 13px; }
  .feature-desc { font-size: 11px; }

  /* --- MEGA OFERTA --- */
  .mega-section { padding: 18px 0; }
  .mega-banner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 20px;
  }
  .mega-img { border-radius: 12px; max-height: 200px; object-fit: cover; }
  .mega-heading { font-size: 24px; margin: 4px 0 10px; }
  .mega-desc { font-size: 12px; margin-bottom: 14px; }
  .mega-desc br { display: none; }
  .mega-list li { font-size: 12px; }
  .mega-buttons { flex-direction: column; gap: 10px; }
  .mega-buttons .btn-gold, .mega-buttons .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* --- HOW IT WORKS — vertical stepper --- */
  .how-section { padding: 24px 0 12px; }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .how-dots {
    width: 1px;
    height: 16px;
    background-image: linear-gradient(180deg, var(--gold) 50%, transparent 50%);
    background-size: 1px 6px;
    background-repeat: repeat-y;
    margin: 0 auto;
  }
  .how-card {
    padding: 16px 16px 16px 24px;
    border-radius: 16px;
  }

  /* --- FEATURED DRAWS — horizontal scrolling cards --- */
  .featured-section { padding: 20px 0 12px; }
  .slider-arrow { display: none; }
  .draws-grid {
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 16px 8px;
    margin: 0 -16px;
    scrollbar-width: none;
    transform: none !important;
    transition: none;
  }
  .draws-grid::-webkit-scrollbar { display: none; }
  .draw-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
    border-radius: 18px;
  }
  .draw-img { height: 150px; }

  /* --- DRAW OVERVIEW — convert to cards on mobile --- */
  .overview-section { padding: 14px 0; }
  .overview-card { padding: 0; border-radius: 16px; }
  .overview-table thead { display: none; }
  .overview-table, .overview-table tbody, .overview-table tr, .overview-table td {
    display: block;
    width: 100%;
  }
  .overview-table tr {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-soft);
    position: relative;
  }
  .overview-table tr:last-child { border-bottom: none; }
  .overview-table td {
    padding: 4px 0;
    font-size: 12px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .overview-table td::before {
    content: attr(data-label);
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
  }
  .overview-table td:first-child {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--border-soft);
  }
  .overview-table td:first-child::before { display: none; }

  /* --- COMPLETED DROPS --- */
  .completed-section { padding: 14px 0; }
  .completed-card {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    text-align: left;
  }
  .completed-icon { width: 56px; height: 56px; }
  .completed-card .btn-gold { width: 100%; justify-content: center; }

  /* --- TEAM — horizontal scroll stories --- */
  .winners-section { padding: 14px 0 24px; }
  .winners-card { padding: 20px 14px; border-radius: 18px; }
  .winners-title { font-size: 15px; }
  .winners-sub { font-size: 11px; }
  .winners-header { margin-bottom: 18px; }
  .winners-grid {
    grid-template-columns: none;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 4px 8px;
    margin: 0 -6px;
    scrollbar-width: none;
  }
  .winners-grid::-webkit-scrollbar { display: none; }
  .winner-card {
    flex: 0 0 140px;
    border-radius: 14px;
  }
  .rank-1 .winner-avatar { width: 62px; height: 62px; }

  /* --- FOOTER mobile --- */
  .footer { padding: 28px 0 16px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  /* Hide Platform / Support / Account link columns on mobile */
  .footer-col:not(.footer-brand):not(.footer-news) { display: none; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand .logo { justify-content: center; }
  .socials { justify-content: center; }
  .footer-news { grid-column: 1 / -1; margin-top: 20px; }
  .footer-col h5 { font-size: 12px; margin-bottom: 10px; }
  .footer-col a { font-size: 11px; }
  .news-form input { font-size: 11px; padding: 10px 14px; }
  .news-form button { padding: 10px 18px; font-size: 11px; }

  /* --- MOBILE BOTTOM NAVIGATION --- */
  .m-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 95;
    background: rgba(12, 12, 12, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(245,185,34,0.18);
    border-radius: 22px;
    padding: 10px 8px;
    justify-content: space-around;
    align-items: center;
    box-shadow:
      0 10px 30px rgba(0,0,0,0.6),
      0 0 30px rgba(245,185,34,0.08),
      inset 0 1px 0 rgba(255,255,255,0.04);
    transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .m-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--text-dim);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.3px;
    flex: 1;
    text-align: center;
    padding: 6px 0;
    border-radius: 12px;
    transition: all .25s ease;
    position: relative;
  }
  .m-nav-item i { font-size: 16px; transition: transform .25s; }
  .m-nav-item.active {
    color: var(--gold);
  }
  .m-nav-item.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
  }
  .m-nav-item.active i { transform: translateY(-2px); }
  .m-nav-item:active { transform: scale(0.92); }

  /* --- Floating Action Button (center) --- */
  .m-nav-fab {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe48a 0%, #f5b922 50%, #b8841a 100%);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: 0 0 auto;
    margin-top: -28px;
    box-shadow:
      0 8px 24px rgba(245,185,34,0.5),
      0 0 0 4px rgba(5,5,5,1),
      0 0 0 5px rgba(245,185,34,0.4),
      inset 0 1px 0 rgba(255,255,255,0.5);
    transition: transform .25s;
  }
  .m-nav-fab:active { transform: scale(0.92); }
  .m-fab-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(245,185,34,0.4);
    animation: fabPulse 2s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes fabPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 0; }
  }
}

/* --- Smaller mobile screens (extra small phones) --- */
@media (max-width: 380px) {
  .hero-title { font-size: 24px; }
  .stat-num { font-size: 15px; }
  .draw-card { flex: 0 0 84%; }
  .feature-card { flex: 0 0 180px; }
  .mega-heading { font-size: 20px; }
  .m-nav-item span { font-size: 8px; }
}

/* Custom big hero text for index.php */
.hero-title-main {
  font-size: 84px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-win-earn {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 32px;
}

@media (max-width: 992px) {
  .hero-title-main { font-size: 64px; }
  .hero-win-earn { font-size: 24px; letter-spacing: 2px; }
}

@media (max-width: 768px) {
  .hero-title-main { font-size: 42px; margin-bottom: 16px; line-height: 1.1; }
  .hero-win-earn { font-size: 18px; letter-spacing: 1px; margin-bottom: 24px; }
}

@media (max-width: 480px) {
  .hero-title-main { font-size: 36px; }
  .hero-win-earn { font-size: 15px; letter-spacing: 0px; }
}

/* ===========================
   ACTIVE POOLS SLIDER
=========================== */
.pools-section {
  padding: 40px 0 20px;
}
.pools-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.pools-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pools-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2ecc71;
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.3);
  padding: 4px 10px;
  border-radius: 999px;
}

/* Pulsing dot animation */
.dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  display: inline-block;
  animation: pulseGreen 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseGreen {
  0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(46,204,113,0.5); }
  50%      { opacity: 0.8; transform: scale(1.2); box-shadow: 0 0 0 5px rgba(46,204,113,0); }
}

/* Slider outer wrapper */
.pools-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 8px 0 20px;
}

/* Track that slides */
.pools-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.pools-track:active { cursor: grabbing; }

/* ---- Individual Pool Card ---- */
.pool-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  background: linear-gradient(160deg, #111 0%, #0d0d0d 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.pool-card:hover {
  transform: translateY(-6px);
  border-color: var(--pool-accent, #f5b922);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px var(--pool-accent, #f5b922);
}
.pool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pool-accent, #f5b922);
  border-radius: 20px 20px 0 0;
}

/* Status badge row */
.pool-status-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 0;
  gap: 8px;
}
.pool-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2ecc71;
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.25);
  padding: 3px 8px;
  border-radius: 999px;
}
.pool-countdown {
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  background: rgba(245,185,34,0.1);
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245,185,34,0.2);
}

/* Icon visual */
.pool-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 14px;
  position: relative;
}
.pool-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 2px solid var(--pool-accent, #f5b922);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--pool-accent, #f5b922);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 22px rgba(0,0,0,0.4), inset 0 0 16px rgba(255,255,255,0.03);
}
.pool-glow {
  position: absolute;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--pool-accent, #f5b922);
  opacity: 0.08;
  filter: blur(28px);
  z-index: 1;
}

/* Pool body */
.pool-body {
  padding: 0 16px 4px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pool-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}
.pool-prize-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(245,185,34,0.08);
  border: 1px solid rgba(245,185,34,0.2);
  border-radius: 10px;
  padding: 8px 12px;
}
.pool-prize-row i { color: var(--gold); font-size: 13px; }
.pool-prize {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(90deg, #ffd97a, #f5b922);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stats row */
.pool-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 10px 12px;
  gap: 8px;
}
.pool-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.pool-stat i {
  color: var(--pool-accent, #f5b922);
  font-size: 13px;
  flex-shrink: 0;
}
.pool-stat-num {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.pool-stat-label {
  display: block;
  font-size: 9px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.pool-stat-sep {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* Progress */
.pool-progress-wrap { display: flex; flex-direction: column; gap: 6px; }
.pool-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-dim);
}
.pool-progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  overflow: hidden;
}
.pool-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pool-accent, #f5b922), #fff8);
  border-radius: 999px;
  transition: width 0.8s ease;
}

/* Footer */
.pool-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 18px;
  margin-top: auto;
}
.pool-join-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pool-accent, #f5b922), #f5b922cc);
  color: #000;
  font-weight: 700;
  font-size: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.pool-join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  color: #000;
}
.pool-join-btn i { font-size: 10px; }
.pool-details-link {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.pool-details-link:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

/* Arrow buttons */
.pool-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(10,10,10,0.9);
  border: 1px solid rgba(245,185,34,0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.pool-arrow:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.pool-arrow.hidden { opacity: 0; pointer-events: none; }
.pool-arrow-left  { left: -8px; }
.pool-arrow-right { right: -8px; }

/* Dots */
.pools-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.pool-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.pool-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(245,185,34,0.5);
}

/* ---- Mobile responsive ---- */
@media (max-width: 992px) {
  .pool-card { flex: 0 0 calc(50% - 10px); }
  .pool-arrow-left  { left: -4px; }
  .pool-arrow-right { right: -4px; }
}
@media (max-width: 640px) {
  .pool-card { flex: 0 0 calc(85% - 10px); }
  .pools-header { flex-direction: column; align-items: flex-start; }
  .pool-arrow { display: none; }
  .pools-track { scroll-snap-type: x mandatory; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
  .pools-track::-webkit-scrollbar { display: none; }
  .pool-card { scroll-snap-align: start; }
  .pools-slider-wrapper { overflow: visible; }
}
@media (max-width: 400px) {
  .pool-card { flex: 0 0 92%; }
}
