/* site-003 slots-hk-top.info — retro arcade neon (DNA spec v1)
   Distinct from site-001 (teal industrial) and site-002 (green felt baccarat).
   Dark mode primary. System fonts only (no @import). */

:root {
  --primary: #6C2BD9;
  --primary-dark: #3f1480;
  --primary-darker: #1c0838;
  --secondary: #FF6B35;
  --accent: #14F1D9;
  --neon-pink: #FF4DC9;
  --gold: #FFD23F;

  --bg: #0B0817;
  --bg-alt: #140d27;
  --bg-card: #1a1233;
  --text: #F0ECFF;
  --text-muted: #9B92C4;
  --border: #2a1f54;
  --border-strong: #4f3ba0;

  --shadow-glow: 0 0 24px rgba(108,43,217,0.35), 0 0 48px rgba(20,241,217,0.12);
  --shadow-card: 0 12px 32px rgba(0,0,0,0.55), 0 0 1px var(--border-strong);
  --shadow-hover: 0 20px 44px rgba(108,43,217,0.45), 0 0 18px rgba(20,241,217,0.25);

  --radius: 12px;
  --radius-lg: 20px;

  --display: "Rubik", "Segoe UI", -apple-system, BlinkMacSystemFont, "PingFang TC", "Microsoft JhengHei", sans-serif;
  --body: "Inter", "Helvetica Neue", -apple-system, BlinkMacSystemFont, "PingFang TC", "Microsoft JhengHei", sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(108,43,217,0.28), transparent 60%),
    radial-gradient(ellipse at 85% 10%, rgba(20,241,217,0.12), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  margin: 0;
  color: var(--text);
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(28px, 4.5vw, 52px); }
h2 { font-size: clamp(22px, 3vw, 36px); }
h3 { font-size: clamp(18px, 2vw, 24px); }
p { margin: 0; color: var(--text-muted); }
a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--secondary); }
img, svg, video { display: block; max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; }
small { font-size: 12px; color: var(--text-muted); }
hr { border: 0; border-top: 1px solid var(--border); margin: 32px 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ─── Header ─── */
.site-header {
  background: linear-gradient(180deg, rgba(11,8,23,0.92), rgba(11,8,23,0.72));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1180px; margin: 0 auto; padding: 16px 24px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--neon-pink));
  box-shadow: 0 0 12px rgba(108,43,217,0.6), inset 0 0 8px rgba(255,255,255,0.15);
  display: grid; place-items: center;
  color: #fff; font-weight: 900; font-family: var(--display); font-size: 16px;
  letter-spacing: 0.02em;
}
.brand-name strong { display: block; color: var(--text); font-size: 17px; font-weight: 700; font-family: var(--display); letter-spacing: 0.01em; }
.brand-name small { color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.main-nav { display: none; gap: 26px; font-size: 14px; font-weight: 600; align-items: center; }
.main-nav a { color: var(--text); transition: color 0.15s; font-family: var(--display); }
.main-nav a:hover { color: var(--accent); }
.main-nav a.active { color: var(--accent); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.main-nav a.cta {
  background: linear-gradient(135deg, var(--secondary), var(--neon-pink));
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255,107,53,0.5);
}
.main-nav a.cta:hover { color: #fff; filter: brightness(1.12); }
.hamburger { display: flex; flex-direction: column; gap: 5px; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--accent); }
.mobile-drawer { display: none; flex-direction: column; padding: 16px; gap: 12px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.mobile-drawer.open { display: flex; }
.mobile-drawer a { color: var(--text); font-size: 16px; font-weight: 600; padding: 8px; }
@media (min-width: 900px) { .main-nav { display: flex; } .hamburger { display: none; } }

/* ─── Hero — jackpot-meter-center ─── */
.hero { padding: 72px 0 96px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(108,43,217,0.22), transparent 55%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 900px; margin: 0 auto; text-align: center; padding: 0 24px; }
.hero-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(20,241,217,0.08);
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid rgba(20,241,217,0.35);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--display);
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 50%, var(--neon-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
.hero-sub { font-size: 17px; color: var(--text-muted); max-width: 680px; margin: 0 auto 36px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Jackpot meter widget */
.jackpot-meter {
  margin: 48px auto 0;
  max-width: 720px;
  padding: 28px 32px;
  background:
    linear-gradient(180deg, rgba(26,18,51,0.85), rgba(11,8,23,0.9)),
    radial-gradient(circle at 30% 20%, rgba(108,43,217,0.3), transparent 50%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
}
.jackpot-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.jackpot-digits { display: flex; gap: 6px; justify-content: center; font-family: var(--display); font-weight: 900; font-size: clamp(32px, 6vw, 60px); letter-spacing: 0.05em; }
.digit {
  min-width: 46px; padding: 10px 6px;
  background: linear-gradient(180deg, #1c0838, #0b0817);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  text-align: center;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255,210,63,0.65), 0 0 24px rgba(255,210,63,0.35);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.6);
}
.jackpot-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; padding-top: 20px; border-top: 1px dashed var(--border-strong); }
.jackpot-stat { text-align: center; }
.jackpot-stat .num { display: block; font-family: var(--display); font-size: 22px; font-weight: 800; color: var(--accent); }
.jackpot-stat .label { display: block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  font-family: var(--display);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--neon-pink));
  color: #fff;
  box-shadow: 0 0 24px rgba(108,43,217,0.55);
}
.btn-primary:hover { filter: brightness(1.12); box-shadow: 0 0 32px rgba(108,43,217,0.75); color: #fff; }
.btn-secondary { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-secondary:hover { background: rgba(20,241,217,0.08); color: var(--accent); }
.btn-neon {
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  color: #0b0817;
  box-shadow: 0 0 24px rgba(255,107,53,0.5);
}
.btn-neon:hover { filter: brightness(1.1); color: #0b0817; }

/* ─── Sections ─── */
.section { padding: 80px 0; }
.section-dark { background: linear-gradient(180deg, var(--bg), var(--bg-alt)); }
.section-glow { background: radial-gradient(ellipse at center, rgba(108,43,217,0.14), transparent 70%), var(--bg-alt); }
.section-kicker { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.section-title { max-width: 780px; }
.section-sub { color: var(--text-muted); max-width: 720px; margin: 14px 0 36px; font-size: 17px; }

/* ─── Reel-card grid ─── */
.reel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.reel-card {
  display: block;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.reel-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  opacity: 0.7;
}
.reel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--primary); color: var(--text); }
.reel-card .reel-num { font-family: var(--display); font-size: 40px; font-weight: 900; color: var(--accent); line-height: 1; text-shadow: 0 0 16px rgba(20,241,217,0.4); margin-bottom: 12px; }
.reel-card h3 { color: var(--text); margin-bottom: 10px; font-size: 19px; }
.reel-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.reel-card .arrow { display: inline-block; margin-top: 16px; color: var(--accent); font-weight: 700; font-family: var(--display); }

/* ─── Callout cards ─── */
.callout-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 36px; }
.callout-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
}
.callout-card:nth-child(2) { border-left-color: var(--secondary); }
.callout-card:nth-child(3) { border-left-color: var(--neon-pink); }
.callout-card .callout-badge { display: inline-block; font-family: var(--display); font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.callout-card:nth-child(2) .callout-badge { color: var(--secondary); }
.callout-card:nth-child(3) .callout-badge { color: var(--neon-pink); }
.callout-card h3 { color: var(--text); margin-bottom: 8px; font-size: 19px; }
.callout-card p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* ─── Slot machine panel (reviews) ─── */
.panel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.slot-panel {
  display: block;
  background:
    linear-gradient(180deg, rgba(26,18,51,0.95), rgba(11,8,23,0.95)),
    radial-gradient(circle at 50% 0%, rgba(20,241,217,0.15), transparent 60%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.slot-panel:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); color: var(--text); }
.slot-panel .rank-tag {
  display: inline-block;
  font-family: var(--display);
  font-size: 10px; font-weight: 900;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.slot-panel h3 { color: var(--text); font-size: 22px; margin-bottom: 8px; }
.slot-panel .meta { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; line-height: 1.65; }
.slot-panel .score-block { display: flex; align-items: baseline; gap: 10px; padding: 16px 0; border-top: 1px dashed var(--border-strong); border-bottom: 1px dashed var(--border-strong); margin-bottom: 18px; }
.slot-panel .score-num { font-family: var(--display); font-size: 46px; font-weight: 900; color: var(--gold); line-height: 1; text-shadow: 0 0 14px rgba(255,210,63,0.55); }
.slot-panel .score-suffix { font-size: 16px; color: var(--text-muted); font-weight: 600; }
.slot-panel .score-tag { margin-left: auto; font-size: 12px; color: var(--accent); font-family: var(--display); text-transform: uppercase; letter-spacing: 0.1em; }
.slot-panel .more { color: var(--accent); font-family: var(--display); font-weight: 700; font-size: 14px; }

/* ─── Trust block ─── */
.trust-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-top: 20px;
}
.trust-block h4 { color: var(--text); font-size: 18px; font-family: var(--display); margin-bottom: 14px; }
.trust-block ul { list-style: none; margin-top: 14px; }
.trust-block li { color: var(--text-muted); padding: 6px 0 6px 24px; position: relative; }
.trust-block li::before { content: "◆"; color: var(--accent); position: absolute; left: 0; font-size: 10px; top: 12px; }
.trust-block a { color: var(--accent); }

/* ─── Article body ─── */
.article { max-width: 780px; margin: 0 auto; padding: 56px 24px 80px; }
.article .crumbs { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.article .crumbs a { color: var(--accent); }
.article h1 { margin-bottom: 20px; font-size: clamp(28px, 4vw, 44px); color: var(--text); }
.article .lede { font-size: 18px; color: var(--text-muted); margin-bottom: 32px; }
.article h2 { margin-top: 42px; margin-bottom: 14px; color: var(--text); padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.article h3 { margin-top: 28px; margin-bottom: 10px; color: var(--text); }
.article p { margin: 14px 0; color: var(--text-muted); line-height: 1.85; }
.article ul, .article ol { margin: 14px 0; padding-left: 22px; color: var(--text-muted); line-height: 1.8; }
.article li { margin: 6px 0; }
.article img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 24px 0;
  box-shadow: var(--shadow-card);
}
.article .cta-box {
  background: linear-gradient(135deg, rgba(108,43,217,0.22), rgba(20,241,217,0.08));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
  text-align: center;
}
.article .faq-block { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-top: 40px; }
.article .faq-item { padding: 14px 0; border-bottom: 1px solid var(--border); }
.article .faq-item:last-child { border-bottom: 0; }
.article .faq-q { font-weight: 700; color: var(--text); margin-bottom: 6px; font-family: var(--display); }
.article .faq-a { color: var(--text-muted); font-size: 14px; line-height: 1.75; }

/* ─── Score table ─── */
.score-table { width: 100%; border-collapse: collapse; margin: 20px 0 32px; background: var(--bg-card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.score-table th, .score-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
.score-table th { background: var(--bg-alt); color: var(--accent); font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; }
.score-table tr:last-child td { border-bottom: 0; }
.score-table td:last-child { text-align: right; color: var(--gold); font-weight: 700; font-family: var(--display); }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0; }
@media (max-width: 700px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-cons .box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.pros-cons .box.pros { border-left: 3px solid var(--accent); }
.pros-cons .box.cons { border-left: 3px solid var(--secondary); }
.pros-cons h4 { color: var(--text); font-size: 14px; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.pros-cons ul { list-style: none; padding: 0; }
.pros-cons li { padding: 6px 0 6px 22px; position: relative; color: var(--text-muted); font-size: 14px; }
.pros-cons .pros li::before { content: "✓"; color: var(--accent); position: absolute; left: 0; font-weight: 900; }
.pros-cons .cons li::before { content: "×"; color: var(--secondary); position: absolute; left: 0; font-weight: 900; }

/* ─── Footer ─── */
.site-footer {
  background: linear-gradient(180deg, var(--bg-alt), #070510);
  color: var(--text-muted);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
  margin-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer-brand strong { display: block; color: var(--text); font-size: 18px; font-family: var(--display); margin-bottom: 8px; }
.footer-brand p { color: var(--text-muted); font-size: 13px; line-height: 1.7; }
.footer-col h5 { color: var(--accent); font-size: 11px; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 13px; padding: 4px 0; }
.footer-col a:hover { color: var(--accent); }
.footer-note { font-size: 11px; color: var(--text-muted); padding-top: 24px; border-top: 1px solid var(--border); line-height: 1.7; }
.footer-note a { color: var(--accent); }

/* Article hero image bg */
.article-hero {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.article-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,8,23,0.35) 0%, rgba(11,8,23,0.95) 100%);
}

.article-thumb {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 14px;
}
