:root{
    --bg-0:#031629;
    --bg-1:#041f3a;
    --bg-2:#062a4d;

    --text-1:rgba(255,255,255,.96);
    --text-2:rgba(255,255,255,.80);
    --text-3:rgba(255,255,255,.62);

    --stroke:rgba(255,255,255,.10);
    --surface:rgba(255,255,255,.06);
    --surface2:rgba(255,255,255,.04);

    --accent:#17a2ff;

    --radius:16px;
    --shadow:0 16px 36px rgba(0,0,0,.30);
    --shadow2:0 10px 20px rgba(0,0,0,.20);

    --measure:68ch;
}

html{
    scroll-behavior:smooth;
    font-size: 18px;
    color: white !important;
}

body{
    margin:0;
    font-family: Tahoma, sans-serif;
    color: white !important;
    background:
            radial-gradient(1200px 700px at 15% -10%, rgba(23,162,255,.14), transparent 56%),
            radial-gradient(900px 600px at 90% 15%, rgba(11,95,165,.12), transparent 52%),
            linear-gradient(180deg, var(--bg-2), var(--bg-1) 55%, var(--bg-0) 100%);
}

/* Layout */
.container.is-narrow{max-width: 960px;}
.section{padding: 2.25rem 0;}
.section-shell{
    padding: 2rem;
}

.block-shell{
    background: var(--surface2);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    box-shadow: var(--shadow2);
    padding: 1.5rem;
}

.muted{color:var(--text-2);}
.muted2{color:var(--text-3); font-size: 90%}

/* Typography */
h1,h2,h3,h4{
    color: var(--text-1);
    letter-spacing: .2px;
}

h1{
    font-weight: 800;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.12;
    margin: 0 0 1em;
    color: white !important;
}

h2{
    font-weight: 800;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.18;
    margin: 0 0 .75rem;
    color: white !important;
}

.title.is-2 {
    font-size: 1.9rem;
    color: white !important;
}

h3{
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.25;
    margin: 0 0 .6rem;
    color: white !important;
}

.title.is-3 {
    font-size: 1.2rem;
    color: white !important;
}

h4{
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.25;
    margin: 0 0 .5rem;
    color: white !important;
}

.title.is-4 {
    font-size: 1rem;
    color: white !important;
}

p, li{
    color: var(--text-2);
    line-height: 1.75;
}

strong {
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
    font-weight: 700;
    color: white !important;
}

section {
    padding: 1.25rem 0 !important;
}

/* Topbar layout (reference-like) */
.topbar{
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar__inner{
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border-bottom: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
}

.topbar__grid{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.brand{
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand__text{
    font-weight: 900;
    letter-spacing: .08em;
    color: rgba(255,255,255,.96);
    font-size: 26px;
    line-height: 1;
}

/* Buttons */
.btn{
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: .8rem 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .12s ease, background-color .12s ease, border-color .12s ease, opacity .12s ease;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
    font-size: 120%;
}

.btn:active{
    transform: translateY(1px);
}

.btn--ghost{
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.95);
    border: 1px solid rgba(255,255,255,.16);

}

.btn--ghost:hover{
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.22);
}

.btn--primary{
    background: rgba(255, 122, 0, .95);
    color: #fff;
}

.btn--primary:hover{
    opacity: .95;
}

/* Mobile burger */
.mnav-toggle{
    display: none;
    width: 44px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    margin-left: 0;
    cursor: pointer;
    position: relative;
    padding: 4px;
}

.mnav-toggle span{
    display: block;
    width: 14px;
    height: 2px;
    background: rgba(255,255,255,.92);
    margin: 2px auto;
    border-radius: 2px;
}

/* Mobile nav panel */
.mnav{
    background: rgba(7, 56, 112, .96);
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.mnav__links{
    display: grid;
    padding: .75rem 0 1rem;
    gap: .35rem;
}

.mnav__link{
    display: block;
    padding: .7rem .85rem;
    border-radius: 14px;
    color: rgba(255,255,255,.92);
    text-decoration: none;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
}

.mnav__link:hover{
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.16);
}

/* Responsive behavior: anchors only on mobile */
@media (max-width: 768px){
    .topbar__grid{
        min-height: 64px;
    }

    .brand__text{
        font-size: 22px;
    }

    .btn{
        padding: .6rem .95rem;
        font-size: .95rem;
    }

    .mnav-toggle{
        display: inline-grid;
        place-items: center;
    }


    .title.is-2 {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px){
    /* hide burger/menu on desktop */
    .mnav{ display: none !important; }
    .mnav-toggle{ display: none !important; }
}


/* Anchors offset */
.anchor{scroll-margin-top: 90px;}

/* Figure placeholders */
figure{
    margin: 1rem 0 0;
}

.figure-box{
    background: rgba(255,255,255,.03);
    border: 3px solid #0066ff;
    border-radius: 14px;
    padding: 1rem 1rem 0.6rem;
}

.figure-name{
    font-weight: 700;
    color: var(--text-1);
}

.figure-alt{
    margin-top: .35rem;
    color: var(--text-2);
}

/* Lists */
.list-bullets{
    padding-left: 1.1rem;
}

/* Table striped */
.table-wrap{
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.02);
}

.table{
    background: transparent;
    color: var(--text-2);
    width: 100%;
}

.table thead th{
    color: var(--text-1);
    border-bottom: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.05);
    white-space: nowrap;
}

