@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');
/* ===== MAGENTA PULSE — Design System ===== */
:root {
    --eb797:        #FF1493;
    --e13bf:        #FF50B0;
    --bee6c:        #CC1078;
    --na939:        #FF2090;
    --kd0b1:        #FF1493;
    --f1128:        #CC1078;
    --m3439:        #E040FB;
    --p33ba:        #B030C8;
    --k594f:        #08040A;
    --hca61:        #100814;
    --i8779:        #180C1E;
    --d3051:        #201028;
    --dd569:        #FFFFFF;
    --lf68e:        #B080A0;
    --a9229:        #705068;
    --m3be7:        #B080A0;
    --kdb88:    'Sora', sans-serif;
    --m27af:    'DM Sans', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --fedd7:       12px;
    --p8f1f:    20px;
    --pe80a:    8px;
    --bea09:        1100px;
    --j1d8c:       0 4px 24px rgba(0,0,0,.5);
    --pc067:         0 0 32px rgba(255,20,147,.3);
}
/* ===== SEMANTIC TOKENS (design-system layer 2) ===== */
:root {
    --color-primary: var(--eb797);
    --color-primary-light: var(--e13bf);
    --color-primary-dark: var(--bee6c);
    --color-accent: var(--kd0b1);
    --color-accent-dark: var(--f1128);
    --color-secondary: var(--m3439);
    --color-secondary-dark: var(--p33ba);
    --color-surface: var(--i8779);
    --color-surface-elevated: var(--d3051);
    --color-on-surface: var(--dd569);
    --color-on-surface-muted: var(--lf68e);
    --color-text: var(--dd569);
    --color-text-secondary: var(--m3be7);
    --text-heading: var(--kdb88);
    --text-body: var(--m27af);
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--m27af);
    background: var(--k594f);
    color: var(--dd569);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}
a { color: var(--e13bf); text-decoration: none; transition: color .2s; }
a:hover { color: var(--kd0b1); }
img { max-width: 100%; height: auto; display: block; }

.d86843 { width: 92%; max-width: var(--bea09); margin: 0 auto; }

.a4eb38 {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}

/* ===== SKIP LINK ===== */
.dc3ffe {
    position: absolute; top: -100px; left: 50%;
    transform: translateX(-50%);
    background: var(--eb797); color: var(--dd569);
    padding: 8px 16px; border-radius: var(--pe80a);
    z-index: 999; transition: top .2s;
}
.dc3ffe:focus { top: 10px; }

/* ===== SITE HEADER ===== */
.f61e97 {
    position: sticky; top: 0; z-index: 100;
    background: rgba(8,12,24,.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212,168,67,.15);
}
.gbc768 {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0; gap: 16px;
}
.nb3126 {
    font-family: var(--kdb88);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 700; color: var(--dd569);
    white-space: nowrap; text-decoration: none;
}
.nb3126:hover { color: var(--kd0b1); }

/* Main Nav */
.n5fb32 { display: flex; align-items: center; gap: 20px; }
.ca67b5 {
    display: flex; gap: 24px; list-style: none;
    font-size: .92rem; font-weight: 500; align-items: center;
}
.ca67b5 a {
    color: var(--lf68e); padding: 4px 0;
    position: relative; transition: color .2s; text-decoration: none;
}
.ca67b5 a:hover { color: var(--e13bf); }

/* Language Select */
.a2a856 {
    background: var(--i8779); color: var(--dd569);
    border: 1px solid rgba(212,168,67,.25);
    border-radius: var(--pe80a);
    padding: 6px 28px 6px 10px; font-size: .85rem;
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D4A843'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 8px center;
    transition: border-color .2s;
}
.a2a856:hover, .a2a856:focus { border-color: var(--eb797); outline: none; }

/* Menu Toggle */
.e37f22 {
    display: none; background: none; border: none;
    cursor: pointer; padding: 6px; width: 36px; height: 36px;
    align-items: center; justify-content: center; position: relative;
}
.dff89f, .dff89f::before, .dff89f::after {
    display: block; width: 24px; height: 2px;
    background: var(--dd569); border-radius: 2px; transition: transform .3s, opacity .3s;
}
.dff89f { position: relative; }
.dff89f::before, .dff89f::after { content: ''; position: absolute; left: 0; }
.dff89f::before { top: -7px; }
.dff89f::after { top: 7px; }

/* Mobile Nav */
.o1b234 {
    display: none; position: fixed; inset: 0;
    background: rgba(8,12,24,.97); z-index: 200;
    align-items: center; justify-content: center;
    flex-direction: column; padding: 60px 20px;
}
.o1b234.f317c8 { display: flex; }
.n901d7 {
    list-style: none; display: flex; flex-direction: column;
    align-items: center; gap: 24px;
}
.n901d7 a {
    font-size: 1.2rem; font-weight: 600; color: var(--dd569); text-decoration: none;
}
.n901d7 a:hover { color: var(--e13bf); }

/* ===== BUTTONS ===== */
.c3d782 {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--kdb88); font-weight: 700; font-size: .95rem;
    padding: 12px 28px; border-radius: var(--fedd7); border: none;
    cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
    text-decoration: none; white-space: nowrap; letter-spacing: .3px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--eb797) 0%, var(--na939) 100%);
    color: var(--dd569); box-shadow: var(--pc067);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(212,168,67,.55);
    color: var(--dd569);
}
.btn-secondary {
    background: transparent; color: var(--e13bf);
    border: 2px solid var(--eb797);
}
.btn-secondary:hover { background: rgba(212,168,67,.1); color: var(--kd0b1); }

