/* ============================================================
   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);
}

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


/* === Header === */

.duje7yf5p {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

.huqblz14ywz {
    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);
}

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

.huqblz14ywz svg {
    flex-shrink: 0;
}

.awsvfld2t,
.wvxyk0si6 {
    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;
}

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

.wvxyk0si6 {
    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 `.yk31pcgc` state the top/bottom rotate into an X and the middle fades. */
.rxmzacbr14pdv {
    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;
}
.rxmzacbr14pdv::before,
.rxmzacbr14pdv::after {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    height: 2px;
    background-color: currentColor;
    transition: top .25s ease, transform .25s ease;
}
.rxmzacbr14pdv::before { top: 9px; }
.rxmzacbr14pdv::after  { top: 21px; }
.rxmzacbr14pdv.yk31pcgc    { background-size: 0 2px; }
.rxmzacbr14pdv.yk31pcgc::before { top: 15px; transform: rotate(45deg); }
.rxmzacbr14pdv.yk31pcgc::after  { top: 15px; transform: rotate(-45deg); }

.rxmzacbr14pdv svg {
    display: block;
}

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


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

.galqbqkakr {
    min-height: 60vh;
}

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


/* === Hero === */

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

/* Card-style hero */
.yk57jpqomc4f {
    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 */
.vyvhqjdb {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.i8u40ocxuyponh {
    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 */
.i8u40ocxuyponh::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 */
.i8u40ocxuyponh::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;
}

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

.u0agbc71up2m24 {
    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);
}

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

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

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

.if9w4zq8grjz {
    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);
}

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

.h1enzxy7f {
    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);
}

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


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

.tfoqln7668ikqs {
    margin-bottom: 32px;
}

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

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

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

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

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

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

.tfoqln7668ikqs 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) {
    .tfoqln7668ikqs table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.tfoqln7668ikqs th,
.tfoqln7668ikqs 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
   .tfoqln7668ikqs 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. */
.tfoqln7668ikqs td > p,
.tfoqln7668ikqs th > p,
.tfoqln7668ikqs td > p:last-child,
.tfoqln7668ikqs th > p:last-child {
    margin: 0;
}

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

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

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

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

.tfoqln7668ikqs 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. */
.tfoqln7668ikqs figure {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 24px auto;
    padding: 0;
}
.tfoqln7668ikqs figure img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 0;
}
.tfoqln7668ikqs figcaption {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 8px;
    text-align: center;
}

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

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


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

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

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

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

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

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

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

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

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

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

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

.twrb6n3qns849 ul,
.rdcy7d3iawwaz ul {
    list-style: none;
}

.twrb6n3qns849 li,
.rdcy7d3iawwaz 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;
}

.twrb6n3qns849 li:last-child,
.rdcy7d3iawwaz li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.twrb6n3qns849 li:first-child,
.rdcy7d3iawwaz li:first-child {
    padding-top: 0;
}

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

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

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


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

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

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

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

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

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

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

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

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


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

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

.dg6dzuoj12a {
    margin: 40px 0;
}

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

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

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

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

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

.wa3c03cr2oxaf7 {
    margin-bottom: 32px;
}

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

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


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

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

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

.dzqsksf4gc {
    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);
}

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

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

.fmsd751s1w1uc {
    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. */
.m45w13mk8 {
    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);
}

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

.w17d32jnzi1rb:hover .ud9h6qjulgei4 {
    opacity: 1;
}

.s7vuptss0w {
    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 */
}

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

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

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

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

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

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

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

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

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

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

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