.table td{
    border-bottom: 1px solid rgba(255,255,255,.06);
    white-space: nowrap;
}

.table.is-striped tbody tr:nth-child(odd){
    background: rgba(255,255,255,.04);
}

.table.is-striped tbody tr:nth-child(even){
    background: rgba(255,255,255,.02);
}

/* Footer */
footer{
    border-top: 1px solid rgba(255,255,255,.10);
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    padding: 1.5rem 0;
    margin-top: 2rem;
}

footer a{color: var(--text-2); font-size: 90%}
footer a:hover{color: var(--text-1);}

/* Simple reveal animation (keeps “animation” without noisy components) */
.reveal{
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .5s ease, transform .5s ease;
    will-change: opacity, transform;
}

.reveal.is-visible{
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    .reveal{opacity:1; transform:none; transition:none;}
}

@media screen and (min-width: 1408px) {
    .container:not(.is-max-tablet):not(.is-max-desktop):not(.is-max-widescreen) {
        max-width: 1084px;
    }
}

@media (max-width: 768px){
    .section-shell{padding: 1.25rem;}
}


/* #why: plain shell without card background */
.section-shell--plain{
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

/* Text spacing */
.prose-stack .prose + .prose{
    margin-top: 1rem;
}

/* Long paragraph readability */
.prose-wide{
    max-width: var(--measure);
}



/* Quick links */
.quicklink{
    color: var(--text-2);
    text-decoration: none;
    display: inline-block;
    padding: .15rem 0;
}

.quicklink:hover{
    color: var(--text-1);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Mobile-first improvements */
@media (max-width: 768px){
    /* Give a bit of padding so text isn't glued to screen edges */
    #why .section-shell--plain{
        padding: 0 0.5rem;
    }

    /* Reduce section spacing on mobile */
    #why.section{
        padding: 1.5rem 0;
    }

    /* Ensure columns stack nicely */
    #why .columns{
        margin-top: 1rem;
    }

    /* Keep text comfortable on small screens */
    #why .prose-wide{
        max-width: 100%;
    }

    /* Put the info card after the text (more natural reading flow) */
    #why .column.is-5{
        order: 2;
        margin-top: 0.75rem;
    }

    #why .column.is-7{
        order: 1;
    }

    /* Card padding slightly smaller on mobile */
    #why .block-shell{
        padding: 1.1rem;
        border-radius: 14px;
    }

    /* Make quick links easier to tap */
    #why .list-bullets li{
        margin: .15rem 0;
    }

    #why .quicklink{
        padding: .35rem 0;
    }
}

/* Tablet tweaks (optional, keeps typography balanced) */
@media (min-width: 769px) and (max-width: 1023px){
    #why .prose-wide{
        max-width: 60ch;
    }
}

/* Bulma content readability on dark backgrounds */
.content--readable{
    max-width: var(--measure);
}

.content--readable p{
    color: var(--text-2);
}

.shell-divider{
    border: 0;
    height: 1px;
    margin: 1rem 0;
    background: linear-gradient(
            to right,
            rgba(255,255,255,0),
            rgba(255,255,255,.06) 12%,
            rgba(255,255,255,.18) 50%,
            rgba(255,255,255,.06) 88%,
            rgba(255,255,255,0)
    );
}

@media (max-width: 768px){
    .shell-divider{
        margin: 1rem 0;
        background: linear-gradient(
                to right,
                rgba(255,255,255,0),
                rgba(255,255,255,.08) 18%,
                rgba(255,255,255,.16) 50%,
                rgba(255,255,255,.08) 82%,
                rgba(255,255,255,0)
        );
    }
}


/* Technical list: better visual hierarchy than default ul */
ul.why-list{
    list-style: none !important;
    margin: 2rem 1.2em 2rem !important;
    padding: 0;
    display: grid;
    gap: .55rem;
}

.why-list li{
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-2);
    line-height: 1.55;
}

.why-list li::before{
    content: "";
    position: absolute;
    left: -3px;
    top: .9em;
    width: .55rem;
    height: .55rem;
    border-radius: 999px;
    background: rgba(23,162,255,.95);
    box-shadow: 0 0 0 3px rgba(23,162,255,.18);
    transform: translateY(-50%);
}

/* Bottom note: use Bulma notification but tune for your theme */
.why-note{
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.08);
    color: var(--text-2) !important;
    border-radius: 14px;
    padding: 1rem 1.1rem;
}

/* Right card: make it expressive but not heavy */
.quicklinks-box{
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(0,0,0,.22);
}

.quicklinks-box .help{
    color: var(--text-3);
}

/* Links grid */
.quicklinks-grid{
    display: grid;
    gap: .55rem;
    margin-top: 1em;
}

/* Link “tiles” */
.quicklinks-item{
    display: block;
    padding: .7rem .8rem;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    color: var(--text-1);
    text-decoration: none;
    line-height: 1.25;
}

.quicklinks-item:hover{
    background: rgba(23,162,255,.10);
    border-color: rgba(23,162,255,.25);
    text-decoration: none;
}

.quicklinks-item:focus-visible{
    outline: 2px solid rgba(23,162,255,.65);
    outline-offset: 2px;
}

/* Mobile: make quick links compact 2-column grid, keep tap targets */
@media (max-width: 768px){
    .content--readable{
        max-width: 100%;
    }

    .quicklinks-grid{
        grid-template-columns: 1fr 1fr;
        gap: .5rem;
    }

    .quicklinks-item{
        padding: .65rem .7rem;
        border-radius: 12px;
        font-size: .95rem;
    }

    .why-list{
        gap: .5rem;
    }
}

/* Very small screens: fallback to 1 column if too tight */
@media (max-width: 420px){
    .quicklinks-grid{
        grid-template-columns: 1fr;
    }
}

/* Account: typography similar to your screenshot */
.account-title{
    letter-spacing: .2px;
    margin-bottom: 0.75rem;
}

.account-lead{
    color: var(--text-2);
    max-width: 72ch;
    margin-bottom: 1.5rem;
}

/* Columns with separators, no cards */
.account-cols{
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
}

.account-col{
    position: relative;
    padding-right: 1.5rem;
}

.account-col__title{
    margin-bottom: .75rem;
    line-height: 1.12;
}

.account-col__text{
    color: var(--text-2);
    line-height: 1.75;
}

/* Vertical separators between columns */
@media (min-width: 769px){
    .account-col:not(:last-child)::after{
        content: "";
        position: absolute;
        right: .25rem;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 70%;

        background: linear-gradient(
                to bottom,
                rgba(255,255,255,0),
                rgba(255,255,255,.06) 15%,
                rgba(255,255,255,.18) 50%,
                rgba(255,255,255,.06) 85%,
                rgba(255,255,255,0)
        );
    }
}


/* Settings block: subtle accent without turning into a “card” */
.account-settings{
    padding-left: 1.1rem;
    border-left: 3px solid rgba(23,162,255,.55);
    margin-top: 2em;
}

.account-settings__title{
    margin-bottom: .75rem;
}

.account-settings__text{
    color: var(--text-2);
    line-height: 1.75;
    max-width: 92ch;
}

/* Media shell (keeps your unified image look) */
.media-shell{
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(0,0,0,.20);
}

.media-shell img{
    display: block;
    width: 100%;
    height: auto;
}

.account-figure{
    margin: 3em auto 0;
}