/* Gold CTA — main call-to-action */
@keyframes pulse-glow {
    0%,100% { box-shadow: 0 0 22px rgba(244,200,66,.35); }
    50%      { box-shadow: 0 0 50px rgba(244,200,66,.7), 0 0 90px rgba(244,200,66,.18); }
}
.k66b1d {
    background: linear-gradient(135deg, var(--kd0b1) 0%, #e8a020 55%, var(--f1128) 100%);
    color: #1a0800; font-weight: 800; font-size: 1rem;
    /* box-shadow removed for perf */
    /* animation moved to ::after */
}
.k66b1d:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 56px rgba(244,200,66,.7);
    color: #1a0800; animation: none;
}

.h59e85 { padding: 17px 42px; font-size: 1.1rem; border-radius: var(--p8f1f); }
.k6b7c3 { padding: 8px 18px; font-size: .85rem; border-radius: var(--pe80a); }

/* Nav CTA in header */
.na3c96 {
    background: linear-gradient(135deg, var(--kd0b1) 0%, var(--f1128) 100%);
    color: #1a0800 !important; font-weight: 700;
    padding: 9px 22px; border-radius: var(--pe80a);
    box-shadow: 0 0 16px rgba(244,200,66,.3);
    transition: transform .2s, box-shadow .2s;
}
.na3c96:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(244,200,66,.55);
    color: #1a0800 !important;
}

/* ===== PAGE HERO (subpages) ===== */
.hee210 {
    padding: clamp(52px, 8vw, 90px) 0 clamp(44px, 6vw, 70px);
    text-align: center;
    background:
        radial-gradient(ellipse 80% 55% at 50% 0%, rgba(212,168,67,.14) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(244,200,66,.05) 0%, transparent 60%),
        var(--k594f);
    position: relative; overflow: hidden;
}
.hee210::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L33 20H47L36 28L39 43L30 34L21 43L24 28L13 20H27Z' fill='rgba(212,168,67,0.015)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.f1e064 {
    font-family: var(--kdb88);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 800; line-height: 1.15; margin-bottom: 16px;
    background: linear-gradient(135deg, var(--kd0b1) 0%, var(--e13bf) 50%, var(--eb797) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.c73781 {
    font-size: clamp(.97rem, 2vw, 1.12rem); color: var(--lf68e);
    max-width: 640px; margin: 0 auto 32px; line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: clamp(64px, 10vw, 110px) 0 clamp(52px, 8vw, 88px);
    text-align: center; overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,168,67,.13) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(184,138,48,.08) 0%, transparent 60%),
        var(--k594f);
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L33 20H47L36 28L39 43L30 34L21 43L24 28L13 20H27Z' fill='rgba(212,168,67,0.02)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero h1 {
    font-family: var(--kdb88);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800; line-height: 1.15; margin-bottom: 18px;
    background: linear-gradient(135deg, var(--kd0b1) 0%, var(--e13bf) 45%, var(--eb797) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem); color: var(--lf68e);
    max-width: 660px; margin: 0 auto 28px; line-height: 1.7;
}
.hero-stats {
    display: flex; justify-content: center;
    gap: clamp(10px, 3vw, 32px); flex-wrap: wrap; margin-bottom: 32px;
}
.hero-stat {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .92rem; color: var(--lf68e);
    padding: 7px 14px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(212,168,67,.15);
    border-radius: var(--pe80a);
}
.hero-stat strong { color: var(--e13bf); }

/* ===== SECTIONS ===== */
.g31c4d { padding: clamp(52px, 7vw, 80px) 0; }
.o82a44 { background: var(--hca61); }
.section-tag {
    display: inline-block; font-size: .75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--eb797); margin-bottom: 10px;
}
.g31c4d h2, .c70acf {
    font-family: var(--kdb88);
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 700; margin-bottom: 16px; line-height: 1.25;
}
.g31c4d h3 {
    font-family: var(--kdb88); font-size: 1.1rem; font-weight: 600;
    margin: 28px 0 8px; color: var(--e13bf);
}
.g31c4d p, .section-desc {
    color: var(--lf68e); font-size: .95rem; line-height: 1.7; margin-bottom: 12px;
}
.section-desc { max-width: 700px; margin-bottom: 36px; }
.g31c4d ul, .g31c4d ol {
    color: var(--lf68e); font-size: .93rem; line-height: 1.7;
    padding-left: 20px; margin-bottom: 16px;
}
.g31c4d li { margin-bottom: 8px; }
.g31c4d li strong { color: var(--dd569); }

/* ===== CARDS / GRID ===== */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: linear-gradient(145deg, var(--i8779), var(--d3051));
    border: 1px solid rgba(212,168,67,.1);
    border-radius: var(--fedd7); padding: 28px 24px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,168,67,.3);
    box-shadow: var(--j1d8c);
}
.ce221c { font-size: 2rem; margin-bottom: 14px; display: block; }
.card h3 {
    font-family: var(--kdb88); font-size: 1.05rem; font-weight: 600;
    margin-bottom: 8px; color: var(--dd569);
}
.card p { color: var(--lf68e); font-size: .9rem; line-height: 1.6; }