.t8fb23e5c {
    margin-bottom: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.wvgcr1d4bhap {
    flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stcr1htlv {
    margin-top: 40px;
}

.stcr1htlv 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) {
    .p18ffd466jh a {
        padding: 8px 12px;
        font-size: 14px;
    }
    .huqblz14ywz {
        display: none;
    }
    .be5xr5nyel {
        gap: 16px;
    }
}

@media (max-width: 960px) {
    .rxmzacbr14pdv {
        display: flex;
        order: 99;
        flex-shrink: 0;
    }
    .p18ffd466jh {
        display: none !important;
    }
    .dhcq8jzm6o2fr {
        display: none;
    }
    .awsvfld2t {
        display: block;
        margin-left: auto;
        margin-right: 6px;
    }
    .be5xr5nyel {
        height: 56px;
    }
    .hqrk66k4o12k1 {
        flex-shrink: 1;
        min-width: 100px;
        overflow: hidden;
        padding-left: 8px;
    }
    .hqrk66k4o12k1 img {
        max-width: 100%;
        height: 32px;
        max-height: 32px;
    }
    /* Trim CTA padding so the logo gets a bit more horizontal space. */
    .awsvfld2t,
    .wvxyk0si6 {
        padding: 9px 14px;
    }
    .be5xr5nyel {
        gap: 12px;
    }
    .q21z7l1nxbqec {
        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;
    }
    .q21z7l1nxbqec.yk31pcgc {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (max-width: 768px) {
    .gjtzzlq9whs3k2 {
        gap: 14px;
    }
    .ir6xav6f8pa3x {
        width: 100px;
        height: 130px;
    }
    .wvgcr1d4bhap h1 {
        font-size: 1.1rem;
    }
    .ebskavgyav865u {
        display: none;
    }
    .fb9u1rcf4rqc {
        flex-direction: column;
    }
    .ktofv53x, .ebskavgyav865u {
        justify-content: center;
    }
    .stcr1htlv .dlwaxy5ewy {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}



/* === Bonuses === */

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

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

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

.gswoh7wba5k {
    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);
}

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

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

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

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

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

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

.hbs1ags6 {
    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);
}

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


/* === Banking === */

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

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

.lgbnfnyh {
    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) {
    .lgbnfnyh {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

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

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

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

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

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

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

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

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


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

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

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

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

.pxagalxr3cnizl {
    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);
}

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

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

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

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

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


/* === Safety === */

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

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

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

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

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

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

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


/* === FAQ === */

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

.q35mf3bfjnu h2 {
    /* Match .tfoqln7668ikqs 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);
}

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

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

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

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

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

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

.xcx4nkwtjekx.yk31pcgc .ekxng3suvqd::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;
}

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

.xcx4nkwtjekx.yk31pcgc .jcs59o5z {
    padding: 0 24px 20px;
    max-height: 600px;
}


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

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

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

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

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

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

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

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

.u5l5g9wdqfz5.wcsayjf2nai {
    color: var(--accent-color);
}

.u5l5g9wdqfz5.y89z3dziytu {
    color: var(--accent-color);
    opacity: 0.5;
}

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

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


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

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

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

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

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

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


/* === Providers === */

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

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

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

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

.i8k2f5ajak6 {
    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);
}

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

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

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


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

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

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

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

.qulodapa {
    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);
}

.fhwq1sktgu3jnt .qulodapa {
    transform: rotate(-90deg);
}

.fhwq1sktgu3jnt .hoieot4tly4xe {
    display: none;
}

.fhwq1sktgu3jnt .vifb1cyolld {
    margin-bottom: 0;
}

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

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

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

.bdzrbo9c8k0 {
    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. */
.bdzrbo9c8k0:last-child,
.bdzrbo9c8k0:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
}

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

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

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

.bdzrbo9c8k0 a:hover .j5llnohwv09sa {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

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


/* === Footer === */

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

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

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

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

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

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

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

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

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

.bzic1uy6 {
    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) {
    .bzic1uy6:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: var(--border-hover);
        color: var(--text-primary);
        transform: translateY(-2px);
    }
}

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

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

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

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

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

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

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

.ityew8tpwr.a422cm1mnrw {
    color: var(--text-secondary);
}

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

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

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

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

.r8f615fiuo:hover img {
    opacity: 0.8;
}

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

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

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

.il2430zrm:hover img {
    opacity: 0.8;
}

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

/* Scroll to top button */
.ncz6s164j14a1 {
    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;
}

.ncz6s164j14a1.i5cxa4vy6 {
    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 .ncz6s164j14a1 {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

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

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

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

.ap64c9lpn8 {
    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 */
.q21z7l1nxbqec {
    display: none;
}



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

.yh5yimncmi4 {
    position: relative;
}

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

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

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

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

.yv7wavyun.yk31pcgc .irb0823gvnv8 {
    transform: rotate(180deg);
}

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

.wfonu1xb.yk31pcgc {
    display: block;
}

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

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

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

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

    .mya1yofxkhtxoy {
        padding: 0;
    }

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

    .u0agbc71up2m24 {
        font-size: 1.4rem;
    }

    .mdhbfm2bhyw {
        font-size: 0.88rem;
    }

    .wy8f7feqq {
        flex-direction: column;
    }

    .if9w4zq8grjz,
    .h1enzxy7f {
        width: 100%;
        justify-content: center;
    }

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

    .twrb6n3qns849,
    .rdcy7d3iawwaz {
        padding: 20px;
    }

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

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

    .gswoh7wba5k {
        padding: 20px 32px;
    }

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

    /* Mobile menu overlay */
    .q21z7l1nxbqec {
        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;
    }

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

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

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

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

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

    .d0e320ye6iec:hover {
        opacity: 0.9;
    }

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

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

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

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

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

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

    .fm1hlpa6hrc {
        flex-wrap: wrap;
    }

    .egsrwixu1w {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    .j3xp30fstfg {
        max-width: 100%;
    }
    .q58z0oemy {
        margin: 0 auto 14px;
    }
    .n8ga02ehlytw {
        justify-content: center;
    }
    .q0z5ktgknlmdko {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .xtmbv7fga4f8 {
        align-items: center;
    }
    .fumltiahl8kt {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .fumltiahl8kt .w611bl78w1mnc3 {
        width: 100%;
        text-align: center;
        margin-bottom: 2px;
    }
    .zf0cfwr0x0q68 {
        gap: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }
    .zf0cfwr0x0q68::-webkit-scrollbar {
        display: none;
    }
    .r8f615fiuo {
        width: 48px;
        height: 32px;
    }
    .r8f615fiuo img {
        max-height: 26px;
        max-width: 48px;
    }
    .cstz5rs7j8y {
        gap: 10px;
    }
    .il2430zrm img {
        height: 32px;
    }
    .q2olpohxjm {
        font-size: 24px;
    }

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

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

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

    .p4u5modi2z1w8v {
        padding: 0 16px;
    }

    .mya1yofxkhtxoy {
        padding: 0;
    }

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

    .u0agbc71up2m24 {
        font-size: 1.25rem;
    }

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

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

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

    .wkwjtsuhy6j {
        width: 45%;
    }

    .twrb6n3qns849,
    .rdcy7d3iawwaz {
        padding: 16px;
    }

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

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

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

    .xcx4nkwtjekx.yk31pcgc .jcs59o5z {
        padding: 0 18px 16px;
    }

    .gswoh7wba5k {
        padding: 20px 32px;
    }

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

/* ============================================================
   404 Page — centered branded error screen
   ============================================================ */
.uasg6tekywfq {
    text-align: center;
    padding: 80px 24px 100px;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}
.d8f2jj74gzc6yy {
    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;
}
.d8f2jj74gzc6yy::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;
}
.uasg6tekywfq h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}
.uasg6tekywfq p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 auto 36px;
    max-width: 480px;
}
.zc4ty3kll69h {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.qaynyl7ced9o7 {
    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);
}
.lsgntmno6qyc {
    background: var(--accent-color);
    color: var(--accent-text-color);
    box-shadow: 0 8px 24px -8px var(--accent-color);
}
.lsgntmno6qyc:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px var(--accent-color); }
.t7l2e88as4tlfr {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
}
.t7l2e88as4tlfr:hover { background: var(--bg-hover); border-color: var(--border-hover); }
@media (max-width: 640px) {
    .uasg6tekywfq { padding: 50px 20px 70px; }
    .uasg6tekywfq h1 { font-size: 24px; }
    .uasg6tekywfq 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).
   ============================================================ */

.cmo1aa98ct8ony {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}
.kbxf5grlo8q {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}
.au0uqmo8quqfwd {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
}

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

.wvxyk0si6 {
    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 `.rxmzacbr14pdv` rule near the top of
   this file). The old icon-style baseline used to live here. */

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

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

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

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


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

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

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

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

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

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

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

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

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

.mod7udf8kj,
.nn02n7ysrtd1y {
    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));
}

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

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

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

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

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

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

.m1xpcbga589s {
    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);
}

.kxbibkd211d4 {
    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));
}

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

