/* ============================================================
   Casino Aurora — Doanh Nghiệp Cao Cấp
   Deep-navy + Aurora Teal/Violet + Gold enterprise theme
   ============================================================ */
:root {
    --bg: #070b18;
    --bg-2: #0b1226;
    --bg-3: #101a36;
    --surface: rgba(255, 255, 255, .045);
    --surface-2: rgba(255, 255, 255, .085);
    --line: rgba(255, 255, 255, .09);
    --text: #eef3ff;
    --muted: #98a2c8;
    --aur: #22e6c3;
    --au2: #7b61ff;
    --gold: #f6c453;
    --gold-2: #ffdf8e;
    --red: #ff5d7a;
    --grad-aur: linear-gradient(120deg, var(--aur), var(--au2));
    --grad-gold: linear-gradient(120deg, #f6c453, #e79a3c);
    --radius: 18px;
    --radius-sm: 12px;
    --shadow-1: 0 10px 30px rgba(3, 6, 18, .55);
    --shadow-aur: 0 8px 32px rgba(34, 230, 195, .22);
    --shadow-gold: 0 8px 30px rgba(246, 196, 83, .25);
    --container: 1200px;
    --header-h: 74px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }

/* ---------- Backdrop: aurora sky + grid ---------- */
.aurora-bg { position: fixed; inset: 0; z-index: -2; overflow: hidden; background:
    radial-gradient(1100px 520px at 85% -10%, rgba(123, 97, 255, .16), transparent 60%),
    radial-gradient(900px 480px at 8% 12%, rgba(34, 230, 195, .12), transparent 60%),
    var(--bg); }
.aurora-bg::after {
    content: ""; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(720px 420px at 50% 0%, #000 30%, transparent 78%);
    -webkit-mask-image: radial-gradient(720px 420px at 50% 0%, #000 30%, transparent 78%);
}
.aurora-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; animation: blobDrift 16s ease-in-out infinite alternate; }
.aurora-blob.b1 { width: 420px; height: 420px; background: rgba(34, 230, 195, .30); top: -120px; left: -100px; }
.aurora-blob.b2 { width: 520px; height: 520px; background: rgba(123, 97, 255, .28); top: 22%; right: -160px; animation-delay: -6s; }
.aurora-blob.b3 { width: 360px; height: 360px; background: rgba(246, 196, 83, .14); bottom: -140px; left: 32%; animation-delay: -11s; }
@keyframes blobDrift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(46px, 34px, 0) scale(1.14); }
}