/* ===== INFO TABLE ===== */
.j29b86 { overflow-x: auto; margin: 24px 0; border-radius: var(--pe80a); }
.h0721e { width: 100%; border-collapse: collapse; font-size: .93rem; margin: 0; }
.h0721e thead th {
    background: var(--d3051); color: var(--dd569); font-weight: 600;
    font-size: .88rem; text-align: left; padding: 14px 16px;
    border-bottom: 2px solid rgba(212,168,67,.2);
}
.h0721e thead th:first-child { border-radius: var(--pe80a) 0 0 0; }
.h0721e thead th:last-child { border-radius: 0 var(--pe80a) 0 0; }
.h0721e tr { border-bottom: 1px solid rgba(255,255,255,.06); }
.h0721e td { padding: 13px 16px; }
.h0721e td:first-child { color: var(--lf68e); font-weight: 500; width: 42%; }
.h0721e td:last-child { color: var(--dd569); font-weight: 600; }
.h0721e tr:hover { background: rgba(212,168,67,.04); }

/* ===== STEPS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 24px; counter-reset: step;
}
.step {
    text-align: center; padding: 24px 16px; counter-increment: step;
}
.step::before {
    content: counter(step);
    display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--eb797), var(--na939));
    border-radius: 50%; font-family: var(--kdb88);
    font-size: 1.2rem; font-weight: 700; color: var(--dd569);
}
.step h3 { font-size: .95rem; font-weight: 600; margin-bottom: 6px; }
.step p { color: var(--lf68e); font-size: .85rem; line-height: 1.5; }

/* ===== FAQ — details/summary ===== */
.lc510c { max-width: 800px; margin: 0 auto; }
details.d8fd89 { border-bottom: 1px solid rgba(255,255,255,.07); }
details.d8fd89 summary {
    display: block; list-style: none;
    color: var(--dd569); font-family: var(--m27af);
    font-size: .97rem; font-weight: 600;
    padding: 20px 40px 20px 0;
    cursor: pointer; position: relative; transition: color .2s;
}
details.d8fd89 summary::-webkit-details-marker { display: none; }
details.d8fd89 summary::marker { display: none; content: ''; }
details.d8fd89 summary::after {
    content: '+'; position: absolute; right: 0; top: 50%;
    transform: translateY(-50%); font-size: 1.4rem;
    color: var(--eb797); transition: transform .3s;
}
details.d8fd89[open] summary::after { content: '\2212'; }
details.d8fd89 summary:hover { color: var(--e13bf); }
details.d8fd89 > p { padding: 0 0 20px; color: var(--lf68e); font-size: .9rem; line-height: 1.7; }
details.d8fd89 > div { padding: 0 0 20px; color: var(--lf68e); font-size: .9rem; line-height: 1.7; }
.faq-section { background: var(--hca61); }

/* ===== INFO GRID & CARDS ===== */
.m56945 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px; margin-top: 24px;
}
.c3be7a {
    background: linear-gradient(145deg, var(--i8779), var(--d3051));
    border: 1px solid rgba(212,168,67,.12); border-radius: var(--fedd7); padding: 28px 22px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.c3be7a:hover {
    transform: translateY(-5px);
    border-color: rgba(212,168,67,.35);
    box-shadow: var(--j1d8c);
}
.mb7872 { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.c3be7a h3 {
    font-family: var(--kdb88); font-size: 1.05rem; font-weight: 700;
    margin-bottom: 8px; color: var(--dd569);
}
.c3be7a p { color: var(--lf68e); font-size: .9rem; line-height: 1.6; }

/* ===== BONUS GRID & CARDS ===== */
.ib5c46 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px; margin-top: 24px;
}
.geb6c2 {
    background: linear-gradient(145deg, var(--i8779), var(--d3051));
    border: 1px solid rgba(244,200,66,.15); border-radius: var(--fedd7); padding: 28px 22px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.geb6c2:hover { transform: translateY(-5px); border-color: rgba(244,200,66,.38); }
.geb6c2 h3 {
    font-family: var(--kdb88); font-size: 1.05rem; font-weight: 700;
    margin-bottom: 8px; color: var(--kd0b1);
}
.geb6c2 p { color: var(--lf68e); font-size: .9rem; line-height: 1.6; }

/* ===== STEPS GRID & CARDS ===== */
.d93170 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px; margin-top: 24px;
}
.m62364 { text-align: center; padding: 22px 14px; }
.i84a87 {
    display: flex; align-items: center; justify-content: center;
    width: 50px; height: 50px; margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--eb797), var(--na939));
    border-radius: 50%; font-family: var(--kdb88);
    font-size: 1.15rem; font-weight: 800; color: var(--dd569);
    box-shadow: 0 0 22px rgba(212,168,67,.35);
}
.m62364 h3 {
    font-family: var(--kdb88); font-size: .97rem; font-weight: 600;
    margin-bottom: 6px; color: var(--dd569);
}
.m62364 p { color: var(--lf68e); font-size: .87rem; line-height: 1.5; }

