/* === CSS Variables === */
:root {
    --bg-dark: #0a0e27;
    --bg-card: #10183a;
    --bg-card-hover: #172448;
    --text-primary: #ffffff;
    --text-secondary: #9cb8c8;
    --accent-primary: #4AAABE;
    --accent-secondary: #2b7d9c;
    --accent-gold: #7edce8;
    --border-color: rgba(74, 170, 190, 0.18);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-gold); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* === Layout === */
.wra-pvzvvh { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* === Top Bar === */
.top-oqydu6 {
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
}
.top-oqydu6 .wra-pvzvvh { display: flex; justify-content: space-between; align-items: center; }
.top-xzewgx { display: flex; gap: 16px; }
.top-xzewgx a { color: var(--text-secondary); font-size: 13px; }
.top-xzewgx a:hover { color: var(--accent-primary); }

/* === Header === */
.hdr-18sdwo {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s, box-shadow 0.3s;
}
.hdr-18sdwo.hdr-xel1ep {
    background: rgba(10, 14, 39, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.hdr-18sdwo .wra-pvzvvh {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; padding-bottom: 14px;
}
.log-pjopsm { display: flex; align-items: center; gap: 10px; }
.bra-k3swkk { height: 38px; width: auto; max-width: 180px; object-fit: contain; }
.bra-30lo6k { font-size: 24px; color: var(--accent-primary); }
.bra-waxreb { font-size: 20px; font-weight: 700; color: var(--text-primary); }

.nav-sw25j7 { display: flex; align-items: center; gap: 28px; }
.nav-sw25j7 a { color: var(--text-secondary); font-size: 15px; font-weight: 500; }
.nav-sw25j7 a:hover { color: var(--text-primary); }
.nav-xnozjl {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff !important; padding: 8px 22px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 14px;
}
.nav-xnozjl:hover { opacity: 0.9; transform: translateY(-1px); }

/* === Language Switcher === */
.lan-0175n5 { display: flex; gap: 6px; align-items: center; }
.lan-3att9w {
    padding: 5px 10px; border-radius: var(--radius-sm); font-size: 13px;
    font-weight: 600; color: var(--text-secondary); background: transparent;
    border: 1px solid var(--border-color); transition: var(--transition);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.lan-3att9w:hover { color: var(--accent-primary); border-color: var(--accent-primary); }
.lan-6eu0gm { color: var(--bg-dark) !important; background: var(--accent-primary) !important; border-color: var(--accent-primary) !important; }

.mob-8fblkp {
    display: none; background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; position: relative;
    flex-direction: column; align-items: center; justify-content: center;
}
.mob-8fblkp span {
    display: block; width: 24px; height: 2px; background: var(--text-primary);
    border-radius: 2px; position: absolute; left: 8px;
    transition: transform 0.3s, opacity 0.3s;
}
.mob-8fblkp span:nth-child(1) { top: 12px; }
.mob-8fblkp span:nth-child(2) { top: 19px; }
.mob-8fblkp span:nth-child(3) { top: 26px; }
.tog-knxrbz span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.tog-knxrbz span:nth-child(2) { opacity: 0; }
.tog-knxrbz span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* === Hero: Split Layout === */
.her-nv5huj {
    padding: 80px 0 60px;
    background: var(--bg-dark);
    overflow: hidden;
    position: relative;
}
.her-nv5huj::before {
    content: '';
    position: absolute; top: -50%; right: -20%; width: 60%; height: 200%;
    background: radial-gradient(ellipse, color-mix(in srgb, var(--accent-secondary) 12%, transparent) 0%, transparent 70%);
    pointer-events: none;
}
.her-cgcxuv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.her-608gzo { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.her-608gzo a { color: var(--accent-primary); }
.cru-hyxte4 { margin: 0 8px; opacity: 0.5; }

.her-c8icwo {
    font-size: 48px; font-weight: 800; line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.her-1iaslj {
    font-size: 18px; color: var(--text-secondary); line-height: 1.7;
    margin-bottom: 32px; max-width: 520px;
}
.her-hsum6d { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; justify-content: center; }
.cta-jx4c13 {
    display: inline-flex; align-items: center; padding: 14px 36px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff; border-radius: var(--radius-md); font-weight: 700; font-size: 16px;
    box-shadow: 0 0 30px color-mix(in srgb, var(--accent-primary) 25%, transparent);
    transition: var(--transition);
}
.cta-jx4c13:hover { transform: translateY(-2px); box-shadow: 0 0 40px color-mix(in srgb, var(--accent-primary) 40%, transparent); color: #fff; }
.cta-x68x32 {
    display: inline-flex; align-items: center; padding: 14px 36px;
    border: 2px solid var(--accent-primary); color: var(--accent-primary);
    border-radius: var(--radius-md); font-weight: 700; font-size: 16px;
    transition: var(--transition);
}
.cta-x68x32:hover { background: var(--accent-primary); color: var(--bg-dark); }

.tru-cz9h22 { display: flex; gap: 32px; justify-content: center; }
.tru-jh23ls { text-align: center; }
.tru-ywu6lc { display: block; font-size: 28px; font-weight: 800; color: var(--accent-gold); }
.tru-ziv2gm { font-size: 13px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }

.her-pwphb9 {
    position: relative; display: flex; align-items: center; justify-content: center;
}
.her-2r52s9 {
    width: 100%; max-width: 540px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative; z-index: 1;
}
.her-iliu3j {
    position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-primary) 20%, transparent) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 0; filter: blur(40px);
}

/* === Table of Contents === */
.toc-8q6ygi { padding: 0 0 20px; }
.toc-oso4k6 {
    max-width: 820px; margin: 0 auto;
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius-md); overflow: hidden;
}
.toc-48g6to {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; background: none; border: none; cursor: pointer;
    color: var(--text-primary); font-size: 16px; font-weight: 700;
}
.toc-48g6to:hover { color: var(--accent-primary); }
.toc-u4dpwv {
    font-size: 12px; transition: transform 0.3s; color: var(--accent-primary);
}
.toc-9c4wp6 .toc-u4dpwv { transform: rotate(180deg); }
.toc-gxn7zy {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    padding: 0 24px;
    list-style: none;
    display: flex; flex-direction: column;
}
.toc-9c4wp6 .toc-gxn7zy {
    max-height: 600px; padding: 0 24px 20px;
}
.toc-gxn7zy li { display: block; }
.toc-uuv6oc {
    display: block; padding: 7px 0 7px 18px; color: var(--text-secondary);
    font-size: 15px; border-bottom: 1px solid var(--border-color);
    transition: var(--transition); position: relative;
}
.toc-uuv6oc::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent-primary); opacity: 0.6;
}
.toc-uuv6oc:last-child { border-bottom: none; }
.toc-uuv6oc:hover { color: var(--accent-primary); }
.toc-uuv6oc:hover::before { opacity: 1; }
.toc-ex8h1r { padding-left: 34px; font-size: 14px; }
.toc-ex8h1r::before { width: 4px; height: 4px; left: 14px; opacity: 0.4; }

/* === Features Strip === */
.fea-3uqnid {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(26, 31, 58, 0.3);
}
.fea-aag8gr {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.fea-ori644 {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 24px; background: var(--bg-card); border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    opacity: 0; transform: translateY(20px);
}
.fea-ori644.sho-lfwxjr { opacity: 1; transform: translateY(0); }
.fea-ori644:hover { border-color: var(--accent-primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fea-kfhwz9 {
    flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 12px; color: #fff;
}
.fea-vedunt { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.fea-33ywbe { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

/* === Article Content === */
.art-epu4uj {
    padding: 80px 0;
}
.art-cepvnh {
    max-width: 820px; margin: 0 auto;
    font-size: 17px; line-height: 1.8; color: var(--text-secondary);
}
.art-cepvnh h2 {
    font-size: 30px; font-weight: 800; color: var(--text-primary);
    margin: 48px 0 20px; padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-primary);
}
.art-cepvnh h3 {
    font-size: 22px; font-weight: 700; color: var(--text-primary);
    margin: 36px 0 14px;
}
.art-cepvnh p { margin-bottom: 18px; }
.art-cepvnh ul, .art-cepvnh ol {
    margin: 16px 0 20px 24px; list-style: disc;
}
.art-cepvnh ol { list-style: decimal; }
.art-cepvnh li { margin-bottom: 8px; }
.art-cepvnh a { color: var(--accent-primary); text-decoration: underline; }
.art-cepvnh blockquote {
    border-left: 4px solid var(--accent-secondary);
    padding: 16px 24px; margin: 24px 0;
    background: var(--bg-card); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}
.con-6fodve {
    display: block; max-width: 100%; height: auto;
    margin: 32px auto; border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* === Promo Section === */
.pro-ehchok { padding: 0 0 80px; }
.pro-zfpeo8 {
    display: flex; align-items: center; justify-content: space-between;
    padding: 48px 56px;
    background: linear-gradient(135deg, var(--bg-card) 0%, color-mix(in srgb, var(--accent-secondary) 15%, transparent) 100%);
    border: 1px solid var(--border-color); border-radius: var(--radius-lg);
    opacity: 0; transform: translateY(20px); transition: var(--transition);
}
.pro-zfpeo8.sho-lfwxjr { opacity: 1; transform: translateY(0); }
.pro-s547zt { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.pro-7xl2e0 { font-size: 16px; color: var(--text-secondary); }
.pro-l6btea {
    flex-shrink: 0; padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff; border-radius: var(--radius-md); font-weight: 700; font-size: 16px;
    box-shadow: 0 0 24px color-mix(in srgb, var(--accent-primary) 20%, transparent);
    transition: var(--transition);
}
.pro-l6btea:hover { transform: translateY(-2px); box-shadow: 0 0 36px color-mix(in srgb, var(--accent-primary) 35%, transparent); color: #fff; }

/* === FAQ === */
.faq-ta6ru3 { padding: 80px 0; }
.blo-06bfw2 {
    text-align: center; font-size: 36px; font-weight: 800;
    margin-bottom: 48px;
}
.faq-igsj7k { max-width: 780px; margin: 0 auto; }
.faq-yydmax {
    border: 1px solid var(--border-color); border-radius: var(--radius-md);
    margin-bottom: 12px; overflow: hidden;
    background: var(--bg-card);
    opacity: 0; transform: translateY(10px); transition: var(--transition);
}
.faq-yydmax.sho-lfwxjr { opacity: 1; transform: translateY(0); }
.faq-cppeo1 {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; background: none; border: none; cursor: pointer;
    color: var(--text-primary); font-size: 16px; font-weight: 600;
    text-align: left;
}
.faq-cppeo1:hover { color: var(--accent-primary); }
.faq-9czrd9 {
    font-size: 14px; transition: transform 0.3s; color: var(--accent-primary);
}
.faq-kyc1ca .faq-9czrd9 { transform: rotate(180deg); }
.faq-d0349o {
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}
.faq-kyc1ca .faq-d0349o {
    max-height: 400px; padding: 0 24px 20px;
}
.faq-d0349o p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* === Footer === */
.ftr-tf16u5 {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
}
.ftr-w6zhg4 {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px;
}
.ftr-6fws5y { margin-bottom: 16px; }
.ftr-6q779i { font-size: 14px; color: var(--text-secondary); line-height: 1.7; max-width: 320px; }
.ftr-p6ez49 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--text-primary); }
.ftr-j8495c li { margin-bottom: 10px; }
.ftr-j8495c a { color: var(--text-secondary); font-size: 14px; }
.ftr-j8495c a:hover { color: var(--accent-primary); }
.ftr-17d510 {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center; font-size: 13px; color: var(--text-secondary);
}

/* === Scroll Reveal === */
.sho-lfwxjr { opacity: 1 !important; transform: translateY(0) !important; }

/* === Responsive === */
@media (max-width: 1024px) {
    .her-cgcxuv { grid-template-columns: 1fr; gap: 40px; }
    .her-c8icwo { font-size: 38px; }
    .her-pwphb9 { justify-content: center; }
    .her-2r52s9 { max-width: 420px; }
    .fea-aag8gr { grid-template-columns: repeat(2, 1fr); }
    .ftr-w6zhg4 { grid-template-columns: 1fr 1fr; }
    .pro-zfpeo8 { flex-direction: column; text-align: center; gap: 24px; padding: 36px; }
}

@media (max-width: 768px) {
    .top-oqydu6 { display: none; }

    .nav-sw25j7 {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10, 14, 39, 0.98); backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s;
        z-index: 99;
    }
    .nav-sw25j7.men-txlok7 { opacity: 1; pointer-events: all; }
    .nav-sw25j7 a { font-size: 20px; color: var(--text-primary); }
    .mob-8fblkp { display: flex; z-index: 101; }

    .her-nv5huj { padding: 50px 0 40px; }
    .her-w0v2sc { text-align: center; }
    .her-c8icwo { font-size: 30px; }
    .her-hsum6d { flex-direction: column; align-items: center; }
    .cta-jx4c13, .cta-x68x32 { text-align: center; justify-content: center; width: 100%; max-width: 320px; }
    .tru-cz9h22 { gap: 20px; justify-content: center; }
    .tru-ywu6lc { font-size: 22px; }

    .fea-aag8gr { grid-template-columns: 1fr; }
    .fea-ori644 { padding: 20px; }

    .art-cepvnh { font-size: 16px; }
    .art-cepvnh h2 { font-size: 24px; }

    .blo-06bfw2 { font-size: 28px; }

    .ftr-w6zhg4 { grid-template-columns: 1fr; gap: 32px; }

    .brand-slots-carousel-track { grid-auto-columns: minmax(260px, 1fr); }
}

/* === Brand multipage: slots carousel === */
.brand-slots-carousel-section { padding: 48px 0 24px; }
.brand-slots-carousel-title { font-size: 28px; margin-bottom: 20px; text-align: center; }
.brand-slots-carousel { position: relative; }
.brand-slots-carousel-track {
    display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr);
    gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px;
}
.brand-slot-card {
    scroll-snap-align: start; background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column;
}
.brand-slot-card-img-link { display: block; line-height: 0; }
.brand-slot-card-img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.brand-slot-card-title a { color: inherit; text-decoration: none; }
.brand-slot-card-title a:hover { color: var(--accent-primary); }
.brand-slot-card-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.brand-slot-card-title { font-size: 18px; font-weight: 700; margin: 0; }
.brand-slot-card-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.brand-slot-card-actions .cta-x68x32,
.brand-slot-card-actions .cta-jx4c13 { padding: 10px 14px; font-size: 14px; flex: 1; text-align: center; }
.brand-inner-hero { padding-top: 100px; }
.brand-inner-hero .her-pwphb9:empty { display: none; }
.prose-body img.con-6fodve { border-radius: var(--radius-sm); margin: 16px 0; }

/* === Norm welcome bonus card (hero) === */
.norm-welcome-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    padding: 32px 28px 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, #1c2233 0%, #141824 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    z-index: 1;
}
.norm-welcome-ribbon {
    position: absolute;
    top: 22px;
    right: -42px;
    width: 160px;
    background: #e23b4a;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-align: center;
    transform: rotate(38deg);
    padding: 7px 0;
    box-shadow: 0 4px 12px rgba(226, 59, 74, 0.35);
}
.norm-welcome-kicker {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #c5c9d6;
    margin-bottom: 14px;
}
.norm-welcome-pct {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    margin: 4px 0 10px;
    background: linear-gradient(90deg, #d7e36a 0%, #4caf7a 42%, #2ec9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.norm-welcome-fs {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}
.norm-welcome-fs span { color: #3ad15a; }
.norm-welcome-note {
    font-size: 14px;
    line-height: 1.55;
    color: #9aa3b5;
    margin-bottom: 18px;
}
.norm-welcome-note strong { color: #fff; font-weight: 700; }
.norm-welcome-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.norm-welcome-list li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    color: #d5d8e2;
    line-height: 1.4;
}
.norm-welcome-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #3ad15a;
    font-weight: 800;
}
.norm-welcome-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
    background: #d32f45;
    color: #fff !important;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(211, 47, 69, 0.35);
}
.norm-welcome-btn:hover {
    background: #e23b4a;
    opacity: 1;
    transform: translateY(-1px);
    color: #fff !important;
}
@media (max-width: 900px) {
    .norm-welcome-card { max-width: 100%; }
    .norm-welcome-pct { font-size: 52px; }
    .norm-welcome-fs { font-size: 24px; }
}