/* ---------- Header ---------- */
.aur-header {
    position: sticky; top: 0; z-index: 90;
    background: rgba(7, 11, 24, .78);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.aur-header .inner { display: flex; align-items: center; gap: 20px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 21px; letter-spacing: .4px; white-space: nowrap; }
.brand .mark {
    width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
    background: var(--grad-aur); color: #04101c; font-size: 19px;
    box-shadow: var(--shadow-aur);
}
.brand .txt b { background: var(--grad-aur); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.aur-nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.aur-nav > li { position: relative; }
.aur-nav > li > a {
    display: block; padding: 9px 13px; border-radius: 10px; font-size: 15px; font-weight: 600;
    color: var(--muted); transition: color .25s, background .25s;
}
.aur-nav > li > a:hover, .aur-nav > li > a.active { color: var(--text); background: var(--surface-2); }
.aur-nav .has-sub > a::after { content: " ▾"; font-size: 11px; opacity: .7; }
.aur-nav .sub {
    position: absolute; top: calc(100% + 8px); left: 0; min-width: 200px; padding: 8px;
    background: rgba(13, 20, 42, .97); border: 1px solid var(--line); border-radius: 14px;
    box-shadow: var(--shadow-1); opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all .25s ease;
}
.aur-nav li:hover .sub, .aur-nav li:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.aur-nav .sub a { display: block; padding: 9px 12px; border-radius: 9px; font-size: 14px; color: var(--muted); }
.aur-nav .sub a:hover { color: var(--text); background: var(--surface); }
.header-cta { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2.5px; border-radius: 2px; background: var(--text); transition: all .3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 13px 30px; border-radius: 999px; border: 0; cursor: pointer;
    font-size: 15.5px; font-weight: 700; letter-spacing: .3px;
    transition: transform .22s, box-shadow .22s, filter .22s;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-aur { background: var(--grad-aur); color: #04101c; box-shadow: var(--shadow-aur); }
.btn-gold { background: var(--grad-gold); color: #2a1a02; box-shadow: var(--shadow-gold); }
.btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--line); }
.btn-sm { padding: 9px 20px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 96px 0 60px; overflow: hidden; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero-kicker {
    display: inline-flex; align-items: center; gap: 9px; padding: 8px 18px; margin-bottom: 22px;
    border-radius: 999px; font-size: 13.5px; font-weight: 700; color: var(--gold-2);
    background: rgba(246, 196, 83, .1); border: 1px solid rgba(246, 196, 83, .32);
}
.hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: glowPulse 1.6s infinite; }
.hero h1 { font-size: clamp(34px, 4.6vw, 56px); line-height: 1.16; font-weight: 900; letter-spacing: -.5px; margin-bottom: 20px; }
.hero h1 .hl { background: var(--grad-aur); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .lead { font-size: clamp(15.5px, 1.5vw, 18px); color: var(--muted); max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; color: var(--muted); font-size: 14px; }
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust .tk { color: var(--aur); font-weight: 800; }

/* Hero stats panel */
.hero-panel {
    position: relative; padding: 34px 30px; border-radius: 24px;
    background: linear-gradient(160deg, rgba(255,255,255,.075), rgba(255,255,255,.02));
    border: 1px solid var(--line); box-shadow: var(--shadow-1); backdrop-filter: blur(10px);
}
.hero-panel::before {
    content: ""; position: absolute; inset: -1px; border-radius: 25px; padding: 1px;
    background: linear-gradient(140deg, rgba(34,230,195,.5), transparent 34%, transparent 66%, rgba(246,196,83,.42));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.jackpot-label { font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); text-align: center; }
.jackpot-val {
    font-size: clamp(30px, 3.4vw, 42px); font-weight: 900; text-align: center; margin: 6px 0 24px;
    font-variant-numeric: tabular-nums; letter-spacing: 1px;
    background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: 0 0 42px rgba(246, 196, 83, .3);
}
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hstat { padding: 16px 14px; border-radius: 15px; background: var(--surface); border: 1px solid var(--line); text-align: center; }
.hstat b { display: block; font-size: 23px; font-weight: 900; color: var(--aur); font-variant-numeric: tabular-nums; }
.hstat span { font-size: 12.5px; color: var(--muted); }

/* Floating chips */
.chip { position: absolute; z-index: 1; display: grid; place-items: center; font-size: 24px; width: 58px; height: 58px; border-radius: 50%;
    background: var(--surface-2); border: 1px solid var(--line); backdrop-filter: blur(6px);
    animation: chipFloat 7s ease-in-out infinite; box-shadow: var(--shadow-1); }
.chip.c1 { top: 16%; left: 5%; animation-delay: -1s; }
.chip.c2 { top: 62%; left: 12%; animation-delay: -3.2s; }
.chip.c3 { top: 24%; right: 7%; animation-delay: -2s; }
.chip.c4 { bottom: 10%; right: 13%; animation-delay: -4.6s; }
@keyframes chipFloat { 0%, 100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-20px) rotate(5deg); } }
@keyframes glowPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(246, 196, 83, .55); } 50% { box-shadow: 0 0 0 7px rgba(246, 196, 83, 0); } }

/* ---------- Ticker ---------- */
.ticker { border-block: 1px solid var(--line); background: rgba(11, 18, 38, .65); overflow: hidden; }
.ticker-track { display: flex; gap: 54px; padding: 13px 0; width: max-content; animation: marquee 26s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); white-space: nowrap; }
.ticker-item b { color: var(--gold-2); font-variant-numeric: tabular-nums; }
.ticker-item .up { color: var(--aur); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections shared ---------- */
.section { padding: 76px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(16, 26, 54, .5) 22%, rgba(16, 26, 54, .5) 78%, transparent); }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.sec-kicker { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--aur); margin-bottom: 12px; }
.sec-head h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 900; letter-spacing: -.4px; margin-bottom: 14px; }
.sec-head p { color: var(--muted); font-size: 15.5px; }
.sec-head.center-line { position: relative; }
.sec-head .divider { width: 74px; height: 3px; margin: 18px auto 0; border-radius: 3px; background: var(--grad-aur); }