/* ===== REVIEW SCORE CARD ===== */
.na8fc1 {
    background: linear-gradient(145deg, var(--i8779), var(--d3051));
    border: 1px solid rgba(244,200,66,.18); border-radius: var(--p8f1f);
    padding: 36px 32px; text-align: center;
    max-width: 560px; margin: 0 auto 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.c2bf4b { margin-top: 24px; }
.ne2e49 {
    display: grid; grid-template-columns: 1fr 140px auto;
    align-items: center; gap: 12px;
    padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: .9rem;
}
.ne2e49 > span:first-child { color: var(--lf68e); text-align: left; }
.f68ca0 {
    height: 7px; background: rgba(255,255,255,.08);
    border-radius: 4px; overflow: hidden;
}
.j9688c {
    height: 100%;
    background: linear-gradient(90deg, var(--eb797) 0%, var(--kd0b1) 100%);
    border-radius: 4px;
}
.ne2e49 > span:last-child { color: var(--kd0b1); font-weight: 700; min-width: 28px; text-align: right; }

/* ===== PROS / CONS ===== */
.he032a { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.g732c8, .o4144d {
    background: linear-gradient(145deg, var(--i8779), var(--d3051));
    border-radius: var(--fedd7); padding: 24px 22px;
}
.g732c8 { border-top: 3px solid var(--m3439); }
.o4144d { border-top: 3px solid #C84040; }
.g732c8 h3, .g732c8 h4 { color: var(--m3439); margin-bottom: 12px; font-size: 1rem; }
.o4144d h3, .o4144d h4 { color: #E86060; margin-bottom: 12px; font-size: 1rem; }
.g732c8 ul, .o4144d ul { list-style: none; padding: 0; margin: 0; }
.g732c8 li::before { content: '\2713 '; color: var(--m3439); font-weight: 700; }
.o4144d li::before { content: '\2717 '; color: #C84040; font-weight: 700; }
.g732c8 li, .o4144d li { padding: 5px 0; color: var(--lf68e); font-size: .9rem; line-height: 1.5; }

/* ===== CTA BANNER ===== */
.bec72f {
    text-align: center; padding: clamp(52px, 7vw, 80px) 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(244,200,66,.09) 0%, transparent 65%),
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(212,168,67,.08) 0%, transparent 70%),
        var(--hca61);
    border-top: 1px solid rgba(244,200,66,.1);
    border-bottom: 1px solid rgba(244,200,66,.1);
}
.bec72f h2 {
    font-family: var(--kdb88);
    font-size: clamp(1.5rem, 3.5vw, 2.3rem);
    font-weight: 800; margin-bottom: 12px;
    background: linear-gradient(135deg, var(--kd0b1), var(--e13bf));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.bec72f p { color: var(--lf68e); margin-bottom: 32px; font-size: .97rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: linear-gradient(135deg, rgba(212,168,67,.08), rgba(184,138,48,.05));
    border: 1px solid rgba(212,168,67,.2); border-left: 4px solid var(--eb797);
    border-radius: var(--pe80a); padding: 20px 24px; margin: 24px 0;
}
.highlight-box p { color: var(--lf68e); font-size: .9rem; }
.highlight-box strong { color: var(--e13bf); }

/* ===== BREADCRUMB ===== */
.g04e1a { padding: 14px 0; font-size: .82rem; }
.laad48 { display: flex; list-style: none; gap: 8px; flex-wrap: wrap; }
.laad48 li + li::before { content: '\203A'; margin-right: 8px; color: var(--a9229); }
.g04e1a a { color: var(--a9229); }
.g04e1a a:hover { color: var(--e13bf); }
.g04e1a [aria-current] { color: var(--eb797); }

/* ===== SITE FOOTER ===== */
.c2b0e0 {
    background: var(--k594f); border-top: 1px solid rgba(255,255,255,.06);
    padding: 48px 0 28px; font-size: .85rem;
}
.footer-nav { margin-bottom: 24px; }
.i4a9cf {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px 24px; list-style: none;
}
.i4a9cf a {
    color: var(--a9229); transition: color .2s;
    text-decoration: none; font-size: .88rem;
}
.i4a9cf a:hover { color: var(--e13bf); }

.pe0466 {
    text-align: center; padding: 24px 0 16px;
    border-top: 1px solid rgba(255,255,255,.06); margin-top: 8px;
}
.pe0466 p {
    color: var(--a9229); font-size: .8rem; line-height: 1.6;
    max-width: 700px; margin: 10px auto 0;
}
.pe0466 a { color: var(--eb797); }
.a67054 { text-align: center; color: var(--a9229); font-size: .78rem; margin-top: 14px; }

/* ===== TEXT-CONTENT (SEO long-form) ===== */
.g269f0 { max-width: 800px; margin: 0 auto; }
.g269f0 p {
    color: var(--lf68e); font-size: .95rem; line-height: 1.8;
    margin-bottom: 18px;
}
.g269f0 p:last-child { margin-bottom: 0; }
.g269f0 strong { color: var(--dd569); }
.g269f0 a { color: var(--e13bf); text-decoration: underline; text-underline-offset: 3px; }
.g269f0 a:hover { color: var(--kd0b1); }

/* ===== IMAGE-TEXT (image + text side by side) ===== */
.a11b48 {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    align-items: center; margin-top: 24px;
}
.c41ed6 { direction: rtl; }
.c41ed6 > * { direction: ltr; }
.o7fd62 { border-radius: var(--p8f1f); overflow: hidden; }
.o7fd62 img {
    width: 100%; height: auto; display: block;
    border-radius: var(--p8f1f);
    border: 1px solid rgba(212,168,67,.15);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.kaaba0 { color: var(--lf68e); font-size: .93rem; line-height: 1.7; }
.kaaba0 strong { color: var(--dd569); }
.kaaba0 a { color: var(--e13bf); }
@media (max-width: 768px) {
    .a11b48 { grid-template-columns: 1fr; gap: 24px; }
    .c41ed6 { direction: ltr; }
}

/* ===== AGE BADGE ===== */
.age-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border: 2px solid var(--bee6c);
    border-radius: 50%; font-weight: 700; font-size: .8rem;
    color: var(--bee6c); margin: 0 6px; vertical-align: middle;
}

/* ===== SCROLL TO TOP ===== */
.f2cf2a {
    position: fixed; bottom: 28px; right: 28px;
    width: 44px; height: 44px; background: var(--eb797);
    color: var(--dd569); border: none; border-radius: 50%;
    font-size: 1.2rem; cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: opacity .3s, visibility .3s, transform .2s;
    z-index: 90; box-shadow: var(--j1d8c);
}
.f2cf2a.m3ca00 { opacity: 1; visibility: visible; }
.f2cf2a:hover { transform: translateY(-3px); background: var(--bee6c); }

/* ===== REVIEW SCORE (review page) ===== */
.jde6af {
    font-family: var(--kdb88); font-size: 5rem; font-weight: 800;
    background: linear-gradient(135deg, var(--kd0b1), var(--e13bf));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1;
}
.score-stars { font-size: 1.8rem; color: var(--kd0b1); letter-spacing: 3px; margin: 8px 0; }
.score-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: .9rem; }
.score-table td { padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,.06); }
.score-table td:first-child { color: var(--lf68e); width: 55%; }
.score-table td:last-child { color: var(--kd0b1); font-weight: 600; text-align: right; }

/* ===== STICKY MOBILE CTA ===== */
.ad55a0 {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
    padding: 12px 16px;
    background: rgba(8,12,24,.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(244,200,66,.2);
    text-align: center;
    box-shadow: 0 -4px 24px rgba(0,0,0,.5);
}
.ad55a0 .c3d782 { width: 100%; max-width: 360px; justify-content: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ca67b5 { display: none; }
    .n5fb32 .a2a856 { display: none; }
    .e37f22 { display: flex; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .he032a { grid-template-columns: 1fr; }
    section, .g31c4d { padding: clamp(36px, 6vw, 56px) 0; }
    .hero { padding: clamp(48px, 8vw, 80px) 0 clamp(36px, 6vw, 56px); }
    .i4a9cf { gap: 8px 14px; }
    .steps { grid-template-columns: 1fr 1fr; }
    .d93170 { grid-template-columns: 1fr 1fr; }
    .m56945 { grid-template-columns: 1fr 1fr; }
    .ne2e49 { grid-template-columns: 1fr 100px auto; }
    .ad55a0 { display: block; }
    body { padding-bottom: 72px; }
}
@media (max-width: 480px) {
    body { font-size: 15px; }
    .h59e85 { padding: 15px 30px; font-size: 1rem; }
    .steps { grid-template-columns: 1fr; }
    .d93170 { grid-template-columns: 1fr; }
    .m56945 { grid-template-columns: 1fr; }
    .gbc768 { padding: 10px 0; }
    .hero-stat { font-size: .83rem; padding: 5px 10px; }
    .jde6af { font-size: 3.5rem; }
    .ne2e49 { grid-template-columns: 1fr 80px auto; gap: 8px; }
    .he032a { grid-template-columns: 1fr; }
    .na8fc1 { padding: 24px 18px; }
}

/* ===== LANGUAGE SWITCHER ===== */
.pa2a29 {
    position: relative;
    margin-left: 10px;
    flex-shrink: 0;
}
.pa2a29 summary.hea3d0 {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.13);
    color: var(--dd569);
    padding: 6px 11px;
    border-radius: var(--pe80a);
    cursor: pointer;
    font-size: .82rem;
    font-family: var(--m27af);
    white-space: nowrap;
    transition: background .2s, border-color .2s;
    user-select: none;
}
.pa2a29 summary.hea3d0::-webkit-details-marker { display: none; }
.pa2a29 summary.hea3d0::marker { display: none; }
.pa2a29:hover summary.hea3d0,
.pa2a29[open] summary.hea3d0 {
    background: rgba(255,255,255,.13);
    border-color: rgba(244,200,66,.35);
    color: var(--kd0b1);
}
.m02bac { font-size: .7rem; opacity: .7; transition: transform .2s; }
.pa2a29[open] .m02bac { transform: rotate(180deg); }

.c55654 {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--i8779);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--fedd7);
    padding: 6px;
    list-style: none;
    z-index: 300;
    box-shadow: 0 8px 32px rgba(0,0,0,.6);
    min-width: 160px;
}
.pa2a29[open] .c55654 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    max-height: 400px;
    overflow-y: auto;
    animation: fadeInDown .15s ease;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.c55654 li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    color: var(--m3be7);
    border-radius: var(--pe80a);
    font-size: .82rem;
    white-space: nowrap;
    transition: background .15s, color .15s;
}
.c55654 li a:hover,
.c55654 li a.e35b8b {
    background: rgba(255,255,255,.08);
    color: var(--kd0b1);
}
.c55654 li a.e35b8b { font-weight: 700; }

