/* SARA 567 — Dark Navy + Gold + Green (original theme)
   Layout inspired by reference site */

:root {
  --bg: #080c16;
  --bg2: #0d1322;
  --card: #121a2c;
  --card2: #162033;
  --line: rgba(212, 175, 55, 0.16);
  --gold: #d4af37;
  --gold2: #f0d060;
  --green: #00e676;
  --green2: #00c853;
  --text: #f0f2f7;
  --muted: #8a93a8;
  --dim: #5c6578;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --font: 'Poppins', sans-serif;
  --display: 'Orbitron', sans-serif;
  --r: 16px;
  --t: 0.25s ease;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: var(--t); }
img { max-width: 100%; display: block; }

.wrap { width: min(1100px, 92%); margin: 0 auto; }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.88rem;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-green {
  background: linear-gradient(180deg, var(--green), var(--green2));
  color: #041208;
  box-shadow: 0 6px 20px rgba(0, 230, 118, 0.3);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 230, 118, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.45);
}
.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
}

.btn-xl { padding: 16px 40px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.78rem; }
.btn-xs { padding: 6px 14px; font-size: 0.72rem; }

.btn-wa {
  background: #25d366;
  color: #fff;
  width: 100%;
  margin-bottom: 8px;
  border-radius: 10px;
}
.btn-tg {
  background: #0088cc;
  color: #fff;
  width: 100%;
  border-radius: 10px;
}

/* —— Header —— */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 22, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

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

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--gold2), var(--gold));
  color: #1a1200;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.3);
}

.logo-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.logo-text b { color: var(--gold); }

.nav { display: flex; gap: 4px; }
.nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
}
.nav a:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

/* —— Hero —— */
.hero {
  padding: 48px 0 56px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212, 175, 55, 0.1), transparent 60%),
    var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-visual { position: relative; }

.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 24px;
  border: 2px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(212, 175, 55, 0.08);
}

.hero-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(8, 12, 22, 0.88);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.hero-badge img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}
.hero-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold2);
}

.hero-cta { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.25);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-cta h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 2px;
  color: var(--gold2);
  text-shadow: 0 0 36px rgba(212, 175, 55, 0.3);
}
.hero-cta h1 span { color: var(--gold); }

.sub {
  margin: 12px 0 26px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

/* —— Sections —— */
.section { padding: 56px 0; }
.section-alt { background: var(--bg2); }

.title {
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--gold);
}
.title i { margin-right: 8px; color: var(--green); }

/* —— Winners —— */
.winners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.winner-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--t), border-color var(--t);
}
.winner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
}

.winner-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 3px solid rgba(212, 175, 55, 0.35);
  object-fit: cover;
}

.winner-card h3 { font-size: 1rem; margin-bottom: 6px; }
.winner-card .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
}
.winner-card .game {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
}

/* —— Lucky —— */
.lucky-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.lucky-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}
.lucky-card strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.nums {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}
.nums span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold2), var(--gold));
  color: #1a1200;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.lucky-card em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
}

/* —— Withdrawal —— */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.stat {
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  color: #fff;
}
.stat b { display: block; font-size: 1.4rem; font-weight: 800; }
.stat span { font-size: 0.78rem; opacity: 0.92; }

.s-green { background: linear-gradient(135deg, #22c55e, #15803d); }
.s-gold { background: linear-gradient(135deg, #f0d060, #b8860b); color: #1a1200; }
.s-blue { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.s-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); }

.withdraw-list {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.withdraw-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.withdraw-row:last-child { border-bottom: none; }
.withdraw-row img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.25);
}
.withdraw-row div { flex: 1; }
.withdraw-row strong { display: block; font-size: 0.92rem; }
.withdraw-row small { color: var(--muted); font-size: 0.75rem; }
.withdraw-row .amt {
  font-weight: 800;
  color: var(--green);
  font-size: 1.05rem;
}

/* —— Features —— */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feat {
  border-radius: var(--r);
  padding: 28px 18px;
  text-align: center;
  color: #fff;
}
.feat i { font-size: 1.7rem; margin-bottom: 12px; }
.feat h3 { font-size: 1rem; margin-bottom: 4px; }
.feat p { font-size: 0.8rem; opacity: 0.9; }

.f-green { background: linear-gradient(145deg, #34d399, #059669); }
.f-gold { background: linear-gradient(145deg, #f0d060, #b8860b); color: #1a1200; }
.f-blue { background: linear-gradient(145deg, #60a5fa, #2563eb); }
.f-purple { background: linear-gradient(145deg, #a78bfa, #7c3aed); }

/* —— Markets —— */
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.m-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  transition: transform var(--t), border-color var(--t);
}
.m-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.4);
}

.m-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.m-head h3 { font-size: 0.88rem; font-weight: 700; }

.live {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 3px 10px;
  border-radius: 999px;
}

.m-result {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold2);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.m-card p {
  font-size: 0.75rem;
  color: var(--dim);
  margin-bottom: 14px;
}

/* —— Table —— */
.table-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  padding: 14px 18px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
}

td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  color: var(--muted);
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(212, 175, 55, 0.04); }
.payout { color: var(--green); font-weight: 700; }

/* —— Steps —— */
.steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.step {
  width: 150px;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 14px;
  position: relative;
}

.step-num {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #041208;
  font-size: 0.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.step-ico {
  width: 56px;
  height: 56px;
  margin: 8px auto 12px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.step h3 { font-size: 0.88rem; }

/* —— FAQ —— */
.faq {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 500;
}
details[open] summary::after { content: '−'; }

details p {
  padding: 0 20px 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* —— CTA —— */
.cta-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.cta-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.cta-copy { padding: 32px 32px 32px 0; }
.cta-copy h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--gold);
}
.cta-copy p {
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 420px;
}

/* —— Footer —— */
.footer {
  background: #060910;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 28px;
  padding-bottom: 36px;
}

.about {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.6;
}

.footer h4 {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-grid > div:nth-child(2),
.footer-grid > div:nth-child(3) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-grid > div:nth-child(2) a,
.footer-grid > div:nth-child(3) a {
  font-size: 0.88rem;
  color: var(--muted);
}
.footer-grid > div:nth-child(2) a:hover,
.footer-grid > div:nth-child(3) a:hover { color: var(--gold); }

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

/* —— FAB —— */
.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--green), var(--green2));
  color: #041208;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  box-shadow: 0 8px 24px rgba(0, 230, 118, 0.4);
}
.fab:hover { transform: scale(1.06); }

/* —— Responsive —— */
@media (max-width: 960px) {
  .nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-img { height: 320px; }
  .winners-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .lucky-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .market-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { grid-template-columns: 1fr; }
  .cta-copy { padding: 24px; text-align: center; }
  .cta-copy p { margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .lucky-grid { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-img { height: 260px; }
  .table-wrap { overflow-x: auto; }
  table { min-width: 480px; }
}