/* ---------- Cards: fishing grid (image cover) ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.game-card {
    position: relative; padding: 0; border-radius: var(--radius);
    background: var(--surface); border: 1px solid var(--line); overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}
.game-cover { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-3); }
.game-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.game-card:hover .game-cover img { transform: scale(1.08); }
.game-cover .gv { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(7,11,24,.88)); }
.game-cover .badge { position: absolute; left: 13px; bottom: 11px; font-size: 12px; font-weight: 800; padding: 5px 12px; border-radius: 999px; color: #04101c; background: var(--grad-aur); box-shadow: var(--shadow-aur); }
.game-body { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 20px; }
.game-card::before {
    content: ""; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.07), transparent);
    transform: skewX(-18deg); transition: left .6s ease;
}
.game-card:hover { transform: translateY(-7px); border-color: rgba(34, 230, 195, .45); box-shadow: var(--shadow-aur); }
.game-card:hover::before { left: 130%; }
.game-card .ribbon {
    position: absolute; top: 15px; right: -34px; transform: rotate(42deg); width: 128px; text-align: center;
    font-size: 11px; font-weight: 800; letter-spacing: 1px; padding: 5px 0; color: #2a1a02; background: var(--grad-gold);
}
.game-card h3 { font-size: 18.5px; font-weight: 800; margin-bottom: 9px; }
.game-card p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.game-card .meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.tag-rtp { font-size: 12px; font-weight: 800; color: var(--aur); background: rgba(34, 230, 195, .1); border: 1px solid rgba(34, 230, 195, .3); padding: 4px 11px; border-radius: 999px; }

/* ---------- Slots: horizontal scroll ---------- */
.hscroll { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(258px, 1fr); gap: 18px; overflow-x: auto; padding: 6px 4px 22px; scroll-snap-type: x mandatory; }
.hscroll::-webkit-scrollbar { height: 8px; }
.hscroll::-webkit-scrollbar-track { background: var(--surface); border-radius: 8px; }
.hscroll::-webkit-scrollbar-thumb { background: linear-gradient(90deg, var(--aur), var(--au2)); border-radius: 8px; }
.slot-card { scroll-snap-align: start; position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-3); transition: transform .3s, border-color .3s; }
.slot-card:hover { transform: translateY(-6px); border-color: rgba(246, 196, 83, .5); }
.slot-visual { height: 172px; position: relative; overflow: hidden; background: var(--bg-3); }
.slot-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.slot-card:hover .slot-visual img { transform: scale(1.09) rotate(.6deg); }
.slot-visual .sv-glow { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(7,11,24,.72)); }
.slot-hot { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 999px; background: var(--red); color: #fff; animation: glowPulseRed 1.8s infinite; }
@keyframes glowPulseRed { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 93, 122, .6); } 50% { box-shadow: 0 0 0 7px rgba(255, 93, 122, 0); } }
.slot-body { padding: 16px 18px 20px; }
.slot-body h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 4px; }
.slot-body .payline { font-size: 12.5px; color: var(--muted); margin-bottom: 13px; }

/* ---------- Sports: asymmetric split ---------- */
.split-75 { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; }
.sports-main { position: relative; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-2); padding: 30px; overflow: hidden; }
.sports-main .sm-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.sports-main > * { position: relative; }
.sports-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(11,18,38,.94) 30%, rgba(11,18,38,.55)); }
.sports-main > * { z-index: 1; }
.sports-main .lg { font-size: 42px; margin-bottom: 14px; }
.sports-main h3 { font-size: 23px; font-weight: 900; margin-bottom: 10px; }
.sports-main p { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }
.odds-table { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.odds-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; align-items: center; padding: 12px 16px; font-size: 14px; background: var(--surface); }
.odds-row + .odds-row { border-top: 1px solid var(--line); }
.odds-row.head { background: rgba(123, 97, 255, .14); font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.odds-row .team { font-weight: 700; }
.odds-row .o { text-align: center; font-variant-numeric: tabular-nums; font-weight: 700; color: var(--gold-2); }
.sports-side { display: grid; gap: 20px; }
.sports-mini { border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); padding: 22px; display: flex; gap: 16px; align-items: center; transition: transform .3s, border-color .3s; }
.sports-mini:hover { transform: translateX(6px); border-color: rgba(123, 97, 255, .5); }
.sports-mini .ic { font-size: 34px; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 16px; background: var(--surface-2); flex-shrink: 0; }
.sports-mini h4 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.sports-mini p { font-size: 13px; color: var(--muted); }