/* Mobile lang bar */
.gbf094 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(255,255,255,.07);
    margin-top: 8px;
}
.gbf094 a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--pe80a);
    color: var(--m3be7);
    font-size: .78rem;
    transition: background .15s, color .15s;
}
.gbf094 a:hover,
.gbf094 a.e8fb2c {
    background: rgba(244,200,66,.12);
    border-color: rgba(244,200,66,.3);
    color: var(--kd0b1);
}
.gbf094 a.e8fb2c { font-weight: 700; }

@media (max-width: 768px) {
    .pa2a29 { display: none; }
}


/* ===== STRUCTURAL VARIANT STYLES ===== */

/* info-grid variant B: list */
ul.m56945, ul.d134c1 { list-style: none; padding: 0; margin: 0; }

/* info-grid variant C: 2-column wider */
.o1d5cc { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 600px) { .o1d5cc { grid-template-columns: 1fr !important; } }

/* steps-grid variant B: ordered list */
ol.d93170, ol.bd91bb { list-style: none; padding: 0; margin: 0; counter-reset: step-counter; }
ol.bd91bb > li { counter-increment: step-counter; }
ol.bd91bb > li::before { content: counter(step-counter); font-weight: 700; font-size: 1.5rem; color: var(--eb797); display: block; margin-bottom: .5rem; }

