/* ============================================================
   Brand Classic — Dark Premium
   Inspired by Stripe dark mode, Linear, Vercel dashboard
   ============================================================ */

:root {
    --accent-color: #d4a017;
    --accent-text-color: #09090b;
    --accent-glow: rgba(212, 160, 23, 0.15);
    --accent-subtle: rgba(212, 160, 23, 0.08);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --bg-base: #09090b;
    --bg-elevated: #0f0f12;
    --bg-card: #141418;
    --bg-hover: #1a1a1f;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-tertiary: #8e8e96;
    --border-default: rgba(255, 255, 255, 0.06);
    --border-subtle: rgba(255, 255, 255, 0.04);
    --border-hover: rgba(255, 255, 255, 0.1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --green: #34d399;
    --green-dim: rgba(52, 211, 153, 0.1);
    --red: #f87171;
    --red-dim: rgba(248, 113, 113, 0.1);
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
}

/* === Reset & base === */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    background: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: #e8b930;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background: var(--accent-color);
    color: var(--accent-text-color);
}

.qiyelduzvg6 {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}


/* === Header === */

.r0h8xjmp2a {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border-default);
}

.lzd50331 {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 60px;
    position: relative;
}

.bm4lb1au {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    white-space: nowrap;
    letter-spacing: -0.01em;
    /* Logo holds its size — nav links can compress to keep Register CTA visible. */
    flex-shrink: 0;
}

.bm4lb1au img {
    height: 40px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
}

.mk0hlidh {
    display: flex;
    gap: 4px;
    margin: 0 auto;
}

.mk0hlidh a {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
    position: relative;
    letter-spacing: 0.01em;
}

.mk0hlidh a:hover {
    color: var(--text-primary);
}

.mk0hlidh a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent-color, #FFD700);
    border-radius: 1px;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.2s, transform 0.2s;
}

.mk0hlidh a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.zlw0acm63vtnvo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    flex-shrink: 0;
}

.nps6xb6b {
    background: var(--accent-color);
    color: var(--accent-text-color);
    padding: 7px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    /* Register is the highest-priority element in the header — it never
       shrinks. Other items (nav links, Login) compress or hide first. */
    flex-shrink: 0;
}

.nps6xb6b:hover {
    color: var(--accent-text-color);
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.qcg4qxg6y8 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    background: rgba(52, 211, 153, 0.15);
    border: none;
    transition: all var(--transition-fast);
}

.qcg4qxg6y8:hover {
    color: var(--green);
    background: rgba(52, 211, 153, 0.25);
}

.qcg4qxg6y8 svg {
    flex-shrink: 0;
}

.uk9duq817uy7k,
.boyc9t2ngr6keh {
    display: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    padding: 11px 22px;
    border: none;
    /* Mobile CTA + burger are highest priority on small screens — logo
       compresses first so the Register button is always visible. */
    flex-shrink: 0;
}

.uk9duq817uy7k {
    background: var(--accent-color);
    color: var(--accent-text-color);
}

.boyc9t2ngr6keh {
    background-color: rgba(52, 211, 153, 0.15);
    color: var(--green);
}


/* CSS-drawn burger lines: top + middle + bottom.
   Middle line is rendered as the element's own background-image (a thin
   horizontal gradient strip). Top + bottom are ::before/::after.
   In `.q4ucylkk` state the top/bottom rotate into an X and the middle fades. */
.z22vv8zszk5 {
    display: none;
    position: relative;
    width: 32px;
    height: 32px;
    /* Use longhand so a stray `background:` shorthand can't reset the
       transparent background-color to the default button-face gray. */
    background-color: transparent;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: center;
    background-size: 18px 2px;
    background-repeat: no-repeat;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast),
                background-size .25s ease;
}
.z22vv8zszk5::before,
.z22vv8zszk5::after {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    height: 2px;
    background-color: currentColor;
    transition: top .25s ease, transform .25s ease;
}
.z22vv8zszk5::before { top: 9px; }
.z22vv8zszk5::after  { top: 21px; }
.z22vv8zszk5.q4ucylkk    { background-size: 0 2px; }
.z22vv8zszk5.q4ucylkk::before { top: 15px; transform: rotate(45deg); }
.z22vv8zszk5.q4ucylkk::after  { top: 15px; transform: rotate(-45deg); }

.z22vv8zszk5 svg {
    display: block;
}

.z22vv8zszk5:hover {
    color: var(--text-primary);
}


/* === Main layout === */

.rgm64ulf0 {
    min-height: 60vh;
}

.tbsi8wfvln15 {
    padding: 0;
}
.tbsi8wfvln15 + .tbsi8wfvln15 {
    margin-top: 24px;
}


/* === Hero === */

.xd0ayglorej6xx {
    position: relative;
    padding: 0 0 8px;
    margin-bottom: 48px;
    overflow: hidden;
    background: var(--bg-base);
}