.mejtvr4ma9gbb {
    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;
}
.mejtvr4ma9gbb::before { content: "×"; }

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

.nfd3vmjjy {
    padding: 8px 24px;
}

.dtfjv109w {
    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));
}

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

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

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

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

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

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

.ndfkzoeb7aen6.a422cm1mnrw {
    background: var(--accent-color, #d4a017);
}

.t86pdwl71ni0k {
    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);
}

.t86pdwl71ni0k.a422cm1mnrw {
    left: 22px;
}

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

.ooydv9ji {
    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));
}

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

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

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

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

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

/* Mobile */
@media (max-width: 640px) {
    .lf5ts5h2ae18iz {
        width: 96%;
        top: 4px;
    }
    .ijse7i2dbkspc {
        padding: 12px 14px;
        gap: 10px;
    }
    .g6sbuqs8yz70 {
        font-size: 12px;
    }
    .dpcguj99g {
        width: 100%;
    }
    .trqb6szd {
        flex: 1;
        padding: 8px 10px;
        font-size: 12px;
        text-align: center;
    }
}

:root{--bg-base:#18181b;--accent-color:#f73535;--accent-text-color:#ffffff;--font-main:'DM Sans',sans-serif}

.s7vuptss0w{background-image:url('/static/play-arrow.svg')}
.huqblz14ywz::before{background-image:url('/static/account.svg')}
.wvxyk0si6{background-image:url('/static/account.svg')}
.irb0823gvnv8{background-image:url('/static/caret.svg')}
.ncz6s164j14a1{background-image:url('/static/ic-up.svg')}
.e9c7z4w61w3xnu::before{background-image:url('/static/expand.svg')}
.o4ilg5sbbjuhs{background-image:url('/static/fb.svg')}
.eu97ngjtw65{background-image:url('/static/twitter.svg')}
.u3n0pqako5n4{background-image:url('/static/twitter.svg')}
.f9id8ko7l{background-image:url('/static/twitter.svg')}
.jmvsu5095kzgj{background-image:url('/static/instagram.svg')}
.bk4rwzpj993lx{background-image:url('/static/social-tg.svg')}
.wiw0k892nis0{background-image:url('/static/yt.svg')}
.ou15tyjnog{background-image:url('/static/linkedin.svg')}
.rnykyzvk8{background-image:url('/static/social-tt.svg')}
.izx1w0pw{background-image:url('/static/social-dc.svg')}