/* steps-grid variant C: timeline */
.oaf727 { display: flex; flex-direction: column; gap: 1.5rem; padding-left: 2rem; border-left: 3px solid var(--eb797); }
.c3f11a { display: flex; align-items: flex-start; gap: 1rem; position: relative; }
.a03e54 { width: 36px; height: 36px; border-radius: 50%; background: var(--eb797); color: var(--k594f); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; margin-left: -2.55rem; }
.h7eaa9 h3 { margin-bottom: .25rem; }

/* info-table variant B: definition list */
dl.e3202d { display: grid; grid-template-columns: 1fr; gap: 0; }
.e9d94b { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,.08); }
.e9d94b:last-child { border-bottom: none; }
.i0e8ef { font-weight: 600; padding: .75rem 1rem; color: var(--eb797); }
.if1f0d { padding: .75rem 1rem; }

/* faq variant B: accordion (div-based) */
.of1c14 .oa4140 { cursor: pointer; width: 100%; text-align: left; background: none; border: none; color: inherit; font: inherit; padding: 1rem; }
.of1c14 .bc0bde { display: none; }
.of1c14 .d8fd89.f317c8 .bc0bde { display: block; }

/* faq variant C: definition list */
dl.lc510c { display: grid; gap: 0; }
dl.lc510c dt.gb3329 { cursor: pointer; padding: 1rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.08); }
dl.lc510c dd.bc0bde { padding: .5rem 1rem 1rem; margin: 0; border-bottom: 1px solid rgba(255,255,255,.08); }


/* Related Links (cross-linking) */
.n9ca3a { padding: 2rem 0; }
.nefd4f { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.nefd4f li a { display: inline-block; padding: .6rem 1.4rem; border-radius: var(--fedd7); border: 1px solid var(--kd0b1); color: var(--kd0b1); text-decoration: none; transition: all .2s ease; font-weight: 500; }
.nefd4f li a:hover { background: var(--kd0b1); color: var(--k594f); }


/* Promo Banner (SVG image banners) */
.o33d25 { margin: 1.5rem auto; text-align: center; max-width: 100%; display: flex; justify-content: center; }
.mb552d { display: block; max-width: 800px; margin: 0 auto; width: 100%; transition: transform .2s ease, box-shadow .2s ease; border-radius: 12px; overflow: hidden; }
.mb552d:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.j45c6e { width: 100%; height: auto; display: block; }
/* Card icon (replaces emoji in info-grid) */
.ce221c { display: inline-block; vertical-align: middle; }
.mb7872 .ce221c { width: 32px; height: 32px; }

/* ===== KEY FACTS (AI/AEO) ===== */
.key-facts {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    background: linear-gradient(145deg, var(--i8779), var(--d3051));
    border-radius: var(--fedd7); padding: 24px; margin-top: 24px;
}
.fact-row { display: flex; flex-direction: column; gap: 4px; padding: 12px 16px; border-radius: var(--pe80a); background: var(--hca61); }
.fact-row dt { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--txt-2); }
.fact-row dd { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--kd0b1); }
@media (max-width: 768px) { .key-facts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .key-facts { grid-template-columns: 1fr; } }

/* ===== ACCESSIBILITY (ui-ux-pro-max) ===== */
:focus-visible { outline: 2px solid var(--kd0b1); outline-offset: 2px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .k66b1d { animation: none; }
}
/* Touch targets: minimum 44x44px */
.c3d782, .k66b1d, .h59e85, .k6b7c3, .na3c96, .e37f22, .oa4140, .gb3329, .f2cf2a, .ad55a0 a, .hea3d0 { min-height: 44px; min-width: 44px; }
/* CTA button: replace box-shadow animation with pseudo-element opacity */
.k66b1d { position: relative; overflow: visible; }
.k66b1d::after {
  content: ""; position: absolute; inset: -4px; border-radius: inherit;
  background: var(--kd0b1); opacity: 0; z-index: -1; transition: opacity 0.3s ease-out;
}
.k66b1d:hover::after { opacity: 0.2; }
@keyframes pulse-glow { 0%, 100% { opacity: 0; } 50% { opacity: 0.15; } }
.k66b1d::after { animation: pulse-glow 3s ease-in-out infinite; }

/* ===== TRUST BADGES (mktg-marketing-psychology) ===== */
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 600;
    background: rgba(255,255,255,0.08); color: var(--txt-2);
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-badge.freshness { color: var(--kd0b1); border-color: rgba(212,168,67,0.3); }

/* ===== PAYMENT / PROVIDER / TRUST GRIDS ===== */
.payment-grid, .provider-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 20px; }
.payment-item, .provider-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px; min-width: 80px; border-radius: var(--pe80a); background: var(--i8779); transition: transform 0.2s; }
.payment-item:hover, .provider-item:hover { transform: translateY(-2px); }
.payment-item span, .provider-item span { font-size: 0.75rem; color: var(--txt-2); text-align: center; }
.trust-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 16px; border-radius: var(--pe80a); background: var(--i8779); border: 1px solid rgba(255,255,255,0.05); text-decoration: none; transition: border-color 0.2s; }
.trust-item:hover { border-color: var(--kd0b1); }
.trust-item span { font-size: 0.7rem; color: var(--kd0b1); font-weight: 600; }