/* ---------- Live casino: featured + minis ---------- */
.live-wrap { display: grid; grid-template-columns: 1.35fr 1fr; gap: 20px; }
.live-featured {
    position: relative; border-radius: 22px; overflow: hidden; min-height: 380px;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 34px;
    background: var(--bg-2);
    border: 1px solid var(--line);
}
.live-featured .lf-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.live-featured::after { content: ""; position: absolute; inset: 0; background: linear-gradient(15deg, rgba(7,11,24,.96) 22%, rgba(7,11,24,.45) 60%, rgba(123,97,255,.22)); }
.live-featured > * { position: relative; z-index: 1; }
.live-featured .lf-tag { align-self: flex-start; font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; background: rgba(255, 93, 122, .16); color: #ff8ba0; border: 1px solid rgba(255, 93, 122, .4); margin-bottom: 16px; }
.live-featured h3 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 900; margin-bottom: 10px; }
.live-featured p { color: #c6cdec; font-size: 15px; max-width: 430px; margin-bottom: 22px; }
.live-featured .lf-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.live-badge-live { position: absolute; top: 24px; right: 24px; display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 800; letter-spacing: 1px; color: #fff; background: rgba(255, 93, 122, .9); padding: 6px 14px; border-radius: 999px; }
.live-badge-live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: glowPulse 1.4s infinite; }
.live-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.live-mini { border-radius: 18px; border: 1px solid var(--line); background: var(--surface); overflow: hidden; text-align: center; transition: transform .3s, border-color .3s, box-shadow .3s; display: flex; flex-direction: column; }
.live-mini:hover { transform: translateY(-6px); border-color: rgba(246, 196, 83, .45); box-shadow: var(--shadow-gold); }
.live-mini .pic { height: 128px; background: var(--bg-3); overflow: hidden; }
.live-mini .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.live-mini:hover .pic img { transform: scale(1.08); }
.live-mini .lb { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.live-mini h4 { font-size: 16.5px; font-weight: 800; margin-bottom: 6px; }
.live-mini p { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.live-mini .btn { margin-top: auto; align-self: center; }

/* ---------- Promotions glow cards ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.promo-card { position: relative; padding: 28px 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid rgba(246, 196, 83, .22); overflow: hidden; transition: transform .3s, box-shadow .3s; }
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.promo-card .pct { font-size: 34px; font-weight: 900; margin-bottom: 8px; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.promo-card h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
.promo-card p { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.promo-card .code { display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: 1.5px; padding: 6px 14px; border-radius: 8px; border: 1px dashed rgba(246, 196, 83, .55); color: var(--gold-2); }

/* ---------- News (CMS) ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.news-card { display: grid; grid-template-columns: 200px 1fr; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--surface); transition: transform .3s, border-color .3s; }
.news-card:hover { transform: translateY(-5px); border-color: rgba(34, 230, 195, .45); }
.news-thumb { position: relative; min-height: 168px; background: linear-gradient(140deg, #16305a, #101a36); overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.news-thumb .ph { position: absolute; inset: 0; display: grid; place-items: center; font-size: 40px; opacity: .5; }
.news-body { padding: 20px 22px; }
.news-body h3 { font-size: 17px; font-weight: 800; line-height: 1.45; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-body h3 a:hover { color: var(--aur); }
.news-body p { font-size: 13.8px; color: var(--muted); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-meta { display: flex; gap: 16px; font-size: 12.5px; color: var(--muted); }
.news-meta .cat { color: var(--aur); font-weight: 700; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border-radius: 15px; border: 1px solid var(--line); background: var(--surface); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: rgba(34, 230, 195, .42); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 22px; background: none; border: 0; color: var(--text); font-size: 16px; font-weight: 700; text-align: left; cursor: pointer; }
.faq-q .fx { flex-shrink: 0; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: var(--surface-2); font-weight: 900; color: var(--aur); transition: transform .3s; }
.faq-item.open .fx { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }

/* ---------- Bottom CTA ---------- */
.cta-band { padding: 84px 0; }
.cta-box {
    position: relative; border-radius: 26px; padding: 58px 40px; text-align: center; overflow: hidden;
    background: linear-gradient(135deg, rgba(34, 230, 195, .14), rgba(123, 97, 255, .16)), var(--bg-2);
    border: 1px solid var(--line);
}
.cta-box h2 { font-size: clamp(25px, 3vw, 36px); font-weight: 900; margin-bottom: 14px; }
.cta-box p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-box::after { content: "🎰"; position: absolute; right: -30px; bottom: -34px; font-size: 190px; opacity: .06; transform: rotate(-16deg); }

/* ---------- Footer ---------- */
.aur-footer { border-top: 1px solid var(--line); background: rgba(7, 11, 24, .85); margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; padding: 56px 0 40px; }
.aur-footer h4 { font-size: 15px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; color: var(--text); }
.aur-footer h4::after { content: ""; display: block; width: 30px; height: 2.5px; border-radius: 2px; background: var(--grad-aur); margin-top: 9px; }
.f-about p { font-size: 13.8px; color: var(--muted); margin: 14px 0 18px; }
.f-badges { display: flex; flex-wrap: wrap; gap: 9px; }
.f-badge { font-size: 11.5px; font-weight: 700; padding: 6px 12px; border-radius: 8px; border: 1px solid var(--line); color: var(--muted); background: var(--surface); }
.f-links li { margin-bottom: 11px; }
.f-links a { font-size: 14px; color: var(--muted); transition: color .25s, padding-left .25s; }
.f-links a:hover { color: var(--aur); padding-left: 5px; }
.f-contact li { display: flex; gap: 11px; font-size: 14px; color: var(--muted); margin-bottom: 13px; }
.f-contact .ic { color: var(--gold); }
.friend-link { border-top: 1px solid var(--line); padding: 18px 0; }
.friend-link ul { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; }
.friend-link li { font-size: 13px; color: var(--muted); }
.friend-link a { color: var(--muted); transition: color .25s; }
.friend-link a:hover { color: var(--aur); }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 0; text-align: center; font-size: 13px; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--aur); }

/* ---------- Partners logo bar ---------- */
.partner-bar { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; }
.partner-item { display: grid; place-items: center; padding: 16px 10px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); transition: transform .3s, border-color .3s, background .3s; }
.partner-item:hover { transform: translateY(-4px); border-color: rgba(34,230,195,.4); background: var(--surface-2); }
.partner-item img { max-width: 100%; height: 44px; object-fit: contain; filter: grayscale(.6) brightness(1.6); opacity: .75; transition: all .3s; }
.partner-item:hover img { filter: none; opacity: 1; }