/* Card-style hero */
.roonx5pw4b2 {
    background: var(--bg-base);
    /* Subtle dot grid pattern behind the card */
    background-image: radial-gradient(rgba(212, 160, 23, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Operator-uploaded hero image — scale to cover, no tiling, center-cropped */
.eworg2oqlcsu8 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hyrd3xki {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 24px auto;
    padding: 56px 48px 48px;
    /* Overlay strength is operator-controlled per site via the
       Hero overlay slider in Site Settings — defaults to 0.55 so
       sites without a configured value still render as before. */
    background: rgba(0, 0, 0, var(--hero-overlay-opacity, 0.55));
    backdrop-filter: blur(calc(2px * var(--hero-overlay-opacity, 0.55)));
    -webkit-backdrop-filter: blur(calc(2px * var(--hero-overlay-opacity, 0.55)));
    border: 1px solid rgba(212, 160, 23, calc(0.08 * var(--hero-overlay-opacity, 0.55) / 0.55));
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
}

/* Gold glow — bottom right */
.hyrd3xki::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 160, 23, calc(0.15 * var(--hero-overlay-opacity, 0.55) / 0.55)) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle glow — top left */
.hyrd3xki::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 160, 23, calc(0.06 * var(--hero-overlay-opacity, 0.55) / 0.55)) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hyrd3xki > * {
    position: relative;
    z-index: 1;
}

.vp8iqpqvbairdh {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.n8klhjmtrv {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.n8klhjmtrv strong {
    color: var(--accent-color);
    font-weight: 700;
}

.ac08lpek7bju {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.dgbq114re5lua {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-color);
    color: var(--accent-text-color);
    padding: 13px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    transition: all var(--transition-base);
}

.dgbq114re5lua:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
    color: var(--accent-text-color);
}

.ma5c1pdv1ziop {
    display: inline-flex;
    align-items: center;
    padding: 13px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
    background: transparent;
    transition: all var(--transition-base);
}

.ma5c1pdv1ziop:hover {
    border-color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}


/* === Rich text content === */

.t7gvyr9mrta {
    margin-bottom: 32px;
}

.t7gvyr9mrta h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.t7gvyr9mrta h2 {
    font-size: 1.7rem;
    margin: 80px 0 8px;
    scroll-margin-top: 80px;
    padding-bottom: 8px;
}
.tbsi8wfvln15:first-child .t7gvyr9mrta h2:first-child {
    margin-top: 0;
}
.t7gvyr9mrta h2:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.t7gvyr9mrta h3 {
    font-size: 1.1rem;
    margin: 32px 0 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.t7gvyr9mrta p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
}

.t7gvyr9mrta ul,
.t7gvyr9mrta ol {
    margin: 16px 0 16px 20px;
    color: var(--text-secondary);
}

.t7gvyr9mrta li {
    margin-bottom: 8px;
    font-size: 15px;
    padding-left: 4px;
}

.t7gvyr9mrta table {
    width: 100%;
    /* border-collapse:collapse ignores border-radius on corner cells —
       cell borders punch through the rounded outline. Use separate +
       overflow:hidden so the table can clip its corners cleanly. */
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    margin: 24px 0;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    table-layout: auto;
}
@media (max-width: 640px) {
    .t7gvyr9mrta table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.t7gvyr9mrta th,
.t7gvyr9mrta td {
    padding: 10px 20px;
    border-bottom: 1px solid var(--border-subtle);
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Imported old-gen tables wrap every cell text in <p>. The default
   .t7gvyr9mrta p { margin-bottom: 16px } pushes content to the
   top of the cell visually, breaking vertical centering. Zero margins
   on cell-level <p> so the centering applies to the actual text box. */
.t7gvyr9mrta td > p,
.t7gvyr9mrta th > p,
.t7gvyr9mrta td > p:last-child,
.t7gvyr9mrta th > p:last-child {
    margin: 0;
}

.t7gvyr9mrta th {
    background: var(--bg-elevated);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color) 45%, transparent);
}

.t7gvyr9mrta td:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

.t7gvyr9mrta tr:last-child td {
    border-bottom: none;
}

.t7gvyr9mrta tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.t7gvyr9mrta img {
    border-radius: var(--radius-md);
    /* Show the image at its real (intrinsic) size — never upscale,
       only shrink if it overflows the reading column. `width: auto`
       picks the natural width from the file, `max-width: 100%` keeps
       wider images from busting the layout on narrow viewports. */
    display: block;
    margin: 24px auto;
    width: auto;
    max-width: 100%;
    height: auto;
}
/* Figures size to their image's natural width — no width:100% stretch
   inside the figure, so a 600 px image stays 600 px (not blown up to
   the figure's full width). Centered as a block. */
.t7gvyr9mrta figure {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 24px auto;
    padding: 0;
}
.t7gvyr9mrta figure img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 0;
}
.t7gvyr9mrta figcaption {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 8px;
    text-align: center;
}

.t7gvyr9mrta blockquote {
    border-left: 2px solid var(--accent-color);
    padding: 14px 20px;
    margin: 24px 0;
    color: var(--text-secondary);
    background: var(--bg-elevated);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.t7gvyr9mrta strong {
    color: var(--text-primary);
    font-weight: 600;
}


/* === Pros & Cons === */

.d34i8rteq46j0 {
    margin: 0 0 36px 0;
}

.depyhs8x {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    /* Each column sizes to its own content — when one column has fewer
       items than the other, it stays shorter instead of stretching to
       match the taller column. */
    align-items: start;
}

.pupmulgd,
.moe5imqb4tps {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.t18ay1zv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.j1ubl1xjhouih {
    display: flex;
    align-items: center;
    gap: 10px;
}

.e3nh86v45 {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.dd5xeq1wlo {
    background: var(--green-dim);
    color: var(--green);
}
.dd5xeq1wlo::before { content: "✓"; }

.my85dpwrakucy {
    background: var(--red-dim);
    color: var(--red);
}
.my85dpwrakucy::before { content: "✕"; }

.t18ay1zv h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.yqe7e8y07rfgc0 {
    font-size: 11px;
    color: var(--text-tertiary);
    font-family: monospace;
    letter-spacing: 0.02em;
}

.pupmulgd ul,
.moe5imqb4tps ul {
    list-style: none;
}

.pupmulgd li,
.moe5imqb4tps li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.pupmulgd li:last-child,
.moe5imqb4tps li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pupmulgd li:first-child,
.moe5imqb4tps li:first-child {
    padding-top: 0;
}

.u2ieqb229 {
    flex-shrink: 0;
    font-size: 12px;
    margin-top: 2px;
}

.ad5t8w94jv9ml {
    color: var(--green);
}
.ad5t8w94jv9ml::before { content: "✓"; }

.amuku78wlbzcz {
    color: var(--red);
}
.amuku78wlbzcz::before { content: "✕"; }


/* === Info Table === */

.i3hnbkaw {
    margin: 0 0 36px 0;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.i3hnbkaw h2 {
    margin-bottom: 16px;
}

.i3hnbkaw table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.i3hnbkaw td {
    padding: 10px 20px;
    font-size: 14px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--transition-fast);
}

.i3hnbkaw tr:last-child td {
    border-bottom: none;
}

.i3hnbkaw tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.jabs68jr1n6hi {
    font-weight: 600;
    color: var(--text-secondary);
    width: 40%;
    font-size: 13px;
    letter-spacing: 0.01em;
}

.a17zeb9yt59oq {
    color: var(--text-primary);
    font-weight: 500;
}


/* === Slots Grid === */

/* === Slots Section === */

.w3mo5b3jou4 {
    margin: 40px 0;
}

.f7qfq8id {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.f7qfq8id h2 {
    margin: 0;
    font-size: 1.3rem;
}

.bpl8fdy5t88d {
    font-size: 13px;
    color: var(--accent-color);
    text-decoration: none;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    white-space: nowrap;
}

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

.jygd47y82av {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    padding: 6px;
    margin: -6px;
}

.xwiasnru {
    margin-bottom: 32px;
}

.m6y1yz3c6ojz {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    padding: 6px;
    margin: -6px;
}

.oi6vrvm2 {
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}


.oi6vrvm2:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.c7mjxhjlzll9 {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
}

.c7mjxhjlzll9 img {
    width: 102%;
    height: 102%;
    margin: -1%;
    object-fit: cover;
    display: block;
}

.ag894vz16gpgp2 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255,255,255,.15);
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.l7b0q8102dlth {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
    z-index: 2;
    pointer-events: none;
}

.erghb3sk74 {
    background: rgba(212, 160, 23, 0.95);
    color: #1a1a1a;
}

.y9atyoxdxe {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
}

/* HOT — slots flagged `is_top` in admin. More vivid than the random
   gold TOP so curated picks visually pop. Slight glow so it reads as
   "highlighted" rather than another colour swatch. */
.rcfg5xki {
    background: linear-gradient(135deg, #ff4d2e, #ff8a2e);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(255, 138, 46, 0.35), 0 4px 10px rgba(255, 77, 46, 0.25);
}

.xtpt2b10i426 {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}

.oi6vrvm2:hover .xtpt2b10i426 {
    opacity: 1;
}

.gf1cni26dou6 {
    display: block;
    width: 52px;
    height: 52px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.95;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,.6));
    /* background-image is injected per-site by the builder */
}

.j891ct6w1zq7o {
    padding: 8px 4px 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.axyniib0 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uzt5qc1qp {
    font-size: 11px;
    color: var(--text-tertiary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bgklz7dyu8 {
    text-align: center;
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.kxf4f76sina3z {
    background: transparent !important;
    border: 1px solid var(--accent-color) !important;
    color: var(--accent-color) !important;
}
.kxf4f76sina3z:hover {
    background: rgba(212, 160, 23, 0.1) !important;
    color: var(--accent-color) !important;
}

.y8n1nipeupxq8 {
    display: inline-block;
    padding: 10px 32px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    color: var(--text-tertiary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
}

.y8n1nipeupxq8:hover {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.3);
    color: var(--text-primary);
}

/* === Slot Page === */

.qpny8jvq3m5i {
    padding-top: 20px;
    padding-bottom: 40px;
}

.kvpwpt1hlva {
    margin-bottom: 16px;
    padding-top: 12px;
}

.r53p9xiu {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
}

.r53p9xiu:hover {
    color: var(--text-primary);
}

.sjj6nbtio {
    margin-bottom: 24px;
}

.clmzdx1qy {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.clmzdx1qy iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.rtmlu6jnk8n {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0f172a;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rtmlu6jnk8n img {
    height: 100%;
    object-fit: contain;
}

.yq0iwbl2s {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    justify-content: center;
}

.cq8ebfoc5 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
}

.cq8ebfoc5:hover {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.3);
}

.y1m1kw2s {
    display: inline-flex;
    align-items: center;
    padding: 10px 32px;
    background: var(--accent-color);
    color: var(--accent-text-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: filter .2s, transform .2s;
}

.y1m1kw2s:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.z6ycpf7dwt43 {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    margin-bottom: 24px;
}

.pz8yuol2w2 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.h92ckevhe1uwi {
    width: 120px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.h92ckevhe1uwi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bsppoeau {
    flex: 1;
}

.bsppoeau h1 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    line-height: 1.2;
}

.mc6x8voim {
    color: var(--text-tertiary);
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
}

.j6i6zq0n {
    display: flex;
    gap: 24px;
}

.sx2j1xcnv {
    display: flex;
    align-items: center;
    gap: 6px;
}

.q2suh36tjer {
    font-size: 12px;
    color: var(--text-tertiary);
}

.kbr6knamdqox6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
}

.o6vcnpxr {
    display: inline-flex;
    padding: 10px 24px;
    background: var(--accent-color);
    color: var(--accent-text-color);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 8px;
    transition: filter .2s, transform .2s;
}

.o6vcnpxr:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.zxrqaf1s85 {
    display: flex;
    gap: 12px;
}

.tjhkxdjh0o {
    flex: 1;
    display: inline-flex;
    justify-content: center;
    padding: 14px 36px;
    background: var(--accent-color);
    color: var(--accent-text-color);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: filter .2s, transform .2s;
}

.tjhkxdjh0o:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.jl9wvw7i2p83u6 {
    margin-bottom: 32px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 15px;
}

.jl9wvw7i2p83u6 h2 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 24px 0 8px;
}

.jl9wvw7i2p83u6 p {
    margin-bottom: 12px;
}

.b5iqppwjxuys {
    margin-top: 40px;
}

.b5iqppwjxuys h2 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

/* Mid-desktop squeeze (≥960px so we're still in desktop layout, but space
   is tight): drop the Login button and tighten nav-link padding so the
   Register CTA always has room — that button is the highest priority. */
@media (max-width: 1100px) and (min-width: 961px) {
    .mk0hlidh a {
        padding: 8px 12px;
        font-size: 14px;
    }
    .qcg4qxg6y8 {
        display: none;
    }
    .lzd50331 {
        gap: 16px;
    }
}

@media (max-width: 960px) {
    .z22vv8zszk5 {
        display: flex;
        order: 99;
        flex-shrink: 0;
    }
    .mk0hlidh {
        display: none !important;
    }
    .zlw0acm63vtnvo {
        display: none;
    }
    .uk9duq817uy7k {
        display: block;
        margin-left: auto;
        margin-right: 6px;
    }
    .lzd50331 {
        height: 56px;
    }
    .bm4lb1au {
        flex-shrink: 1;
        min-width: 100px;
        overflow: hidden;
        padding-left: 8px;
    }
    .bm4lb1au img {
        max-width: 100%;
        height: 32px;
        max-height: 32px;
    }
    /* Trim CTA padding so the logo gets a bit more horizontal space. */
    .uk9duq817uy7k,
    .boyc9t2ngr6keh {
        padding: 9px 14px;
    }
    .lzd50331 {
        gap: 12px;
    }
    .t5014it7 {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-elevated);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s, visibility 0.25s;
        overflow-y: hidden;
    }
    .t5014it7.q4ucylkk {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (max-width: 768px) {
    .pz8yuol2w2 {
        gap: 14px;
    }
    .h92ckevhe1uwi {
        width: 100px;
        height: 130px;
    }
    .bsppoeau h1 {
        font-size: 1.1rem;
    }
    .cq8ebfoc5 {
        display: none;
    }
    .yq0iwbl2s {
        flex-direction: column;
    }
    .y1m1kw2s, .cq8ebfoc5 {
        justify-content: center;
    }
    .b5iqppwjxuys .jygd47y82av {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}



/* === Bonuses === */

.k3aiaafklooanq {
    margin: 0 0 36px 0;
}

.k3aiaafklooanq h2 {
    margin-bottom: 20px;
}

.oue08c2xhhwin {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.igwrz72ytkne3 {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition-fast), transform var(--transition-base);
}

.igwrz72ytkne3:first-child {
    border-color: rgba(212, 160, 23, 0.15);
}

.igwrz72ytkne3:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.k3e8wn1b6yj {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-color);
    background: var(--accent-subtle);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.i42okecnhm {
    font-size: 1.4em;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.nw9rmvvc8z46p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.vaboh49ih6v6q1 {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

.ai30hi79lywhek {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding: 10px 16px;
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: var(--radius-md);
    color: var(--accent-text-color);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.ai30hi79lywhek:hover {
    background: transparent;
    color: var(--accent-color);
}


/* === Banking === */

.f3rpno28ztg {
    margin: 0 0 36px 0;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.f3rpno28ztg h2 {
    margin-bottom: 16px;
}

.bjit64fh {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-default);
    table-layout: auto;
}
@media (max-width: 640px) {
    .bjit64fh {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.bjit64fh th,
.bjit64fh td {
    padding: 10px 20px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 14px;
    vertical-align: middle;
}

.bjit64fh th {
    background: var(--bg-elevated);
    color: var(--text-tertiary);
    font-weight: 600;
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bjit64fh td {
    color: var(--text-secondary);
}

.bjit64fh tr:last-child td {
    border-bottom: none;
}

.bjit64fh tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.oh3oe4a9t {
    color: var(--text-primary);
    font-weight: 500;
}

.d26nfnz2n62 {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    margin-right: 6px;
    vertical-align: middle;
}

.vtvmjb0h3do4g {
    color: var(--green);
    font-weight: 600;
}


/* === Getting Started === */

.vwai472s {
    margin: 0 0 36px 0;
}

.vwai472s h2 {
    margin-bottom: 20px;
}

.nl571a024a1pq {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.wd8jvb3lv9 {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    transition: border-color var(--transition-fast), transform var(--transition-base);
}

.wd8jvb3lv9:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

/* Dashed connector between cards */
.wd8jvb3lv9:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    right: -8px;
    width: 8px;
    border-top: 2px dashed var(--border-hover);
    z-index: 1;
}

.hot7fu8r {
    width: 36px;
    height: 36px;
    background: var(--accent-color);
    color: var(--accent-text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 16px;
}

.wd8jvb3lv9 h3 {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.wd8jvb3lv9 p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}


/* === Safety === */

.s5ycaj4cax9 {
    margin: 0 0 36px 0;
}

.s5ycaj4cax9 h2 {
    margin-bottom: 20px;
}

.b0xzhzh5b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.u8w4orlvx {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: border-color var(--transition-fast);
}

.u8w4orlvx:hover {
    border-color: var(--border-hover);
}

.u8w4orlvx h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.u8w4orlvx p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* === FAQ === */

.hc4j9y9vp88 {
    margin: 0 0 36px 0;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hc4j9y9vp88 h2 {
    /* Match .t7gvyr9mrta h2 size so the FAQ title doesn't look
       lighter than other section headers, and pad it so it doesn't sit
       flush against the card edge. */
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
    padding: 24px 24px 20px;
    scroll-margin-top: 80px;
    border-bottom: 1px solid var(--border-subtle);
}

.iosva1fuxo {
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--transition-fast);
}

.iosva1fuxo:last-child {
    border-bottom: none;
}

.iosva1fuxo:hover {
    background: rgba(255, 255, 255, 0.01);
}

.l0ipoupib {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    color: var(--text-primary);
    border: none;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: color var(--transition-fast);
    line-height: 1.5;
}

.l0ipoupib:hover {
    color: var(--accent-color);
}

.l0ipoupib::after {
    content: "";
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-default);
    border-radius: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
    color: var(--text-tertiary);
    /* CSS-drawn plus sign — pixel-perfect centered, no font glyph baseline drift */
    background:
        linear-gradient(currentColor, currentColor) center/12px 2px no-repeat,
        linear-gradient(currentColor, currentColor) center/2px 12px no-repeat;
}

.iosva1fuxo.q4ucylkk .l0ipoupib::after {
    border-color: var(--accent-color);
    color: var(--accent-color);
    /* Open state: only the horizontal bar — minus sign */
    background: linear-gradient(currentColor, currentColor) center/12px 2px no-repeat;
}

.h063nmhld5 {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.75;
}

.iosva1fuxo.q4ucylkk .h063nmhld5 {
    padding: 0 24px 20px;
    max-height: 600px;
}


/* === Article Rating === */

.wtfouetogrlq30 {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin: 0 0 36px 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.m9tucx6qmzo240 {
    display: flex;
    align-items: baseline;
    flex-shrink: 0;
}

.s45gm4xnmgjy {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--accent-color);
    line-height: 1;
}

.raxqotj8n {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-left: 2px;
}

.ek4xtimueg6 {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gbvdgwll6uz {
    display: flex;
    gap: 2px;
}

.y57a3juy3pq {
    color: var(--border-hover);
    font-size: 18px;
}
.y57a3juy3pq::before { content: "★"; }

.y57a3juy3pq.il7vdymv2k96 {
    color: var(--accent-color);
}

.y57a3juy3pq.u6toljgk {
    color: var(--accent-color);
    opacity: 0.5;
}

.iytd05qx9h {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.kgeryvbui {
    color: var(--text-tertiary);
    font-size: 12px;
}


/* === Social Links === */

.wz4tmvd3pc36 {
    margin: 0 0 36px 0;
    text-align: center;
}

.wz4tmvd3pc36 h3 {
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 600;
}

.gems3gdjdrejs3 {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.serb05uccl4 {
    background: var(--bg-card);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-tertiary);
    border: 1px solid var(--border-default);
    transition: all var(--transition-fast);
    font-weight: 500;
}

.serb05uccl4:hover {
    border-color: var(--border-hover);
    color: var(--text-secondary);
    transform: translateY(-1px);
}


/* === Providers === */

.n85t7qlx0mfn2 {
    margin: 0 0 36px 0;
    overflow: hidden;
}

.n85t7qlx0mfn2 h2 {
    margin-bottom: 16px;
}

.ij4rhxi789w {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.ij4rhxi789w::-webkit-scrollbar {
    display: none;
}

.bqji4qknipa {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color var(--transition-fast);
}

.bqji4qknipa:hover {
    border-color: var(--border-hover);
}

.bqji4qknipa img {
    height: 24px;
    width: auto;
}

.bqji4qknipa span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    white-space: nowrap;
}


/* === Table of Contents === */

.nyi4bw31jm47n {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin: 0 0 36px 0;
}

.p7zira7i5jt63 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
}

.mvr3axdomoul {
    display: flex;
    align-items: center;
    gap: 12px;
}

.f9n3pe9sz2bty {
    font-size: 18px;
    color: var(--text-tertiary);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-default);
    border-radius: 6px;
    transition: transform var(--transition-base);
}

.dpvhyf6h47r .f9n3pe9sz2bty {
    transform: rotate(-90deg);
}

.dpvhyf6h47r .ftd9ygkj8ac9 {
    display: none;
}

.dpvhyf6h47r .p7zira7i5jt63 {
    margin-bottom: 0;
}

.xyj66g8uhp4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    /* Hero "Read review" CTA jumps to #contents (which is this element).
       Compensate for the sticky header so the title isn't hidden under it. */
    scroll-margin-top: 80px;
}

.eo0k2tdeetp {
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: monospace;
}

.ftd9ygkj8ac9 {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.jnhd3tmtr6 {
    border-bottom: 1px solid var(--border-subtle);
}

/* Remove border under items in the last visual row.
   - Last item: always (it's the bottom-rightmost or bottom-leftmost).
   - Second-to-last item: only if its position is odd (left column),
     which happens when the total count is even and both fall in the
     last row. With an odd total the second-to-last sits in the row
     above and must keep its border. */
.jnhd3tmtr6:last-child,
.jnhd3tmtr6:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
}

.jnhd3tmtr6 a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.jnhd3tmtr6 a:hover {
    color: var(--accent-color);
}

.pshbfjoc0damm {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    border: 1px solid var(--border-default);
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jnhd3tmtr6 a:hover .pshbfjoc0damm {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

@media (max-width: 640px) {
    .nyi4bw31jm47n {
        padding: 20px;
    }
    .ftd9ygkj8ac9 {
        grid-template-columns: 1fr;
    }
    .jnhd3tmtr6:last-child {
        border-bottom: none;
    }
    .jnhd3tmtr6 a {
        padding: 12px 4px;
    }
}


/* === Footer === */

.w7zm19suelam1 {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-default);
    padding: 32px 0 24px;
    margin-top: 60px;
}

/* Footer main: brand left, links right */
.fp282ren1 {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-default);
}

.yq8v67d3vsute {
    max-width: 340px;
    flex-shrink: 0;
}

.sg9u6rnw8fl4i {
    height: 50px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 14px;
}

.drujm55sh8 {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
}

.oa53whb4ndec {
    color: var(--text-tertiary);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.wj2iwt5r {
    color: var(--text-tertiary);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    margin-bottom: 14px;
}

.wj2iwt5r:hover {
    color: var(--text-primary);
}

.u94b0g0g {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.jom4k97aod {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    /* longhand — keep injected background-image visible (see scroll-top) */
    background-color: var(--bg-hover);
    border: 1px solid var(--border-default);
    color: var(--text-tertiary);
    text-decoration: none;
    transition: all var(--transition-base);
}

@media (hover: hover) {
    .jom4k97aod:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: var(--border-hover);
        color: var(--text-primary);
        transform: translateY(-2px);
    }
}

.jom4k97aod svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Footer nav columns */
.kn3v4u9yj3anw {
    display: flex;
    gap: 48px;
}

.u4d3uav1g {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.y9cysxbc5n4 {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.u4d3uav1g a {
    color: var(--text-tertiary);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.u4d3uav1g a:hover {
    color: var(--text-primary);
}

.ere8030b5cdiy {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ere8030b5cdiy.rvk6kvlu {
    color: var(--text-secondary);
}

.ere8030b5cdiy img {
    border-radius: 2px;
}

/* Payment icons row */
.zj9nlic6 {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-default);
}

.btmthojprctfs {
    width: 52px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btmthojprctfs img {
    max-height: 29px;
    max-width: 52px;
    width: auto;
    object-fit: contain;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.btmthojprctfs:hover img {
    opacity: 0.8;
}

/* RG badges row */
.jnzhwt0u {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-default);
}

.mltnfpls0 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s;
}

.mltnfpls0 img {
    height: 48px;
    width: auto;
    object-fit: contain;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.mltnfpls0:hover img {
    opacity: 0.8;
}

.lot03jz53 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-tertiary);
    opacity: 0.5;
}

/* Scroll to top button */
.i43emo5d {
    position: fixed;
    /* Lifts itself above the sticky widget banner when one is present —
       widget sets `--sticky-bar-height` to its measured height. */
    bottom: calc(28px + var(--sticky-bar-height, 0px));
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    /* IMPORTANT: use `background-color` (longhand). The `background-image`
       is injected per-site by the builder; using `background:` shorthand
       here would reset the image and the icon would disappear on hover. */
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-default);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background-color 0.2s;
    z-index: 90;
}

.i43emo5d.cbrdmekzoyq2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hide the Scroll-to-top button while the mobile menu is open — body gets
   the `menu-open` class from main.js when the burger toggles the panel. */
body.menu-open .i43emo5d {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (hover: hover) {
    .i43emo5d:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--text-primary);
    }
}

/* Copyright */
.ce16a1fr {
    padding-top: 20px;
    text-align: center;
}

.dq9199exkg4 {
    display: inline-block;
    font-weight: 800;
    font-size: 14px;
    margin-left: 6px;
    vertical-align: middle;
}

.tpok7ahaenjqc {
    color: var(--text-tertiary);
    font-size: 13px;
    margin-bottom: 8px;
}

.pchjqhznia {
    color: var(--text-tertiary);
    font-size: 11px;
    max-width: 560px;
    margin: 0 auto;
    opacity: 0.5;
    line-height: 1.6;
}


/* Mobile menu — hidden on desktop */
.t5014it7 {
    display: none;
}



/* === Language Switcher === */

.hfyeogkar15 {
    position: relative;
}

.itihxm7bcu7yj9 {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px 4px;
    cursor: pointer;
    color: var(--text-tertiary);
    transition: color .2s;
}

.itihxm7bcu7yj9:hover {
    color: var(--text-primary);
}

.ivt409gwgveu {
    border-radius: 2px;
    object-fit: cover;
}

.xx462q4mph {
    opacity: .6;
    transition: transform .2s;
}

.itihxm7bcu7yj9.q4ucylkk .xx462q4mph {
    transform: rotate(180deg);
}

.p3o8bkvft1q1e {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 6px 0;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    z-index: 100;
}

.p3o8bkvft1q1e.q4ucylkk {
    display: block;
}

.dlc9x1wt6 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 14px;
    transition: background .15s;
}

.dlc9x1wt6:hover {
    background: rgba(255,255,255,.08);
}

/* === Responsive: Tablet === */

@media (max-width: 768px) {
    .jygd47y82av {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .m6y1yz3c6ojz {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .xtpt2b10i426 { display: none; }

    .xd0ayglorej6xx {
        padding: 0;
    }

    .hyrd3xki {
        margin: 12px;
        padding: 36px 24px 32px;
    }

    .vp8iqpqvbairdh {
        font-size: 1.4rem;
    }

    .n8klhjmtrv {
        font-size: 0.88rem;
    }

    .ac08lpek7bju {
        flex-direction: column;
    }

    .dgbq114re5lua,
    .ma5c1pdv1ziop {
        width: 100%;
        justify-content: center;
    }

    .depyhs8x {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pupmulgd,
    .moe5imqb4tps {
        padding: 20px;
    }

    .nbqdvd102wmycz {
        grid-template-columns: repeat(2, 1fr);
    }

    .oue08c2xhhwin {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .igwrz72ytkne3 {
        padding: 20px 32px;
    }

    .wtfouetogrlq30 {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Mobile menu overlay */
    .t5014it7 {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        /* Slides down from BELOW the sticky header (64px) — header stays
           visible and burger animates into an X in place. z-index 90 is
           below header (100) so the header always renders on top. */
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-elevated);
        z-index: 90;
        /* Pure-transform animation (no opacity) — closing slides back up
           the same way it slid down. Mixing opacity makes the element
           fade out before the transform finishes, which feels asymmetric.
           visibility hides clicks once the menu is offscreen. */
        transform: translateY(-100%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0s linear 0.3s;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .t5014it7.q4ucylkk {
        transform: translateY(0);
        visibility: visible;
        transition: transform 0.3s ease;
    }

    .avec4j4uoc7kc0 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 12px 0;
        flex: 1;
    }

    .avec4j4uoc7kc0 a {
        padding: 14px 32px;
        color: var(--text-secondary);
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        transition: all 0.2s;
    }

    .avec4j4uoc7kc0 a:hover {
        background: rgba(255, 255, 255, 0.03);
        color: var(--text-primary);
    }

    .u1trmx42 {
        display: block;
        margin: 8px 24px 12px;
        padding: 12px;
        background: var(--accent-color, #FFD700);
        color: var(--accent-text-color);
        text-align: center;
        font-weight: 700;
        font-size: 15px;
        border-radius: 10px;
        text-decoration: none;
        transition: opacity 0.2s;
    }

    .u1trmx42:hover {
        opacity: 0.9;
    }

    .jcehnpkk {
        padding: 12px 24px 16px;
        border-top: 1px solid var(--border-default);
    }

    .o6kz1g1zduvq {
        display: block;
        color: var(--text-tertiary);
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }

    .tbkkiznt4ujkto {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .vplx02g48f {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 6px 10px;
        color: var(--text-tertiary);
        font-size: 12px;
        text-decoration: none;
        border-radius: 8px;
        border: 1px solid var(--border-default);
        transition: all 0.2s;
    }

    .vplx02g48f:hover,
    .vplx02g48f.rvk6kvlu {
        color: var(--text-primary);
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.15);
    }

    .vplx02g48f img {
        border-radius: 2px;
    }

    .gems3gdjdrejs3 {
        flex-wrap: wrap;
    }

    .fp282ren1 {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    .yq8v67d3vsute {
        max-width: 100%;
    }
    .sg9u6rnw8fl4i {
        margin: 0 auto 14px;
    }
    .u94b0g0g {
        justify-content: center;
    }
    .kn3v4u9yj3anw {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .u4d3uav1g {
        align-items: center;
    }
    .szmu2oby7ts {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .szmu2oby7ts .y9cysxbc5n4 {
        width: 100%;
        text-align: center;
        margin-bottom: 2px;
    }
    .zj9nlic6 {
        gap: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }
    .zj9nlic6::-webkit-scrollbar {
        display: none;
    }
    .btmthojprctfs {
        width: 48px;
        height: 32px;
    }
    .btmthojprctfs img {
        max-height: 26px;
        max-width: 48px;
    }
    .jnzhwt0u {
        gap: 10px;
    }
    .mltnfpls0 img {
        height: 32px;
    }
    .lot03jz53 {
        font-size: 24px;
    }

    .nl571a024a1pq {
        grid-template-columns: 1fr 1fr;
    }
    .wd8jvb3lv9:not(:last-child)::after {
        display: none;
    }
}

/* === Responsive: Phone === */

@media (max-width: 480px) {
    .m6y1yz3c6ojz {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .qiyelduzvg6 {
        padding: 0 16px;
    }

    .xd0ayglorej6xx {
        padding: 0;
    }

    .hyrd3xki {
        margin: 8px;
        padding: 32px 20px 28px;
    }

    .vp8iqpqvbairdh {
        font-size: 1.25rem;
    }

    .dgbq114re5lua {
        padding: 12px 32px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .nbqdvd102wmycz {
        grid-template-columns: 1fr;
    }

    .i3hnbkaw td {
        padding: 12px 16px;
        font-size: 13px;
    }

    .jabs68jr1n6hi {
        width: 45%;
    }

    .pupmulgd,
    .moe5imqb4tps {
        padding: 16px;
    }

    .nl571a024a1pq {
        grid-template-columns: 1fr;
    }

    .wd8jvb3lv9 {
        padding: 20px;
        padding: 16px;
    }

    .l0ipoupib {
        padding: 16px 18px;
        font-size: 13px;
    }

    .iosva1fuxo.q4ucylkk .h063nmhld5 {
        padding: 0 18px 16px;
    }

    .igwrz72ytkne3 {
        padding: 20px 32px;
    }

    .bjit64fh th,
    .bjit64fh td {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* ============================================================
   404 Page — centered branded error screen
   ============================================================ */
.g404a96dn1qe {
    text-align: center;
    padding: 80px 24px 100px;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}
.r327bgzt {
    font-size: clamp(120px, 22vw, 200px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.06em;
    background: linear-gradient(180deg, var(--accent-color) 0%, rgba(212, 160, 23, 0.2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 16px;
    position: relative;
}
.r327bgzt::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
    z-index: -1;
    pointer-events: none;
}
.g404a96dn1qe h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}
.g404a96dn1qe p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 auto 36px;
    max-width: 480px;
}
.xd7vha8npi8 {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.lytftjd2hsnpqv {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.ltp9f079 {
    background: var(--accent-color);
    color: var(--accent-text-color);
    box-shadow: 0 8px 24px -8px var(--accent-color);
}
.ltp9f079:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px var(--accent-color); }
.tdobl38fetp6o {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
}
.tdobl38fetp6o:hover { background: var(--bg-hover); border-color: var(--border-hover); }
@media (max-width: 640px) {
    .g404a96dn1qe { padding: 50px 20px 70px; }
    .g404a96dn1qe h1 { font-size: 24px; }
    .g404a96dn1qe p { font-size: 14px; }
}

/* ============================================================
   Icon-bearing classes — base layout.
   The actual `background-image: url(...)` for each icon is appended
   per-site at build time (see builder._inject_icon_backgrounds).
   ============================================================ */

.ivt409gwgveu {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}
.mmzkazp8of {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}
.qarmzo1n0s4pk {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
}

.qcg4qxg6y8::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.boyc9t2ngr6keh {
    width: 38px;
    height: 38px;
    padding: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
}

/* Burger is now CSS-drawn (see the main `.z22vv8zszk5` rule near the top of
   this file). The old icon-style baseline used to live here. */

.i43emo5d {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 22px 22px;
}

.xx462q4mph {
    display: inline-block;
    width: 10px;
    height: 6px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 4px;
    vertical-align: middle;
}

.mv3t0b19mco1n::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 6px;
    vertical-align: middle;
}

.jom4k97aod {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
}


/* === Cookie banner === */
/* === Cookie Banner === */

.nswtbdufk5jpja {
    position: fixed;
    top: 8px;
    left: 50%;
    width: 92%;
    max-width: 960px;
    transform: translateX(-50%) translateY(-120%);
    background: var(--bg-card, #141418);
    color: var(--text-primary, #fafafa);
    z-index: 10000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-lg, 14px);
    border: 1px solid var(--border-default, rgba(255, 255, 255, 0.06));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.nswtbdufk5jpja.qyqghomlml {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.n12iia69avgf8 {
    padding-top: var(--cookie-banner-height, 0px);
    transition: padding-top 0.4s ease-out;
}

.kkhk3ul0m {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.ksj9mbkg8 {
    flex: 1;
    min-width: 200px;
    font-size: 13px;
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.qtch1982lpfuz5 {
    font-size: 20px;
    flex-shrink: 0;
}

.p58qnxla {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.yekt3ae9ggi {
    padding: 8px 18px;
    border-radius: var(--radius-sm, 6px);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.muba9zx5k3r0f,
.g707yqf7rd {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-default, rgba(255, 255, 255, 0.06));
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
}

.muba9zx5k3r0f:hover,
.g707yqf7rd:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary, #fff);
}

.nmby7ynzt4 {
    background: var(--accent-color, #d4a017);
    color: var(--bg-base, #09090b);
}

.nmby7ynzt4:hover {
    filter: brightness(1.1);
}

/* === Cookie Modal === */

.o5rcvsteona {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.etcrjja9p8n {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.gyhuu5e3i {
    position: relative;
    background: var(--bg-card, #141418);
    border: 1px solid var(--border-default, rgba(255, 255, 255, 0.06));
    border-radius: var(--radius-lg, 14px);
    width: 90%;
    max-width: 460px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    color: var(--text-primary, #fafafa);
}

.f4itugb2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--border-default, rgba(255, 255, 255, 0.06));
}

.f4itugb2 h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

.cvegckvc9 {
    background: none;
    border: none;
    color: var(--text-tertiary, rgba(255, 255, 255, 0.4));
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s;
}
.cvegckvc9::before { content: "×"; }

.cvegckvc9:hover {
    color: var(--text-primary, #fff);
}

.n7yx2vgi0i {
    padding: 8px 24px;
}

.omsvf5wd4l568f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-default, rgba(255, 255, 255, 0.06));
}

.omsvf5wd4l568f:last-child {
    border-bottom: none;
}

.lgp86jpa1x {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.iposow4p {
    font-size: 12px;
    color: var(--text-tertiary, rgba(255, 255, 255, 0.4));
    line-height: 1.4;
}

/* Toggle switch */
.vtkjgcisk3r {
    width: 42px;
    height: 22px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.xqaphuetmfn37 {
    cursor: not-allowed;
    opacity: 0.5;
}

.db16t46ngtawgd {
    width: 100%;
    height: 100%;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
}

.db16t46ngtawgd.rvk6kvlu {
    background: var(--accent-color, #d4a017);
}

.sn569f9coo {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: left 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
}

.sn569f9coo.rvk6kvlu {
    left: 22px;
}

/* Modal footer */
.som1lqexnfb {
    display: flex;
    gap: 8px;
    padding: 16px 24px 20px;
    border-top: 1px solid var(--border-default, rgba(255, 255, 255, 0.06));
}

.n5eqhpn6e {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-default, rgba(255, 255, 255, 0.06));
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
}

.n5eqhpn6e:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary, #fff);
}

.nq9kuc7pmakb7 {
    background: var(--accent-color, #d4a017);
    color: var(--bg-base, #09090b);
    flex: 1;
}

.nq9kuc7pmakb7:hover {
    filter: brightness(1.1);
}

.mktzfddlz1adl {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-default, rgba(255, 255, 255, 0.06));
    color: var(--text-primary, #fff);
}

.mktzfddlz1adl:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile */
@media (max-width: 640px) {
    .nswtbdufk5jpja {
        width: 96%;
        top: 4px;
    }
    .kkhk3ul0m {
        padding: 12px 14px;
        gap: 10px;
    }
    .ksj9mbkg8 {
        font-size: 12px;
    }
    .p58qnxla {
        width: 100%;
    }
    .yekt3ae9ggi {
        flex: 1;
        padding: 8px 10px;
        font-size: 12px;
        text-align: center;
    }
}

:root{--bg-base:#202531;--accent-color:#3498fe;--accent-text-color:#ffffff;--text-primary:#e6e6e6;--text-secondary:#e6e6e6;--font-main:'Montserrat',sans-serif}

.gf1cni26dou6{background-image:url('/static/play-btn.svg')}
.qcg4qxg6y8::before{background-image:url('/static/account.svg')}
.boyc9t2ngr6keh{background-image:url('/static/account.svg')}
.xx462q4mph{background-image:url('/static/chevron.svg')}
.i43emo5d{background-image:url('/static/back-to-top.svg')}
.mv3t0b19mco1n::before{background-image:url('/static/ic-expand.svg')}
.o9p5v016uk1{background-image:url('/static/facebook.svg')}
.ckmg2cwmk39{background-image:url('/static/ic-x.svg')}
.ffzk7egrm3{background-image:url('/static/ic-x.svg')}
.f7atoquize0{background-image:url('/static/ic-x.svg')}
.bq86d6lige8n4{background-image:url('/static/ic-ig.svg')}
.c408ts9u0pa7bu{background-image:url('/static/tg.svg')}
.eysemhw9phb{background-image:url('/static/yt.svg')}
.zv3uhk2qqlkcl{background-image:url('/static/linkedin.svg')}
.o7jp94tnl2d3b{background-image:url('/static/ic-tt.svg')}
.snhjioe9bqqp{background-image:url('/static/social-dc.svg')}