/* ===== USER REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 20px; }
.review-card { background: var(--i8779); border-radius: var(--fedd7); padding: 20px; border: 1px solid rgba(255,255,255,0.05); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--kd0b1), var(--eb797)); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--k594f); flex-shrink: 0; }
.review-stars { color: var(--kd0b1); font-size: 14px; letter-spacing: 1px; }
.review-date { color: var(--a9229); font-size: 0.75rem; }
.review-card p { font-size: 0.9rem; color: var(--m3be7); line-height: 1.6; }

/* === Per-domain layout === */
:root { --max-w: 1200px; }
:root { --radius: 16px; --radius-lg: 28px; --radius-sm: 10px; }
.section { padding: clamp(64px, 9vw, 100px) 0; }
.info-grid, .bonus-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.btn-gold { animation: none; box-shadow: none; background: var(--gold); }
.btn-gold:hover { box-shadow: 0 4px 16px rgba(0,0,0,.3); }
.hero { text-align: left; }
.hero h1 { text-align: left; }
.hero-subtitle { margin-left: 0; }
.hero-stats { justify-content: flex-start; }
.info-card:hover, .bonus-card:hover { box-shadow: none; }
body { line-height: 1.65; }
body { font-size: 15.5px; }
.section + .section { border-top: 1px solid rgba(255,255,255,.06); }
.image-text { grid-template-columns: 1fr; text-align: center; }
.image-text-reverse { direction: ltr; }
.info-card:hover { transform: scale(1.03); }


