/* ============================================================
   PulsarSpins Casino — el-GR betting satellite
   Theme: Midnight Sportsbook — deep navy/ink + electric orange
   Display: Roboto Condensed · Body: Mulish · Signature: live odds board
   ============================================================ */

:root {
    --ink:     #070b18;
    --navy:    #0c1226;
    --panel:   #111a36;
    --surface: #16203f;
    --line:    rgba(255, 138, 30, .18);
    --line-2:  rgba(255, 255, 255, .07);

    --orange:    #ff8a1e;
    --orange-lt: #ffa84d;
    --orange-d:  #e06f06;
    --green:     #2fd17a;
    --red:       #ff4d4d;

    --text:    #eef2fb;
    --mute:    #97a3c4;
    --faint:   #5f6c92;

    --r-sm: 8px;
    --r:    14px;
    --r-lg: 20px;

    --shadow:  0 24px 60px -28px rgba(0, 0, 0, .9);
    --glow-o:  0 0 24px rgba(255, 138, 30, .4);

    --maxw: 1180px;
    --font-d: 'Roboto Condensed', system-ui, sans-serif;
    --font-b: 'Mulish', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-b);
    color: var(--text);
    background:
        radial-gradient(1000px 680px at 82% -8%, rgba(255, 138, 30, .12), transparent 60%),
        radial-gradient(900px 600px at 8% 6%, rgba(47, 209, 122, .06), transparent 55%),
        var(--ink);
    background-attachment: fixed;
    line-height: 1.65;
    overflow-x: hidden;
    font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-d); font-weight: 700; line-height: 1.12; letter-spacing: .3px; }
h1 { font-size: clamp(1.8rem, 4.2vw, 2.9rem); margin-bottom: 16px; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.15rem); text-transform: uppercase; letter-spacing: .6px; }
h3 { font-size: 1.1rem; font-weight: 600; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-d);
    font-size: .8rem; font-weight: 700; letter-spacing: .2em;
    text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); animation: livepulse 1.4s ease-in-out infinite; }
@keyframes livepulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }

.lead { color: var(--mute); max-width: 760px; margin-top: 4px; }
.lead strong { color: var(--text); font-weight: 700; }

.section-head { margin-bottom: 26px; }
.section-head--center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-d); font-weight: 700; letter-spacing: .04em;
    border: 0; cursor: pointer; white-space: nowrap; text-transform: uppercase;
    padding: 12px 24px; border-radius: var(--r-sm); font-size: .94rem;
    transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--orange { background: linear-gradient(180deg, var(--orange-lt), var(--orange-d)); color: #2a1500; box-shadow: var(--glow-o); }
.btn--orange:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(255, 138, 30, .65); }
.btn--ghost { background: rgba(255, 255, 255, .05); color: var(--text); border: 1px solid var(--line-2); }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: var(--line); }
.btn--outline { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); }
.btn--outline:hover { background: rgba(255, 138, 30, .12); box-shadow: var(--glow-o); }
.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: .84rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 60; background: rgba(7, 11, 24, .88); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.header__left { display: flex; align-items: center; gap: 28px; }
.header__menu_btn { display: none; background: none; border: 0; color: var(--orange); cursor: pointer; padding: 4px; }
.main_menu { display: flex; gap: 26px; list-style: none; }
.main_menu a { font-family: var(--font-d); font-weight: 600; font-size: .96rem; color: var(--mute); transition: color .2s; }
.main_menu a:hover { color: var(--orange); }
.header__right { display: flex; align-items: center; gap: 12px; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); }
.logo__mark { flex: none; filter: drop-shadow(0 0 7px rgba(255, 138, 30, .5)); }
.logo__trend { stroke-dasharray: 60; animation: draw 5s ease-in-out infinite; }
@keyframes draw { 0%, 100% { stroke-dashoffset: 0; } 50% { stroke-dashoffset: 8; } }
.logo__text { font-family: var(--font-d); font-weight: 700; font-size: 1.3rem; letter-spacing: .4px; color: var(--orange); line-height: 1; white-space: nowrap; }
.logo__text b { color: var(--text); }
.logo:hover .logo__mark { filter: drop-shadow(0 0 12px rgba(255, 138, 30, .9)); }

