/* ============================================================
   PulsarSpins Casino — pt-PT betting satellite
   Theme: Stadium Night — deep pitch green + electric lime + light text
   Display: Rajdhani · Body: Mulish · Signature: live pulse + pitch lines
   ============================================================ */

:root {
    --night:   #061410;
    --pitch:   #0a2018;
    --turf:    #0d2a1f;
    --surface: #113527;
    --line:    rgba(198, 255, 61, .16);
    --line-2:  rgba(255, 255, 255, .07);

    --lime:    #c6ff3d;
    --lime-lt: #d8ff75;
    --lime-d:  #9bd61f;
    --amber:   #ffc24b;
    --red:     #ff4d4d;

    --ink:     #eef6ec;
    --mute:    #9db8a8;
    --faint:   #5f7c6c;

    --r-sm: 10px;
    --r:    16px;
    --r-lg: 22px;

    --shadow:  0 24px 60px -28px rgba(0, 0, 0, .9);
    --glow-l:  0 0 24px rgba(198, 255, 61, .4);

    --maxw: 1180px;
    --font-d: 'Rajdhani', 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(--ink);
    background:
        radial-gradient(1000px 680px at 80% -8%, rgba(198, 255, 61, .1), transparent 60%),
        radial-gradient(900px 600px at 8% 6%, rgba(46, 160, 110, .1), transparent 55%),
        var(--night);
    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.2rem); text-transform: uppercase; letter-spacing: .8px; }
h3 { font-size: 1.12rem; font-weight: 600; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-d);
    font-size: .78rem; font-weight: 700; letter-spacing: .2em;
    text-transform: uppercase; color: var(--lime); 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(--ink); 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: 8px; font-size: .92rem;
    transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--lime {
    background: linear-gradient(180deg, var(--lime-lt), var(--lime-d));
    color: #11240a; box-shadow: var(--glow-l);
}
.btn--lime:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(198, 255, 61, .65); }
.btn--ghost { background: rgba(255, 255, 255, .05); color: var(--ink); 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(--lime); border: 1.5px solid var(--lime); }
.btn--outline:hover { background: rgba(198, 255, 61, .12); box-shadow: var(--glow-l); }
.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: .82rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 60; background: rgba(6, 18, 14, .85); 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(--lime); 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(--lime); }
.header__right { display: flex; align-items: center; gap: 12px; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--lime); }
.logo__mark { flex: none; filter: drop-shadow(0 0 7px rgba(198, 255, 61, .55)); }
.logo__dot { animation: livepulse 1.6s ease-in-out infinite; transform-origin: 22px 22px; }
.logo__text { font-family: var(--font-d); font-weight: 700; font-size: 1.28rem; letter-spacing: .4px; color: var(--lime); line-height: 1; white-space: nowrap; }
.logo__text b { color: var(--ink); }
.logo:hover .logo__mark { filter: drop-shadow(0 0 12px rgba(198, 255, 61, .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, 10, 7, .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(--pitch); 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.14rem; }
.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(--ink); }
.menu-primary a:hover { color: var(--lime); }

/* ---------- Hero (centered, pitch) ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 8vw, 92px) 0 clamp(40px, 6vw, 68px); }
.hero__pitch {
    position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: .6;
    background:
        repeating-linear-gradient(90deg, transparent 0 78px, rgba(255, 255, 255, .02) 78px 158px),
        radial-gradient(circle at 50% 120%, rgba(198, 255, 61, .08), transparent 60%);
}
.hero__pitch::after {
    content: ''; position: absolute; left: 50%; top: 36%; transform: translate(-50%, -50%);
    width: 280px; height: 280px; border: 2px solid rgba(255, 255, 255, .06); border-radius: 50%;
}
.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(198, 255, 61, .2), 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(--lime); text-shadow: 0 0 22px rgba(198, 255, 61, .4); margin-bottom: 26px; }
.hero__brand span { color: var(--ink); }
.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(--turf));
    border: 2px solid var(--lime);
    box-shadow: var(--glow-l), inset 0 0 30px rgba(198, 255, 61, .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(--lime); text-shadow: 0 0 34px rgba(198, 255, 61, .55); letter-spacing: -1px; }
.hero__sub { display: block; font-size: clamp(1.1rem, 3vw, 1.55rem); color: var(--ink); font-weight: 600; font-family: var(--font-b); margin-top: 6px; }
.hero__sub strong { color: var(--amber); }
.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, .sports, .bonus, .wheel, .slots, .mobile, .pay, .faq { margin-bottom: clamp(48px, 7vw, 78px); }

/* ---------- Intro ---------- */
.intro { max-width: 860px; }
.intro p { color: var(--mute); font-size: 1.04rem; margin-bottom: 22px; }
.ticks { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; }
.ticks li { display: flex; align-items: center; gap: 10px; font-size: .96rem; font-weight: 500; color: var(--ink); }
.ticks--tight { grid-template-columns: 1fr; gap: 9px; }

/* ---------- Sports ---------- */
.sports .lead { margin-bottom: 24px; }
.sport-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-bottom: 8px; }
.sport {
    display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 18px 8px;
    background: linear-gradient(180deg, var(--surface), var(--turf));
    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(--lime); box-shadow: var(--glow-l); }
.sport__ico { font-size: 1.8rem; }
.sport__name { font-family: var(--font-d); font-size: .86rem; font-weight: 600; color: var(--mute); text-align: center; }
.sport:hover .sport__name { color: var(--ink); }

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