/* ===== USA design language: Cyberpunk Glitch (glitch) ===== */
:root{
  --cbg:#04030C; --csurf:#0A0818; --csurf2:#100C28;
  --ctext:#EEEEFF; --cmuted:#8B8BB5; --cacc:#FF2A6D; --cacc2:#05D9FF;
  --cbord:#1E1830; --cfh:'Major Mono Display',monospace; --cfb:'Inter',sans-serif;
}
html{scroll-behavior:smooth;}
*{box-sizing:border-box;}
body{font-family:var(--cfb);color:var(--ctext)!important;line-height:1.6;}
h1,h2,h3,h4,.f1e064,.c70acf{font-family:var(--cfh);}
.d86843{max-width:1140px;margin-inline:auto;padding-inline:24px;}
img{max-width:100%;}
main a{color:var(--cacc);}
.g31c4d{padding:58px 0;position:relative;}
.m56945{display:grid;grid-template-columns:repeat(auto-fit,minmax(232px,1fr));gap:20px;}
.m56945.o1d5cc{grid-template-columns:repeat(auto-fit,minmax(330px,1fr));}
.d93170{display:grid;grid-template-columns:repeat(auto-fit,minmax(232px,1fr));gap:20px;}
.he032a{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.key-facts{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px;}
.a11b48{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;}
.c41ed6{direction:rtl;}.c41ed6>*{direction:ltr;}
.o7fd62 img,.o7fd62 svg{width:100%;height:auto;}
.kaaba0 p{margin:0 0 1em;}
.lc510c{display:flex;flex-direction:column;gap:12px;max-width:860px;margin-inline:auto;}
.gb3329{cursor:pointer;list-style:none;position:relative;}.gb3329::-webkit-details-marker{display:none;}
.trust-grid{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;}
.trust-item{display:inline-flex;align-items:center;gap:10px;text-decoration:none;}
.trust-item img{width:30px;height:30px;}
.j45c6e{width:100%;height:auto;display:block;}
.logo-mark{vertical-align:middle;margin-right:9px;}
table{width:100%;border-collapse:collapse;}
table th,table td{padding:13px 16px;text-align:left;}
@media (prefers-reduced-motion: no-preference){
  @keyframes u-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
  .hero-art img,.hero-art svg{animation:u-float 6.5s ease-in-out infinite;}
  section.u-rev{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease;}
  section.u-rev.u-in{opacity:1;transform:none;}
}
@media (max-width:900px){
  .hee210 .d86843{grid-template-columns:1fr !important;}
  .a11b48,.he032a{grid-template-columns:1fr !important;}
  .hero-art{order:-1;}.c41ed6{direction:ltr;}
}

/* CYBERPUNK GLITCH — RGB-split анимация заголовка, сканлайны, datamosh */
body{background:
  repeating-linear-gradient(transparent 0 2px,rgba(238,238,255,0.03) 2px 3px),
  radial-gradient(720px 460px at 4% 6%,rgba(255,42,109,0.15),transparent 60%),
  radial-gradient(720px 460px at 96% 16%,rgba(5,217,255,0.15),transparent 60%),#04030C!important;
  background-attachment:fixed;color:#EEEEFF!important;}
header,.f61e97{background:rgba(4,3,12,0.9)!important;border-bottom:1px solid rgba(255,42,109,0.4)!important;
  box-shadow:0 1px 0 rgba(5,217,255,0.35);}
header a,nav a{color:#8B8BB5!important;font-family:'Major Mono Display',monospace;text-transform:lowercase;letter-spacing:.04em;font-size:.84rem;}header a:hover{color:#05D9FF!important;text-shadow:0 0 8px #05D9FF;}
.hee210{padding:84px 0 56px;text-align:center;background:transparent!important;}.hee210::before{display:none!important;}
.hee210.has-art .d86843{display:flex;flex-direction:column;align-items:center;gap:22px;}.hee210 .hero-art{order:2;}.hero-art img{max-width:420px;}
.f1e064{font-family:'Major Mono Display',monospace;text-transform:lowercase;font-weight:400;font-size:clamp(1.9rem,4.4vw,3.2rem);line-height:1.08;color:#EEEEFF!important;-webkit-text-fill-color:#EEEEFF!important;background:none!important;
  text-shadow:3px 0 0 rgba(255,42,109,0.85),-3px 0 0 rgba(5,217,255,0.85);animation:u-glitch 4.5s steps(1) infinite;}
@keyframes u-glitch{0%,90%,100%{transform:translate(0)} 92%{transform:translate(-2px,1px)} 94%{transform:translate(2px,-1px)} 96%{transform:translate(-1px,-2px)} 98%{transform:translate(1px,2px)}}
.c73781{color:#8B8BB5;max-width:60ch;margin:18px auto 26px;font-size:1.04rem;}
.c73781::before{content:"> ";color:#FF2A6D;}.c73781::after{content:" _";color:#05D9FF;animation:u-blink 1.1s steps(1) infinite;}
@keyframes u-blink{50%{opacity:0;}}
.c70acf{text-align:center;font-family:'Major Mono Display',monospace;text-transform:lowercase;color:#EEEEFF!important;text-shadow:2px 0 0 rgba(255,42,109,0.7),-2px 0 0 rgba(5,217,255,0.7);}
.c70acf::before{content:"// ";color:#FF2A6D;}
.k66b1d,.na3c96{background:linear-gradient(120deg,#FF2A6D,#05D9FF)!important;color:#04030C!important;border:none!important;border-radius:0!important;font-family:'Major Mono Display',monospace;text-transform:lowercase;font-size:.94rem;letter-spacing:.04em;box-shadow:0 0 0 1px #FF2A6D,4px 4px 0 rgba(5,217,255,0.7);clip-path:polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,12px 100%,0 calc(100% - 12px));}
.h59e85{padding:14px 30px;}.k66b1d:hover,.na3c96:hover{box-shadow:0 0 0 1px #05D9FF,6px 6px 0 rgba(255,42,109,0.7);transform:translate(-2px,-2px);}
.hero-trust{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;margin-top:18px;}
.hero-badge{background:rgba(10,8,24,0.7)!important;border:1px solid rgba(255,42,109,0.5)!important;color:#EEEEFF!important;border-radius:0!important;padding:7px 14px;font-family:'Major Mono Display',monospace;text-transform:lowercase;font-size:.78rem;}
.c3be7a,.geb6c2,.m62364,.g732c8,.o4144d{background:rgba(10,8,24,0.65)!important;border:1px solid rgba(255,42,109,0.35)!important;border-radius:0!important;padding:24px;
  box-shadow:4px 4px 0 rgba(5,217,255,0.4)!important;transition:box-shadow .15s,transform .15s;clip-path:polygon(0 0,calc(100% - 14px) 0,100% 14px,100% 100%,14px 100%,0 calc(100% - 14px));}
.c3be7a:hover,.geb6c2:hover,.m62364:hover{transform:translate(-3px,-3px);box-shadow:7px 7px 0 rgba(255,42,109,0.5)!important;}
.c3be7a h3,.geb6c2 h3,.m62364 h3{color:#FF2A6D!important;font-family:'Major Mono Display',monospace;text-transform:lowercase;font-size:1rem;}
.c3be7a p,.geb6c2 p,.m62364 p{color:#8B8BB5!important;}
.kaaba0{color:#8B8BB5;}.kaaba0 strong{color:#05D9FF;}.o7fd62 img{border:1px solid rgba(255,42,109,0.4);border-radius:0;clip-path:polygon(0 0,calc(100% - 18px) 0,100% 18px,100% 100%,18px 100%,0 calc(100% - 18px));}
.o82a44{background:rgba(10,8,24,0.4)!important;}
.d8fd89{background:rgba(10,8,24,0.6)!important;border:1px solid rgba(255,42,109,0.3)!important;border-radius:0!important;padding:4px 18px;}
.gb3329{color:#EEEEFF!important;font-family:'Major Mono Display',monospace;text-transform:lowercase;font-size:.96rem;padding:14px 0;}.gb3329::before{content:"? ";color:#FF2A6D;}
details.d8fd89 summary.gb3329::after{content:"[+]";position:absolute;right:0;top:13px;color:#05D9FF;font-family:'Major Mono Display',monospace;}details.d8fd89[open] summary.gb3329::after{content:"[-]";}
.bc0bde{color:#8B8BB5!important;padding-bottom:14px;}
.trust-item{background:rgba(10,8,24,0.6)!important;border:1px solid rgba(255,42,109,0.4)!important;border-radius:0;padding:11px 16px;color:#EEEEFF!important;font-family:'Major Mono Display',monospace;text-transform:lowercase;font-size:.78rem;}
.mb552d{border:1px solid rgba(255,42,109,0.4);border-radius:0;display:block;overflow:hidden;clip-path:polygon(0 0,calc(100% - 18px) 0,100% 18px,100% 100%,18px 100%,0 calc(100% - 18px));}
footer,.c2b0e0{background:#04030C!important;border-top:1px solid rgba(255,42,109,0.4)!important;}footer a{color:#8B8BB5!important;}

.g269f0 strong,.a11b48 strong,.faq strong,.he032a strong{color:inherit !important;}