/* ---------- Aside ---------- */
.aside { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.aside.open { visibility: visible; }
.aside_overlay { position: absolute; inset: 0; background: rgba(3, 6, 14, .72); opacity: 0; transition: opacity .3s; }
.aside.open .aside_overlay { opacity: 1; }
.aside_container { position: absolute; top: 0; left: 0; height: 100%; width: min(82vw, 320px); background: var(--navy); border-right: 1px solid var(--line); padding: 22px; display: flex; flex-direction: column; gap: 14px; transform: translateX(-100%); transition: transform .3s ease; }
.aside.open .aside_container { transform: translateX(0); }
.aside_close_btn { align-self: flex-end; background: none; border: 0; color: var(--mute); cursor: pointer; }
.aside_container .logo__text { font-size: 1.16rem; }
.menu-primary { list-style: none; margin-top: 8px; display: flex; flex-direction: column; }
.menu-primary a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--line-2); font-family: var(--font-d); font-weight: 600; color: var(--text); }
.menu-primary a:hover { color: var(--orange); }

/* ---------- Hero (centered) ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 8vw, 88px) 0 clamp(36px, 5vw, 60px); }
.hero__rays { position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: .5; background: repeating-linear-gradient(60deg, transparent 0 60px, rgba(255, 138, 30, .04) 60px 62px); }
.hero__glow { position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; max-width: 120vw; pointer-events: none; z-index: 0; background: radial-gradient(circle, rgba(255, 138, 30, .22), transparent 60%); filter: blur(22px); }
.hero__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; text-align: center; }
.hero__brand { font-family: var(--font-d); font-weight: 700; line-height: 1; font-size: clamp(1.5rem, 3.6vw, 2.2rem); color: var(--orange); text-shadow: 0 0 22px rgba(255, 138, 30, .4); margin-bottom: 26px; }
.hero__brand span { color: var(--text); }
.hero__card { position: relative; display: flex; flex-direction: column; align-items: center; width: 100%; padding: clamp(26px, 4vw, 40px) clamp(20px, 5vw, 56px); border-radius: var(--r-lg); background: linear-gradient(170deg, var(--surface), var(--panel)); border: 2px solid var(--orange); box-shadow: var(--glow-o), inset 0 0 30px rgba(255, 138, 30, .08), var(--shadow); }
.hero__card .eyebrow { margin-bottom: 10px; }
.hero__bonus { font-family: var(--font-d); line-height: 1; margin: 2px 0 22px; }
.hero__pct { display: block; font-size: clamp(3.8rem, 12vw, 6.8rem); font-weight: 700; color: var(--orange); text-shadow: 0 0 34px rgba(255, 138, 30, .55); letter-spacing: -1px; }
.hero__sub { display: block; font-size: clamp(1.1rem, 3vw, 1.55rem); color: var(--text); font-weight: 600; font-family: var(--font-b); margin-top: 6px; }
.hero__sub strong { color: var(--green); }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero__line { color: var(--mute); max-width: 480px; margin: 24px auto 0; }
.hero__disclaimer { margin-top: 14px; font-size: .76rem; color: var(--faint); }

/* ---------- Section spacing ---------- */
.intro, .board, .sports, .feature, .bonus, .why, .mobile, .pay, .faq { margin-bottom: clamp(48px, 7vw, 78px); }

/* ---------- Intro ---------- */
.intro { max-width: 820px; }
.intro p { color: var(--mute); font-size: 1.04rem; }

/* ---------- Live odds board (signature) ---------- */
.board__head { margin-bottom: 20px; }
.board__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.match {
    display: grid; grid-template-columns: 1.1fr 1.4fr 1.6fr; align-items: center; gap: 16px;
    padding: 16px 20px; border-radius: var(--r);
    background: linear-gradient(170deg, var(--surface), var(--panel));
    border: 1px solid var(--line-2); transition: border-color .2s, transform .2s;
}
.match:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--glow-o); }
.match__meta { display: flex; flex-direction: column; gap: 4px; }
.match__sport { font-family: var(--font-d); font-weight: 600; font-size: .92rem; color: var(--text); }
.match__time { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--red); font-weight: 700; }
.match__teams { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .96rem; }
.match__vs { color: var(--faint); font-weight: 500; }
.match__odds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.odd {
    display: flex; align-items: center; justify-content: space-between; gap: 6px;
    padding: 9px 12px; border-radius: var(--r-sm);
    background: rgba(255, 255, 255, .04); border: 1px solid var(--line-2);
    font-family: var(--font-d); font-size: .82rem; color: var(--mute); transition: background .15s, border-color .15s;
}
.odd b { color: var(--text); font-weight: 700; font-size: .95rem; }
.match:hover .odd { border-color: var(--line); }
.odd--up b { color: var(--green); }
.odd--up { border-color: rgba(47, 209, 122, .3); }
.odd--off { color: var(--faint); justify-content: center; }
.board__all { display: inline-flex; }