/* ---------- 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(--turf)); 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(198, 255, 61, .45); box-shadow: var(--glow-l); }
.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(198, 255, 61, .18), transparent 70%); }
.bcard__title { font-size: .92rem; font-weight: 600; color: var(--lime); 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(--ink); 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(6, 18, 14, .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: #11240a; background: linear-gradient(180deg, var(--lime-lt), var(--lime-d)); border-radius: 50%; box-shadow: var(--glow-l); }
.steps strong { display: block; font-family: var(--font-d); font-size: 1rem; color: var(--ink); }
.steps span { font-size: .86rem; color: var(--mute); }

/* ---------- Fortune wheel ---------- */
.wheel { display: grid; grid-template-columns: 1.15fr .85fr; gap: 30px; align-items: center; }
.wheel__art { display: flex; justify-content: center; }
.fwheel {
    position: relative; width: 230px; height: 230px; border-radius: 50%;
    background: conic-gradient(var(--lime) 0 45deg, var(--turf) 45deg 90deg, var(--amber) 90deg 135deg, var(--turf) 135deg 180deg, var(--lime) 180deg 225deg, var(--turf) 225deg 270deg, var(--amber) 270deg 315deg, var(--turf) 315deg 360deg);
    border: 6px solid var(--lime); box-shadow: 0 0 50px rgba(198, 255, 61, .4), inset 0 0 30px rgba(0, 0, 0, .5);
    animation: turn 14s linear infinite;
}
@keyframes turn { to { transform: rotate(360deg); } }
.fwheel__hub { position: absolute; inset: 38%; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle, var(--lime-lt), var(--lime-d)); color: #11240a; font-family: var(--font-d); font-weight: 700; font-size: 1.4rem; box-shadow: 0 0 20px rgba(198, 255, 61, .6); }
.fwheel__pin { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 11px solid transparent; border-right: 11px solid transparent; border-top: 20px solid var(--ink); z-index: 3; filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .5)); }

/* ---------- Slots ---------- */
.slots .lead { margin-bottom: 24px; }
.games { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.game__thumb { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 1 / 1.5; border: 1px solid var(--line-2); transition: transform .22s, box-shadow .25s, border-color .25s; }
.game:nth-child(1) .game__thumb { background: linear-gradient(145deg, #0d3a2a, #06181059); }
.game:nth-child(2) .game__thumb { background: linear-gradient(145deg, #2a3a0d, #141f06); }
.game:nth-child(3) .game__thumb { background: linear-gradient(145deg, #0d3a2f, #06181a); }
.game:nth-child(4) .game__thumb { background: linear-gradient(145deg, #303a0d, #181f06); }
.game:nth-child(5) .game__thumb { background: linear-gradient(145deg, #0d3a24, #06180f); }
.game:nth-child(6) .game__thumb { background: linear-gradient(145deg, #283a0d, #141f06); }
.game__thumb img { width: 100%; height: 100%; object-fit: cover; }
.game__overlay { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; background: rgba(6, 18, 14, .68); opacity: 0; transition: opacity .22s; }
.game:hover .game__thumb { transform: translateY(-5px); border-color: var(--lime); box-shadow: var(--glow-l); }
.game:hover .game__overlay { opacity: 1; }
.game__name { margin-top: 10px; font-size: .84rem; font-weight: 600; color: var(--mute); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game:hover .game__name { color: var(--ink); }

/* ---------- 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(198, 255, 61, .1), transparent 60%), linear-gradient(165deg, var(--surface), var(--turf)); 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, #14361f, #07180e); border: 2px solid rgba(198, 255, 61, .4); box-shadow: 0 0 40px rgba(198, 255, 61, .25); }
.phone__screen { position: relative; height: 100%; border-radius: 18px; overflow: hidden; background: radial-gradient(circle at 50% 30%, rgba(198, 255, 61, .14), #06160e 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: .8rem; letter-spacing: .1em; color: var(--red); text-shadow: 0 0 10px rgba(255, 77, 77, .6); animation: livepulse 1.6s ease-in-out infinite; }
.phone__bars { display: flex; gap: 6px; align-items: flex-end; }
.phone__bars i { width: 22px; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--lime-lt), var(--lime-d)); }
.phone__bars i:nth-child(1) { height: 36px; } .phone__bars i:nth-child(2) { height: 56px; } .phone__bars i:nth-child(3) { height: 44px; }

/* ---------- 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(--turf)); border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; transition: border-color .2s; }
.faq__item.open { border-color: var(--lime); }
.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(--ink); font-family: var(--font-d); font-weight: 600; font-size: 1.02rem; }
.faq__plus { position: relative; width: 16px; height: 16px; flex: none; }
.faq__plus::before, .faq__plus::after { content: ''; position: absolute; background: var(--lime); 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(5, 14, 10, .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(--lime); }
.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(--lime); border: 1.5px solid var(--lime); 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); }
    .games { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 920px) {
    .wheel { grid-template-columns: 1fr; text-align: center; }
    .wheel__art { order: -1; }
    .ticks--tight { text-align: left; max-width: 360px; margin: 0 auto; }
    .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; }
    .ticks { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .sport-grid { grid-template-columns: repeat(2, 1fr); }
    .bonus-grid { grid-template-columns: 1fr; }
    .games { grid-template-columns: repeat(2, 1fr); }
    .hero__pct { font-size: clamp(3rem, 18vw, 4.4rem); }
}

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