/* ---------- Inner pages shared ---------- */
.page-hero { position: relative; overflow: hidden; padding: 64px 0 44px; border-bottom: 1px solid var(--line); background: linear-gradient(160deg, rgba(123,97,255,.14), rgba(11,18,38,.4)), var(--bg-2); }
.page-hero h1 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 900; margin-bottom: 10px; }
.page-hero .ph-desc { color: var(--muted); font-size: 15px; max-width: 720px; }
.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13.5px; color: var(--muted); padding: 16px 0 4px; }
.crumb a { color: var(--muted); transition: color .25s; }
.crumb a:hover { color: var(--aur); }
.crumb .sep { opacity: .5; }
.crumb .cur { color: var(--gold-2); font-weight: 700; }

.layout-2col { display: grid; grid-template-columns: 1fr 340px; gap: 26px; padding: 28px 0 64px; }

/* Post list (article cards with image) */
.post-list { display: grid; gap: 18px; }
.post-card { display: grid; grid-template-columns: 240px 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--surface); transition: transform .3s, border-color .3s; }
.post-card:hover { transform: translateY(-4px); border-color: rgba(34,230,195,.42); }
.post-card .pic { position: relative; min-height: 168px; background: var(--bg-3); overflow: hidden; }
.post-card .pic img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .45s; }
.post-card:hover .pic img { transform: scale(1.06); }
.post-card .pc-body { padding: 20px 22px; display: flex; flex-direction: column; }
.post-card h2 { font-size: 18px; font-weight: 800; line-height: 1.45; margin-bottom: 9px; }
.post-card h2 a:hover { color: var(--aur); }
.post-card .desc { font-size: 14px; color: var(--muted); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 12.5px; color: var(--muted); margin-top: auto; }
.post-meta .cat { color: var(--aur); font-weight: 700; }

/* Sidebar widgets */
.side-widget { border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); padding: 22px; margin-bottom: 20px; }
.side-widget h3 { font-size: 15.5px; font-weight: 800; letter-spacing: .5px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.side-widget h3::before { content: ""; display: inline-block; width: 4px; height: 15px; border-radius: 2px; background: var(--grad-aur); margin-right: 9px; vertical-align: -2px; }
.sw-list li { display: flex; gap: 12px; padding: 9px 0; border-bottom: 1px dashed rgba(255,255,255,.06); }
.sw-list li:last-child { border-bottom: 0; }
.sw-list .rank { flex-shrink: 0; width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center; font-size: 12px; font-weight: 900; color: #04101c; background: var(--grad-aur); }
.sw-list li:nth-child(n+4) .rank { background: var(--surface-2); color: var(--muted); }
.sw-list a { font-size: 14px; color: var(--text); line-height: 1.5; transition: color .25s; }
.sw-list a:hover { color: var(--aur); }
.sw-list time { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.tag-cloud a { font-size: 13px; padding: 7px 15px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); color: var(--muted); transition: all .25s; }
.tag-cloud a:hover { color: #04101c; background: var(--grad-aur); border-color: transparent; }

/* Pagination (system $pagination) */
.pagination-wrap { margin: 30px 0 6px; display: flex; justify-content: center; }
.pagination-wrap ul, .pagination { display: inline-flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.pagination li { list-style: none; }
.pagination a, .pagination span { display: inline-block; min-width: 38px; text-align: center; padding: 9px 13px; border-radius: 11px; border: 1px solid var(--line); background: var(--surface); color: var(--muted); font-size: 14px; font-weight: 600; transition: all .25s; }
.pagination a:hover { color: var(--text); border-color: rgba(34,230,195,.45); }
.pagination .active span, .pagination li.current span { background: var(--grad-aur); color: #04101c; border-color: transparent; }
.pagination .disabled span { opacity: .4; }

/* Detail article */
.detail-card { border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); padding: 34px; }
.detail-card h1 { font-size: clamp(23px, 2.8vw, 32px); font-weight: 900; line-height: 1.35; margin-bottom: 16px; }
.detail-info { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 13px; color: var(--muted); padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.detail-info .dt-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-left: auto; }
.detail-info .dt-tags a { padding: 4px 12px; border-radius: 999px; background: rgba(123,97,255,.12); border: 1px solid rgba(123,97,255,.35); color: #b8a8ff; font-size: 12px; }
.detail-body { font-size: 15.5px; line-height: 1.9; color: #d5dcf5; word-break: break-word; }
.detail-body p { margin-bottom: 16px; }
.detail-body img { max-width: 100%; height: auto; border-radius: 14px; margin: 12px auto; display: block; border: 1px solid var(--line); }
.detail-body h2, .detail-body h3, .detail-body h4 { color: var(--text); margin: 26px 0 12px; font-weight: 800; }
.detail-body h2 { font-size: 21px; }
.detail-body h3 { font-size: 18px; }
.detail-body a { color: var(--aur); text-decoration: underline; text-underline-offset: 3px; }
.detail-body ul, .detail-body ol { padding-left: 22px; margin-bottom: 16px; }
.detail-body ul li { list-style: disc; margin-bottom: 7px; }
.detail-body ol li { list-style: decimal; margin-bottom: 7px; }
.detail-body blockquote { border-left: 3px solid var(--aur); background: var(--surface); padding: 14px 18px; border-radius: 0 12px 12px 0; margin: 16px 0; color: var(--muted); }
.detail-body table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.detail-body th, .detail-body td { border: 1px solid var(--line); padding: 10px 12px; }
.detail-body th { background: var(--surface-2); }
.detail-body pre { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 16px; overflow-x: auto; }

/* Prev / next nav */
.prev-next { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.pn-box { border-radius: 14px; border: 1px solid var(--line); background: var(--surface); padding: 15px 18px; transition: border-color .3s; }
.pn-box:hover { border-color: rgba(34,230,195,.45); }
.pn-box.next { text-align: right; }
.pn-box span { display: block; font-size: 12px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 5px; }
.pn-box a { font-size: 14.5px; font-weight: 700; line-height: 1.45; }
.pn-box a:hover { color: var(--aur); }

/* Tag page header */
.tag-hero { display: flex; align-items: center; gap: 18px; }
.tag-hero .tg-ic { flex-shrink: 0; width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; font-size: 28px; background: linear-gradient(140deg, rgba(34,230,195,.18), rgba(123,97,255,.18)); border: 1px solid var(--line); }

/* Search form */
.search-form { display: flex; gap: 10px; max-width: 560px; }
.search-form input { flex: 1; padding: 13px 18px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); color: var(--text); font-size: 15px; outline: none; transition: border-color .25s; }
.search-form input:focus { border-color: rgba(34,230,195,.5); }

/* Empty state */
.empty-state { text-align: center; padding: 70px 20px; border-radius: var(--radius); border: 1px dashed var(--line); background: var(--surface); }
.empty-state .es-ic { font-size: 52px; margin-bottom: 14px; }
.empty-state p { color: var(--muted); margin-bottom: 20px; }

/* 404 page */
.t404 { min-height: 68vh; display: grid; place-items: center; text-align: center; padding: 60px 20px; }
.t404 .code { font-size: clamp(90px, 16vw, 170px); font-weight: 900; line-height: 1; background: var(--grad-aur); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.t404 p { color: var(--muted); margin: 18px 0 28px; }

/* Img fallback flash */
img[data-fb] { background: linear-gradient(140deg, #101a36, #0b1226); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-panel { max-width: 560px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .split-75 { grid-template-columns: 1fr; }
    .live-wrap { grid-template-columns: 1fr; }
    .live-featured { min-height: 300px; }
    .layout-2col { grid-template-columns: 1fr; }
    .partner-bar { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
    .aur-nav {
        position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 89;
        flex-direction: column; align-items: stretch; gap: 2px;
        background: rgba(9, 14, 30, .98); border-bottom: 1px solid var(--line);
        padding: 14px 20px 20px; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
        transform: translateY(-12px); opacity: 0; visibility: hidden; transition: all .3s ease;
    }
    .aur-nav.open { transform: none; opacity: 1; visibility: visible; }
    .aur-nav > li > a { padding: 12px 14px; font-size: 15.5px; }
    .aur-nav .sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: var(--surface); margin: 4px 0 8px 14px; display: none; }
    .aur-nav .has-sub.open .sub { display: block; }
    .burger { display: flex; }
    .header-cta .btn-ghost { display: none; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .news-card { grid-template-columns: 1fr; }
    .news-thumb { min-height: 190px; }
    .post-card { grid-template-columns: 1fr; }
    .post-card .pic { min-height: 190px; position: relative; }
    .detail-card { padding: 22px 18px; }
    .prev-next { grid-template-columns: 1fr; }
    .pn-box.next { text-align: left; }
}
@media (max-width: 600px) {
    .hero { padding: 60px 0 44px; }
    .hero-actions .btn { flex: 1 1 auto; }
    .grid-3, .grid-4, .grid-2, .live-grid { grid-template-columns: 1fr; }
    .section { padding: 54px 0; }
    .hscroll { grid-auto-columns: minmax(232px, 82%); }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .cta-box { padding: 44px 22px; }
    .brand { font-size: 18px; }
    .brand .txt small { display: none; }
    .odds-row { font-size: 12.5px; padding: 10px 10px; }
    .chip { display: none; }
    .partner-bar { grid-template-columns: repeat(3, 1fr); }
    .game-card .meta { flex-wrap: wrap; }
}