/* ---------- Sports ---------- */
.sports .lead { margin-bottom: 24px; }
.sport-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.sport { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 18px 8px; background: linear-gradient(180deg, var(--surface), var(--panel)); border: 1px solid var(--line-2); border-radius: var(--r); transition: transform .2s, border-color .2s, box-shadow .2s; }
.sport:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: var(--glow-o); }
.sport__ico { font-size: 1.8rem; }
.sport__name { font-family: var(--font-d); font-size: .9rem; font-weight: 600; color: var(--mute); text-align: center; }
.sport:hover .sport__name { color: var(--text); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--line-2); margin-top: 22px; }
.otable { width: 100%; border-collapse: collapse; min-width: 480px; }
.otable thead th { font-family: var(--font-d); font-size: .84rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; text-align: left; color: var(--orange); padding: 15px 18px; background: rgba(255, 138, 30, .07); border-bottom: 1px solid var(--line); }
.otable td { padding: 14px 18px; font-size: .92rem; border-bottom: 1px solid var(--line-2); color: var(--text); }
.otable tbody tr:last-child td { border-bottom: 0; }
.otable tbody tr { transition: background .15s; }
.otable tbody tr:hover { background: rgba(255, 138, 30, .05); }
.otable td:nth-child(2), .otable td:nth-child(3), .otable td:nth-child(4) { color: var(--mute); }

/* ---------- Feature (live + cashout) ---------- */
.feature__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature__card { padding: 30px 28px; border-radius: var(--r); background: linear-gradient(165deg, var(--surface), var(--panel)); border: 1px solid var(--line-2); transition: border-color .2s, transform .2s; }
.feature__card:hover { border-color: var(--orange); transform: translateY(-3px); }
.feature__ico { font-size: 2rem; display: block; margin-bottom: 14px; }
.feature__card h3 { color: var(--text); margin-bottom: 8px; }
.feature__card p { color: var(--mute); font-size: .94rem; }

/* ---------- Bonus grid ---------- */
.bonus .lead { margin-bottom: 26px; }
.bonus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.bcard { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 26px 20px; border-radius: var(--r); background: linear-gradient(170deg, var(--surface), var(--panel)); border: 1px solid var(--line-2); transition: transform .2s, border-color .2s, box-shadow .25s; }
.bcard:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: var(--shadow); }
.bcard--feat { border-color: rgba(255, 138, 30, .45); box-shadow: var(--glow-o); }
.bcard__icon { font-size: 2.2rem; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; margin-bottom: 14px; background: radial-gradient(circle, rgba(255, 138, 30, .18), transparent 70%); }
.bcard__title { font-size: .92rem; font-weight: 600; color: var(--orange); margin-bottom: 12px; min-height: 2.4em; display: flex; align-items: center; }
.bcard__deal { font-family: var(--font-d); font-weight: 700; font-size: 1.2rem; color: var(--text); line-height: 1.25; margin-bottom: 18px; flex: 1; }
.bcard__deal span { display: block; font-family: var(--font-b); font-size: .82rem; font-weight: 600; color: var(--mute); margin-top: 4px; }

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: s; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.steps li { counter-increment: s; position: relative; padding: 16px 18px 16px 60px; background: rgba(7, 11, 24, .5); border: 1px solid var(--line-2); border-radius: var(--r); }
.steps li::before { content: counter(s); position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; display: grid; place-items: center; font-family: var(--font-d); font-weight: 700; color: #2a1500; background: linear-gradient(180deg, var(--orange-lt), var(--orange-d)); border-radius: 50%; box-shadow: var(--glow-o); }
.steps strong { display: block; font-family: var(--font-d); font-size: 1rem; color: var(--text); }
.steps span { font-size: .86rem; color: var(--mute); }

/* ---------- Why ---------- */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.why__card { padding: 26px 22px; border-radius: var(--r); background: linear-gradient(165deg, var(--surface), var(--panel)); border: 1px solid var(--line-2); text-align: center; transition: border-color .2s, transform .2s, box-shadow .2s; }
.why__card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--glow-o); }
.why__ico { font-size: 1.9rem; display: block; margin-bottom: 12px; }
.why__card h3 { color: var(--text); margin-bottom: 6px; font-size: 1.02rem; }
.why__card p { color: var(--mute); font-size: .9rem; }

