: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;
}

body{
    margin:0;
    font-family: Tahoma, sans-serif;
    color:var(--text-1);
    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;
}

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

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

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

.title.is-3 {
    font-size: 1.2rem;
}

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

.title.is-4 {
    font-size: 1rem;
}

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;
}

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: .65rem 1.1rem;
    font-weight: 800;
    cursor: pointer;
    line-height: 1;
    transition: transform .12s ease, background-color .12s ease, border-color .12s ease, opacity .12s ease;
}

.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);
    padding-bottom: 14px;
}

.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;
    padding-bottom: 14px;
}

.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: .65em;
    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: 0 0 1rem;
    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;
}

.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: absolute;
    top: 100%;
    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{
        font-size: .92rem;
        white-space: nowrap;
        display: block;
        width: 90%;
        margin: 1rem auto;
        padding: 13px;
    }

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

.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;
    }
}