/* Mobile: stack + horizontal separators */
@media (max-width: 768px){
    .account-col{
        padding-right: 0;
        padding-bottom: 1.25rem;
    }

    .account-col:not(:last-child){
        margin-bottom: 1.25rem;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .account-col__title{
        font-size: 1.6rem; /* Bulma title is big; keep it readable on mobile */
    }

    .account-settings{
        padding-left: .9rem;
    }

    .account-figure{
        margin-top: 1rem;
    }
}

/* Very large screens: keep text from becoming too wide */
@media (min-width: 1400px){
    .account-col__text{
        max-width: 46ch;
    }
}


/* BONUS: spacing */
.bonus-cols{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

/* Column base */
.bonus-col{
    position: relative;
    padding-right: 1.5rem;
}

.bonus-col__title{
    margin-bottom: .75rem;
    line-height: 1.15;
}

.bonus-col__text{
    color: var(--text-2);
    line-height: 1.75;
}

/* DESKTOP: vertical separator (70% height, centered, fade ends) */
@media (min-width: 769px){
    /* in 2-column rows separator is only between the first and second col */
    .bonus-cols--top .bonus-col:first-child::after,
    .bonus-cols--bottom .bonus-col:first-child::after{
        content: "";
        position: absolute;
        right: .25rem;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 70%;
        background: linear-gradient(
                to bottom,
                rgba(255,255,255,0),
                rgba(255,255,255,.06) 15%,
                rgba(255,255,255,.18) 50%,
                rgba(255,255,255,.06) 85%,
                rgba(255,255,255,0)
        );
    }
}

/* Highlight: Promocodes block (subtle emphasis, no card) */
.bonus-col--highlight{
    position: relative;
    padding-left: 1.1rem;
    border-left: 3px solid rgba(23,162,255,.55);
}

/* Soft background layer behind the highlighted block */
.bonus-col--highlight::before{
    content: "";
    position: absolute;
    left: 0;
    top: .25rem;
    bottom: .25rem;
    right: 0;
    border-radius: 18px;
    background: rgba(23,162,255,.06);
    z-index: -1;
}

/* MOBILE: stack and use horizontal separators */
@media (max-width: 768px){
    .bonus-cols{
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .bonus-col{
        padding-right: 0;
        padding-left: 0;
        border-left: 0;
    }

    .bonus-cols--top .bonus-col:not(:last-child),
    .bonus-cols--bottom .bonus-col:not(:last-child){
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .bonus-col--highlight{
        padding-left: .9rem;
    }

    .bonus-col--highlight::before{
        top: .15rem;
        bottom: .15rem;
        border-radius: 16px;
    }
}

/* Very large screens: avoid overly wide paragraphs */
@media (min-width: 1400px){
    .bonus-col__text{
        max-width: 60ch;
    }
}

/* App section: keep columns readable */
.app-cols{
    margin-top: 1rem;
}

/* Steps (numbered, with subtle vertical line) */
.steps{
    list-style: none;
    margin: 1.4em 0 1em;
    padding: 0;
    display: grid;
    gap: .75rem;
}

.step{
    display: grid;
    grid-template-columns: 2.1rem 1fr;
    gap: .75rem;
    align-items: start;
    position: relative;
}

.step__num{
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    display: grid;
    place-items: center;

    font-weight: 800;
    font-size: .95rem;
    color: var(--text-1);

    background: rgba(23,162,255,.12);
    border: 1px solid rgba(23,162,255,.30);
    box-shadow: 0 0 0 4px rgba(23,162,255,.10);
}

.step__body{
    min-width: 0;
    margin-bottom: 5px;
}

.step__text{
    margin: 0;
    color: var(--text-2);
    line-height: 1.6;
}

/* Vertical connector line (fading ends), starts under the circle */
.step:not(:last-child)::after{
    content: "";
    position: absolute;
    left: .95rem;                /* center of the circle */
    top: 2.1rem;                 /* under circle */
    width: 1px;
    height: calc(100% - 1.2rem); /* keeps some breathing space */
    background: linear-gradient(
            to bottom,
            rgba(255,255,255,.12),
            rgba(255,255,255,.06),
            rgba(255,255,255,0)
    );
}

/* Mobile: stack columns and make steps more compact */
@media (max-width: 768px){
    .steps{
        gap: .65rem;
    }

    .step{
        grid-template-columns: 2rem 1fr;
        gap: .65rem;
    }

    .step__num{
        width: 1.75rem;
        height: 1.75rem;
        font-size: .9rem;
        box-shadow: 0 0 0 3px rgba(23,162,255,.10);
    }

    .step:not(:last-child)::after{
        left: .875rem;
        top: 2rem;
    }
}

/* Games grid cards (Bulma box themed) */
.game-card{
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(0,0,0,.22);
    height: 100%;
}

.game-card__head{
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: .75rem;
}

.game-badge{
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: grid;
    place-items: center;

    font-weight: 800;
    color: var(--text-1);

    background: rgba(23,162,255,.12);
    border: 1px solid rgba(23,162,255,.30);
    box-shadow: 0 0 0 4px rgba(23,162,255,.10);
    flex: 0 0 auto;
}

.game-title{
    margin: 0;
    line-height: 1.15;
}

.game-desc{
    margin: 0;
    color: var(--text-2);
    line-height: 1.7;
    font-size: 90%;
}

.games-figure{
    margin-top: 1.25rem;
}

/* Mobile: make cards a bit tighter */
@media (max-width: 768px){
    .game-card{
        border-radius: 16px;
        padding: 1rem;
    }

    .game-badge{
        width: 1.85rem;
        height: 1.85rem;
        box-shadow: 0 0 0 3px rgba(23,162,255,.10);
    }
}

/* Payments: same separator pattern as account/bonus (70% height, centered, fade ends) */
.payments-col{
    position: relative;
    padding-right: 1.5rem;
}

@media (min-width: 769px){
    .payments-col:first-child::after{
        content: "";
        position: absolute;
        right: .25rem;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 70%;
        background: linear-gradient(
                to bottom,
                rgba(255,255,255,0),
                rgba(255,255,255,.06) 15%,
                rgba(255,255,255,.18) 50%,
                rgba(255,255,255,.06) 85%,
                rgba(255,255,255,0)
        );
    }
}

@media (max-width: 768px){
    .payments-col{
        padding-right: 0;
    }

    .payments-col:not(:last-child){
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }
}

/* Payments table — reference-like grid style */
.payments-table{
    margin-top: 1.25rem;
    overflow-x: auto; /* mobile scroll */
}

/* Remove Bulma table defaults & apply grid look */
.payments-table__table{
    background: transparent;
    color: #fff;
    border-collapse: collapse;
    min-width: 860px; /* keeps columns readable on desktop */
}

/* Header */
.payments-table__table thead th{
    background: rgba(0, 36, 70, .85);
    color: rgba(255,255,255,.95);
    font-weight: 800;
    padding: .95rem 1rem;
    border: 1px solid rgba(255,255,255,.22);
    vertical-align: middle;
}

/* Body cells */
.payments-table__table tbody td{
    background: rgba(0, 32, 64, .55);
    color: rgba(255,255,255,.92);
    padding: .9rem 1rem;
    border: 1px solid rgba(255,255,255,.22);
    vertical-align: middle;
}

/* Optional: subtle hover like in dashboards (not striped) */
.payments-table__table tbody tr:hover td{
    background: rgba(0, 32, 64, .72);
}

/* Align numeric columns a bit cleaner */
.payments-table__table th:nth-child(2),
.payments-table__table th:nth-child(3),
.payments-table__table td:nth-child(2),
.payments-table__table td:nth-child(3){
    white-space: nowrap;
}

/* Mobile tuning */
@media (max-width: 768px){
    .payments-table{
        margin-top: 1rem;
    }

    .payments-table__table thead th,
    .payments-table__table tbody td{
        padding: .75rem .85rem;
    }
}


/* Support: columns on background */
.support-cols{
    margin-top: 1rem;
    margin-bottom: 0;
}

.support-col{
    position: relative;
    padding-right: 1.5rem;
}

.support-col__title{
    margin-bottom: .75rem;
    line-height: 1.15;
}

.support-col__text{
    color: var(--text-2);
    line-height: 1.75;
}

/* Vertical separators (70% height, centered, fading ends) */
@media (min-width: 769px){
    .support-col:not(:last-child)::after{
        content: "";
        position: absolute;
        right: .25rem;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 70%;
        background: linear-gradient(
                to bottom,
                rgba(255,255,255,0),
                rgba(255,255,255,.06) 15%,
                rgba(255,255,255,.18) 50%,
                rgba(255,255,255,.06) 85%,
                rgba(255,255,255,0)
        );
    }
}

/* Note: subtle accent (no card) */
.support-note{
    padding-left: 1.1rem;
    border-left: 3px solid rgba(23,162,255,.55);
}

.support-note__text{
    color: var(--text-2);
    line-height: 1.75;
    max-width: 92ch;
}

/* Mobile: stack + horizontal separators */
@media (max-width: 768px){
    .support-col{
        padding-right: 0;
        padding-bottom: 1.25rem;
    }

    .support-col:not(:last-child){
        margin-bottom: 1.25rem;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .support-note{
        padding-left: .9rem;
    }
}

/* Pros/Cons columns on background */
.proscons-col{
    position: relative;
    padding-right: 1.5rem;
}

.proscons-col__title{
    margin-bottom: .75rem;
    line-height: 1.15;
}

/* Vertical separator (70% height, centered, fading ends) */
@media (min-width: 769px){
    .proscons-col:first-child::after{
        content: "";
        position: absolute;
        right: .25rem;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 70%;
        background: linear-gradient(
                to bottom,
                rgba(255,255,255,0),
                rgba(255,255,255,.06) 15%,
                rgba(255,255,255,.18) 50%,
                rgba(255,255,255,.06) 85%,
                rgba(255,255,255,0)
        );
    }
}

/* Lists */
.proscons-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .6rem;
}

.proscons-list li{
    color: var(--text-2);
    line-height: 1.65;
}

/* Optional: make emoji markers align better */
.proscons-list li{
    display: grid;
    grid-template-columns: 1.35rem 1fr;
    column-gap: .55rem;
    align-items: start;
}

.proscons-list li::before{
    content: "";
}

/* Keep your ✅/❌ but visually align them to the left column */
.proscons-list--plus li::before{
    content: "✅";
}

.proscons-list--minus li::before{
    content: "❌";
}

/* Remove the emoji from text flow if you keep them in <li> text.
   If you keep ✅/❌ inside the text, comment the 2 blocks above and remove the next rule. */
.proscons-list--plus li,
.proscons-list--minus li{
    /* If you remove ✅/❌ from the text, keep this as-is.
       If you keep ✅/❌ in the text, you may get double icons. */
}

/* Mobile: stack + horizontal divider */
@media (max-width: 768px){
    .proscons-col{
        padding-right: 0;
        padding-bottom: 1.25rem;
    }

    .proscons-col:not(:last-child){
        margin-bottom: 1.25rem;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }
}

/* FAQ accordion (details/summary) */
.faq{
    display: grid;
    gap: .75rem;
}

.faq-item{
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    overflow: hidden;
}

/* Remove default marker */
.faq-summary{
    list-style: none;
    cursor: pointer;
    padding: .95rem 1.05rem;
    font-weight: 800;
    color: rgba(255,255,255,.95);
    position: relative;
}

.faq-summary::-webkit-details-marker{
    display: none;
}

/* Right indicator */
.faq-summary::after{
    content: "+";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    display: grid;
    place-items: center;

    background: rgba(23,162,255,.10);
    border: 1px solid rgba(23,162,255,.25);
    color: rgba(255,255,255,.92);
    font-weight: 900;
}

.faq-item[open] .faq-summary::after{
    content: "–";
}

/* Divider under summary with fading ends */
.faq-item[open] .faq-summary{
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.faq-body{
    padding: .9rem 1.05rem 1.05rem;
}

.faq-body .prose{
    color: var(--text-2);
    line-height: 1.75;
}

/* Focus (keyboard accessibility) */
.faq-summary:focus-visible{
    outline: 2px solid rgba(23,162,255,.45);
    outline-offset: 2px;
    border-radius: 14px;
}

/* Mobile tweaks */
@media (max-width: 768px){
    .faq{
        gap: .65rem;
    }

    .faq-item{
        border-radius: 16px;
    }

    .faq-summary{
        padding: .85rem .95rem;
    }

    .faq-body{
        padding: .8rem .95rem .95rem;
    }

    .faq-summary::after{
        right: .85rem;
        width: 1.6rem;
        height: 1.6rem;
    }
}


/* ===== Mobile-first fixes (append to the end) ===== */

html, body{
    overflow-x: hidden;
}

/* Add safe side paddings on mobile (Bulma container doesn't add them by default) */
.container.is-narrow{
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Make the general shell less “fat” on mobile */
@media (max-width: 768px){
    html{ font-size: 16px; } /* сейчас 18px — на мобилке слишком крупно */

    .section-shell{
        padding: 1.1rem; /* было 1.25/2rem местами, итогом выглядит “тесно” + громоздко */
    }

    h1{
        font-size: 24px;
        line-height: 1.25;
    }

    h2{
        font-size: clamp(22px, 7vw, 30px);
        line-height: 1.12;
    }

    p, li{
        line-height: 1.7;
    }

    .section {
        padding: 1rem 0 !important;
    }
}


/* Mobile nav should be overlay under the topbar */
/* Always pinned header (desktop + mobile) */
.topbar{
    position: relative; /* acts as spacer */
    height: 72px;       /* must match .topbar__grid min-height */
    z-index: 100;
}

.topbar__inner{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;

    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border-bottom: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Mobile height */
@media (max-width: 768px){
    .topbar{ height: 64px; } /* match your mobile min-height */
}

.mnav{

    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 40;
}

.mnav[hidden]{
    display: none !important;
}

@media (max-width: 768px){
    .topbar__grid{
        min-height: 62px;
        gap: .5rem;
    }

    /* если у тебя есть обёртка справа (кнопки + бургер), сделай её “не ломучей” */
    .topbar__right{
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        flex-wrap: nowrap;
    }

    .btn{
        padding: .52rem .75rem;
        font-size: .92rem;
        white-space: nowrap;
    }

    .brand__text{
        font-size: 20px;
        letter-spacing: .06em;
    }
    .mnav{ top: 64px; }
}

.buttons-play {
    margin: 1em auto 2em;
    text-align: center;
}


/* Breadcrumbs */
.breadcrumbs{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem;
    margin: 0 0 1rem;
    color: rgba(255,255,255,.72);
    font-size: .95rem;
}

.breadcrumbs__link{
    color: rgba(255,255,255,.88);
    text-decoration: none;
}

.breadcrumbs__link:hover{
    text-decoration: underline;
}

.breadcrumbs__sep{
    color: rgba(255,255,255,.40);
}

.breadcrumbs__current{
    color: rgba(255,255,255,.92);
    font-weight: 700;
}

@media (max-width: 768px){
    .breadcrumbs{
        font-size: .92rem;
        margin-bottom: .85rem;
    }
}


/* =========================
   Contact form (mobile-first)
   ========================= */

.form{
    margin-top: 1.25rem;
}

.field{
    display: block;
    margin-bottom: 1rem;
}

.field__label{
    display: block;
    margin: 0 0 .5rem;
    font-weight: 600;
    letter-spacing: .2px;
    color: rgba(255,255,255,.92);
}

.field__control{
    display: block;
    width: 100%;
    padding: .85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.10);
    color: rgba(255,255,255,.92);
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .06s ease;
}

.field__control--area{
    min-height: 190px;
    resize: vertical;
    line-height: 1.55;
}

/* Placeholders */
.field__control::placeholder{
    color: rgba(255,255,255,.45);
}

/* Hover */
.field__control:hover{
    border-color: rgba(255,255,255,.22);
}

/* Focus */
.field__control:focus{
    border-color: rgba(255,255,255,.34);
    background: rgba(0,0,0,.14);
    box-shadow:
            0 0 0 3px rgba(0,160,255,.18),
            inset 0 1px 0 rgba(255,255,255,.06);
}

/* Invalid (only after user interaction) */
.field__control:invalid:not(:placeholder-shown){
    border-color: rgba(255,90,90,.50);
    box-shadow:
            0 0 0 3px rgba(255,90,90,.14),
            inset 0 1px 0 rgba(255,255,255,.06);
}

/* Small helper text (if you ever add it) */
.field__hint{
    display: block;
    margin-top: .45rem;
    font-size: .9rem;
    color: rgba(255,255,255,.62);
}

/* Tighten spacing on very small screens */
@media (max-width: 360px){
    .field__control{
        padding: .8rem .9rem;
        border-radius: 12px;
    }
}

/* Desktop polish */
@media (min-width: 769px){
    .form{
        margin-top: 1.5rem;
    }
    .field{
        margin-bottom: 1.1rem;
    }
    .field__control--area{
        min-height: 220px;
    }
}


/* =========================================================
   BONUS SECTION — mobile first (with breakpoints)
   ========================================================= */

.bonus-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px;
}

.bonus-card {
    border-radius: 16px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.bonus-card__head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.bonus-card__title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.25;
}

/* Pills */
.bonus-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.bonus-pill--num {
    min-width: 32px;
    text-align: center;
    background: rgba(253, 76, 0, 0.18);
    border-color: rgba(253, 76, 0, 0.35);
}

.bonus-pill--accent {
    background: rgba(0, 160, 255, 0.18);
    border-color: rgba(0, 160, 255, 0.30);
}

.bonus-pill--success {
    background: rgba(0, 200, 120, 0.18);
    border-color: rgba(0, 200, 120, 0.30);
}

.bonus-pill--warn {
    background: rgba(255, 190, 0, 0.18);
    border-color: rgba(255, 190, 0, 0.30);
}

.bonus-pill--info {
    background: rgba(140, 120, 255, 0.18);
    border-color: rgba(140, 120, 255, 0.30);
}

/* Body list */
.bonus-card__body {
    margin-top: 10px;
}

.bonus-points {
    margin: 0;
    padding-left: 18px;
    font-size: 0.9rem;
}

.bonus-points li + li {
    margin-top: 6px;
}

/* =========================================================
   BONUS ICON SPRITE — uses ONE PNG (2x2 grid)
   Put file here: assets/img/bonus/bonus.png
   CSS file is assumed in: assets/css/main.css
   Therefore relative path is: ../img/bonus/bonus.png
   ========================================================= */

.bonus-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;

    background-image: url("../img/bonus/bonus.png");
    background-repeat: no-repeat;

    /* 2 columns & 2 rows sprite */
    background-size: 200% 200%;

    background-color: transparent;
}

/* 1: top-left */
.bonus-icon--1 {
    background-position: 0% 0%;
}

/* 2: top-right */
.bonus-icon--2 {
    background-position: 100% 0%;
}

/* 3: bottom-left */
.bonus-icon--3 {
    background-position: 0% 100%;
}

/* 4: bottom-right */
.bonus-icon--4 {
    background-position: 100% 100%;
}

/* =========================================================
   ≥ 480px — large phones
   ========================================================= */
@media (min-width: 480px) {
    .bonus-cards {
        gap: 16px;
    }

    .bonus-card {
        padding: 16px;
        border-radius: 18px;
    }

    .bonus-icon {
        width: 48px;
        height: 48px;
    }

    .bonus-card__title {
        font-size: 1.1rem;
    }

    .bonus-pill {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .bonus-points {
        font-size: 0.92rem;
    }
}

/* =========================================================
   ≥ 768px — tablets
   ========================================================= */
@media (min-width: 768px) {
    .bonus-cards {
        gap: 18px;
        margin-top: 18px;
    }

    .bonus-card {
        padding: 18px;
    }

    .bonus-card__head {
        align-items: center;
        gap: 12px;
    }

    .bonus-icon {
        width: 52px;
        height: 52px;
    }

    .bonus-card__title {
        font-size: 1.2rem;
    }

    .bonus-pill--num {
        min-width: 36px;
    }

    .bonus-points {
        font-size: 0.95rem;
        padding-left: 20px;
    }

    .bonus-points li + li {
        margin-top: 8px;
    }
}

/* =========================================================
   ≥ 1024px — desktop
   ========================================================= */
@media (min-width: 1024px) {
    .bonus-cards {
        gap: 20px;
    }

    .bonus-card {
        padding: 20px;
    }

    .bonus-icon {
        width: 56px;
        height: 56px;
    }

    .bonus-card__title {
        font-size: 1.3rem;
    }

    .bonus-pill {
        font-size: 0.85rem;
    }
}


/* =========================================================
   BONUS — reference layout (right mock) — mobile first
   ========================================================= */

.bonus-cards--ref {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px;
}

.bonus-card--ref {
    border-radius: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.bonus-ref__top {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: start;
}

.bonus-ref__head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bonus-ref__title {
    margin: 0;
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.2;
}

/* Pills */
.bonus-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 7px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.82rem;
    line-height: 1;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.bonus-pill--num {
    min-width: 36px;
    background: rgba(255, 122, 0, .95);
}

.bonus-pill--accent {
    background: rgba(0, 160, 255, 0.18);
    border-color: rgba(0, 160, 255, 0.30);
}

.bonus-pill--success {
    background: rgba(0, 200, 120, 0.18);
    border-color: rgba(0, 200, 120, 0.30);
}

.bonus-pill--warn {
    background: rgba(255, 190, 0, 0.18);
    border-color: rgba(255, 190, 0, 0.30);
}

.bonus-pill--info {
    background: rgba(140, 120, 255, 0.18);
    border-color: rgba(140, 120, 255, 0.30);
}

/* Mini bullets like in mock (short, clean lines) */
.bonus-mini {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.bonus-mini li {
    position: relative;
    padding-left: 18px;
    font-size: 0.98rem;
    line-height: 1.45;
    opacity: 0.98;
}

.bonus-mini li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

/* Details (keeps full info but visually compact) */
.bonus-more {
    margin-top: 12px;
}

.bonus-more__summary {
    cursor: pointer;
    font-weight: 800;
    font-size: 0.92rem;
    opacity: 0.85;
}

.bonus-more__summary:hover {
    opacity: 1;
}

.bonus-points--more {
    margin: 10px 0 0;
    padding-left: 18px;
    font-size: 0.95rem;
}

.bonus-points--more li + li {
    margin-top: 8px;
}

/* =========================================================
   Sprite icons (bonus.png 2x2)
   ========================================================= */

.bonus-icon {
    background-image: url("/assets/img/bonus.png");
    background-repeat: no-repeat;
    background-size: 200% 200%;
    background-color: transparent;
    width: 44px;
    height: 44px;
}

.bonus-icon--lg {
    width: 56px;
    height: 56px;
}

.bonus-icon--1 { background-position: 0% 0%; }
.bonus-icon--2 { background-position: 100% 0%; }
.bonus-icon--3 { background-position: 0% 100%; }
.bonus-icon--4 { background-position: 100% 100%; }

/* =========================================================
   ≥ 480px
   ========================================================= */
@media (min-width: 480px) {
    .bonus-card--ref {
        padding: 18px;
    }

    .bonus-ref__top {
        grid-template-columns: 64px 1fr;
        gap: 14px;
    }

    .bonus-icon--lg {
        width: 64px;
        height: 64px;
    }

    .bonus-ref__title {
        font-size: 1.22rem;
    }

    .bonus-mini li {
        font-size: 1rem;
    }
}

/* =========================================================
   ≥ 768px
   ========================================================= */
@media (min-width: 768px) {
    .bonus-cards--ref {
        gap: 18px;
        margin-top: 18px;
    }

    .bonus-card--ref {
        padding: 22px;
    }

    .bonus-ref__top {
        grid-template-columns: 72px 1fr;
        gap: 16px;
        align-items: center;
    }

    .bonus-icon--lg {
        width: 72px;
        height: 72px;
    }

    .bonus-ref__title {
        font-size: 1.35rem;
    }

    .bonus-mini {
        gap: 12px;
    }
}

/* =========================================================
   ≥ 1024px
   ========================================================= */
@media (min-width: 1024px) {
    .bonus-card--ref {
        padding: 26px;
    }

    .bonus-ref__top {
        grid-template-columns: 84px 1fr;
    }

    .bonus-icon--lg {
        width: 84px;
        height: 84px;
    }

    .bonus-ref__title {
        font-size: 1.45rem;
    }
}

/* =========================================================
   Indexbar (Table of contents) — mobile first
   ========================================================= */

.indexbar {
    margin: 18px 0;
}

.indexbar .container {
    position: relative;
}

.index {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

/* Remove default marker */
.index > summary {
    list-style: none;
}
.index > summary::-webkit-details-marker {
    display: none;
}

.index__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    cursor: pointer;
    user-select: none;
}

.index__title {
    font-weight: 900;
    font-size: 1.02rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.96);
}

.index__chev {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    transition: transform 180ms ease;
    flex: 0 0 auto;
    margin-left: auto;
}

/* Rotate chevron when open */
.index[open] .index__chev {
    transform: rotate(-135deg);
}

.index__body {
    padding: 0 14px 14px;
}

.index__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.index__link {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.25;

    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.index__link:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.index__link:focus-visible {
    outline: 2px solid rgba(253, 76, 0, 0.75);
    outline-offset: 2px;
}


/* =========================================================
   ≥ 768px — tablets
   ========================================================= */
@media (max-width: 768px) {
    .indexbar {
        display: none;
    }


}




/* Fix: keep button label above gradient overlay */
.banner__cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
    z-index: 0;
    color: #ffffff;
}

.banner__cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;

    background: linear-gradient(
            110deg,
            rgba(255, 126, 0, 1) 0%,
            rgba(255, 70, 0, 1) 25%,
            rgba(255, 206, 0, 1) 50%,
            rgba(255, 70, 0, 1) 75%,
            rgba(255, 126, 0, 1) 100%
    );
    background-size: 240% 240%;
    animation: ctaGradientShift 3.2s ease-in-out infinite;
}

.banner__cta::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -40%;
    width: 60%;
    height: 220%;
    border-radius: 999px;
    pointer-events: none;

    z-index: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 60%);
    transform: rotate(18deg);
    opacity: 0.65;
    animation: ctaSheenMove 2.8s ease-in-out infinite;
}

@keyframes ctaGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes ctaSheenMove {
    0% { transform: translateX(-40%) rotate(18deg); }
    50% { transform: translateX(80%) rotate(18deg); }
    100% { transform: translateX(-40%) rotate(18deg); }
}

@media (prefers-reduced-motion: reduce) {
    .banner__cta::before,
    .banner__cta::after {
        animation: none;
    }
}


/* ===== Animated gradient for Ghost button (keeps ghost look) ===== */
.btn--ghost {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
    z-index: 0;
    color: #ffffff;
}

/* Gradient overlay (soft) */
.btn--ghost::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;

    background: linear-gradient(
            110deg,
            rgba(0, 160, 255, 0.22) 0%,
            rgba(0, 210, 255, 0.18) 25%,
            rgba(120, 255, 245, 0.20) 50%,
            rgba(0, 210, 255, 0.18) 75%,
            rgba(0, 160, 255, 0.22) 100%
    );
    background-size: 240% 240%;
    animation: ghostGradientShift 4.2s ease-in-out infinite;
}

/* Sheen */
.btn--ghost::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -50%;
    width: 70%;
    height: 240%;
    border-radius: 999px;
    pointer-events: none;

    z-index: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 60%);
    transform: rotate(18deg);
    opacity: 0.55;
    animation: ghostSheenMove 3.6s ease-in-out infinite;
}

/* Keep border "ghosty" but a bit more alive */
.btn--ghost {
    box-shadow: 0 10px 24px rgba(0, 160, 255, 0.12);
}

@keyframes ghostGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes ghostSheenMove {
    0% { transform: translateX(-45%) rotate(18deg); }
    50% { transform: translateX(85%) rotate(18deg); }
    100% { transform: translateX(-45%) rotate(18deg); }
}
@media (prefers-reduced-motion: reduce) {
    .btn--ghost::before,
    .btn--ghost::after {
        animation: none;
    }
}

.table, .table td, .table th {
    color: white !important;
}

@media (max-width: 768px) {
  section .btn {
    white-space: nowrap;
    display: block;
    width: 70%;
    margin: 1em auto;
    font-size: 120%;
  }
   .btn {
    padding: 1rem 1.4rem;

  }
}