/* ---------- Mobile ---------- */
.mobile { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: center; padding: 36px; border-radius: var(--r-lg); background: radial-gradient(500px 300px at 100% 0%, rgba(255, 138, 30, .1), transparent 60%), linear-gradient(165deg, var(--surface), var(--panel)); border: 1px solid var(--line-2); }
.mobile__copy .lead { margin-bottom: 20px; }
.mobile__art { display: flex; justify-content: center; }
.phone { width: 150px; height: 290px; border-radius: 28px; padding: 12px; background: linear-gradient(160deg, #1a2547, #090e1f); border: 2px solid rgba(255, 138, 30, .4); box-shadow: 0 0 40px rgba(255, 138, 30, .25); }
.phone__screen { position: relative; height: 100%; border-radius: 18px; overflow: hidden; background: radial-gradient(circle at 50% 26%, rgba(255, 138, 30, .14), #080d1c 70%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.phone__live { font-family: var(--font-d); font-weight: 700; font-size: .82rem; letter-spacing: .12em; color: var(--red); text-shadow: 0 0 10px rgba(255, 77, 77, .6); animation: livepulse 1.6s ease-in-out infinite; }
.phone__odds { display: flex; gap: 6px; }
.phone__odds span { padding: 8px 10px; border-radius: 6px; font-family: var(--font-d); font-weight: 700; font-size: .82rem; color: #2a1500; background: linear-gradient(180deg, var(--orange-lt), var(--orange-d)); }

/* ---------- FAQ ---------- */
.faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: linear-gradient(165deg, var(--surface), var(--panel)); border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; transition: border-color .2s; }
.faq__item.open { border-color: var(--orange); }
.faq__q { width: 100%; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; background: none; border: 0; color: var(--text); font-family: var(--font-d); font-weight: 600; font-size: 1.04rem; }
.faq__plus { position: relative; width: 16px; height: 16px; flex: none; }
.faq__plus::before, .faq__plus::after { content: ''; position: absolute; background: var(--orange); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: transform .25s; }
.faq__plus::before { width: 16px; height: 2px; }
.faq__plus::after { width: 2px; height: 16px; }
.faq__item.open .faq__plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 22px 20px; color: var(--mute); font-size: .94rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 40px 0 30px; background: rgba(6, 9, 20, .6); }
.menu-footer { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-bottom: 26px; }
.menu-footer a { font-size: .88rem; color: var(--mute); transition: color .2s; }
.menu-footer a:hover { color: var(--orange); }
.payments { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.payments img { height: 26px; width: auto; opacity: .72; filter: grayscale(.3); transition: opacity .2s; }
.payments img:hover { opacity: 1; }
.footer_end { display: flex; align-items: center; gap: 16px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.footer_18 { font-family: var(--font-d); font-weight: 700; font-size: .85rem; color: var(--orange); border: 1.5px solid var(--orange); border-radius: 50%; width: 40px; height: 40px; display: grid; place-items: center; flex: none; }
.footer_end p { font-size: .8rem; color: var(--faint); max-width: 540px; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .sport-grid { grid-template-columns: repeat(3, 1fr); }
    .bonus-grid { grid-template-columns: repeat(2, 1fr); }
    .why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .match { grid-template-columns: 1fr; gap: 12px; }
    .match__teams { justify-content: flex-start; }
}
@media (max-width: 920px) {
    .feature__grid { grid-template-columns: 1fr; }
    .mobile { grid-template-columns: 1fr; text-align: center; }
    .mobile__copy .eyebrow { display: inline-flex; }
    .mobile__art { order: -1; }
    .ticks { text-align: left; }
}
@media (max-width: 720px) {
    .main_menu { display: none; }
    .header__menu_btn { display: block; }
    .header__right .btn--ghost { display: none; }
    .steps { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .sport-grid { grid-template-columns: repeat(2, 1fr); }
    .bonus-grid { grid-template-columns: 1fr; }
    .why__grid { grid-template-columns: 1fr; }
    .hero__pct { font-size: clamp(3rem, 18vw, 4.4rem); }
}

/* ---------- Accessibility ---------- */
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }
