/* === CSS Variables === */
:root {
    --bg-dark: hsl(41, 7%, 9%);
    --bg-card: hsl(41, 7%, 14%);
    --bg-card-hover: hsl(41, 7%, 17%);
    --text-primary: #ffffff;
    --text-secondary: #b4b9d1;
    --accent-primary: hsl(27, 94%, 58%);
    --accent-secondary: hsl(25, 76%, 52%);
    --accent-gold: #ffd700;
    --border-color: rgba(255, 255, 255, 0.08);
    --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-048ggw { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* === Top Bar === */
.top-g2gpon {
    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-g2gpon .wra-048ggw { display: flex; justify-content: space-between; align-items: center; }
.top-aj7fcz { display: flex; gap: 16px; }
.top-aj7fcz a { color: var(--text-secondary); font-size: 13px; }
.top-aj7fcz a:hover { color: var(--accent-primary); }

/* === Header === */
.hdr-jw2yok {
    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-jw2yok.hdr-tva64c {
    background: rgba(10, 14, 39, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.hdr-jw2yok .wra-048ggw {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; padding-bottom: 14px;
}
.log-5lahby { display: flex; align-items: center; gap: 10px; }
.bra-c2m6mc { height: 38px; width: auto; max-width: 180px; object-fit: contain; }
.bra-ro9glw { font-size: 24px; color: var(--accent-primary); }
.bra-9604jd { font-size: 20px; font-weight: 700; color: var(--text-primary); }

.nav-c9ydze { display: flex; align-items: center; gap: 28px; }
.nav-c9ydze a { color: var(--text-secondary); font-size: 15px; font-weight: 500; }
.nav-c9ydze a:hover { color: var(--text-primary); }
.nav-1688cm {
    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-1688cm:hover { opacity: 0.9; transform: translateY(-1px); }

/* === Language Switcher === */
.lan-mpvxmo { display: flex; gap: 6px; align-items: center; }
.lan-ryx6vr {
    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-ryx6vr:hover { color: var(--accent-primary); border-color: var(--accent-primary); }
.lan-ljp7v1 { color: var(--bg-dark) !important; background: var(--accent-primary) !important; border-color: var(--accent-primary) !important; }

.mob-elbzp9 {
    display: none; background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; position: relative;
    flex-direction: column; align-items: center; justify-content: center;
}
.mob-elbzp9 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-elbzp9 span:nth-child(1) { top: 12px; }
.mob-elbzp9 span:nth-child(2) { top: 19px; }
.mob-elbzp9 span:nth-child(3) { top: 26px; }
.tog-co5xgk span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.tog-co5xgk span:nth-child(2) { opacity: 0; }
.tog-co5xgk span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* === Hero: Split Layout === */
.her-mk9cfc {
    padding: 80px 0 60px;
    background: var(--bg-dark);
    overflow: hidden;
    position: relative;
}
.her-mk9cfc::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-68u0m2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.her-crstde { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.her-crstde a { color: var(--accent-primary); }
.cru-q2rsl8 { margin: 0 8px; opacity: 0.5; }

.her-s5g4mb {
    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-cgqq67 {
    font-size: 18px; color: var(--text-secondary); line-height: 1.7;
    margin-bottom: 32px; max-width: 520px;
}
.her-ieq6xw { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; justify-content: center; }
.cta-hecco4 {
    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-hecco4:hover { transform: translateY(-2px); box-shadow: 0 0 40px color-mix(in srgb, var(--accent-primary) 40%, transparent); color: #fff; }
.cta-qk8rf7 {
    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-qk8rf7:hover { background: var(--accent-primary); color: var(--bg-dark); }

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

.her-winz66 {
    position: relative; display: flex; align-items: center; justify-content: center;
}
.her-lnxm1a {
    width: 100%; max-width: 540px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative; z-index: 1;
}
.her-hoko3k {
    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-r6o8gb { padding: 0 0 20px; }
.toc-4nvddu {
    max-width: 820px; margin: 0 auto;
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius-md); overflow: hidden;
}
.toc-dqmybo {
    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-dqmybo:hover { color: var(--accent-primary); }
.toc-7itumm {
    font-size: 12px; transition: transform 0.3s; color: var(--accent-primary);
}
.toc-8naklk .toc-7itumm { transform: rotate(180deg); }
.toc-83tq5f {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    padding: 0 24px;
    list-style: none;
    display: flex; flex-direction: column;
}
.toc-8naklk .toc-83tq5f {
    max-height: 600px; padding: 0 24px 20px;
}
.toc-83tq5f li { display: block; }
.toc-j0ai5o {
    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-j0ai5o::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-j0ai5o:last-child { border-bottom: none; }
.toc-j0ai5o:hover { color: var(--accent-primary); }
.toc-j0ai5o:hover::before { opacity: 1; }
.toc-2ev2wo { padding-left: 34px; font-size: 14px; }
.toc-2ev2wo::before { width: 4px; height: 4px; left: 14px; opacity: 0.4; }

/* === Features Strip === */
.fea-xzrhfd {
    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-tthkte {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.fea-sor76v {
    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-sor76v.sho-ddyjgh { opacity: 1; transform: translateY(0); }
.fea-sor76v:hover { border-color: var(--accent-primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fea-ipahw4 {
    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-d52afi { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.fea-vw63ui { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

/* === Article Content === */
.art-zda6og {
    padding: 80px 0;
}
.art-6buoew {
    max-width: 820px; margin: 0 auto;
    font-size: 17px; line-height: 1.8; color: var(--text-secondary);
}
.art-6buoew 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-6buoew h3 {
    font-size: 22px; font-weight: 700; color: var(--text-primary);
    margin: 36px 0 14px;
}
.art-6buoew p { margin-bottom: 18px; }
.art-6buoew ul, .art-6buoew ol {
    margin: 16px 0 20px 24px; list-style: disc;
}
.art-6buoew ol { list-style: decimal; }
.art-6buoew li { margin-bottom: 8px; }
.art-6buoew a { color: var(--accent-primary); text-decoration: underline; }
.art-6buoew 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-axigqa {
    display: block; max-width: 100%; height: auto;
    margin: 32px auto; border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* === Promo Section === */
.pro-3b8izg { padding: 0 0 80px; }
.pro-ltgxp1 {
    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-ltgxp1.sho-ddyjgh { opacity: 1; transform: translateY(0); }
.pro-5n0xhf { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.pro-woqjg1 { font-size: 16px; color: var(--text-secondary); }
.pro-f8e74z {
    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-f8e74z:hover { transform: translateY(-2px); box-shadow: 0 0 36px color-mix(in srgb, var(--accent-primary) 35%, transparent); color: #fff; }

/* === FAQ === */
.faq-xhkiwd { padding: 80px 0; }
.blo-npnfft {
    text-align: center; font-size: 36px; font-weight: 800;
    margin-bottom: 48px;
}
.faq-1xxtho { max-width: 780px; margin: 0 auto; }
.faq-pnkk0w {
    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-pnkk0w.sho-ddyjgh { opacity: 1; transform: translateY(0); }
.faq-3bs9tt {
    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-3bs9tt:hover { color: var(--accent-primary); }
.faq-w35y6x {
    font-size: 14px; transition: transform 0.3s; color: var(--accent-primary);
}
.faq-hgpvaa .faq-w35y6x { transform: rotate(180deg); }
.faq-rb574n {
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}
.faq-hgpvaa .faq-rb574n {
    max-height: 400px; padding: 0 24px 20px;
}
.faq-rb574n p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* === Footer === */
.ftr-bcfs7n {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
}
.ftr-ipbc4w {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px;
}
.ftr-sv1l9g { margin-bottom: 16px; }
.ftr-ctkh76 { font-size: 14px; color: var(--text-secondary); line-height: 1.7; max-width: 320px; }
.ftr-xna8lp { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--text-primary); }
.ftr-nshl4g li { margin-bottom: 10px; }
.ftr-nshl4g a { color: var(--text-secondary); font-size: 14px; }
.ftr-nshl4g a:hover { color: var(--accent-primary); }
.ftr-53riaf {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center; font-size: 13px; color: var(--text-secondary);
}

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

/* === Responsive === */
@media (max-width: 1024px) {
    .her-68u0m2 { grid-template-columns: 1fr; gap: 40px; }
    .her-s5g4mb { font-size: 38px; }
    .her-winz66 { justify-content: center; }
    .her-lnxm1a { max-width: 420px; }
    .fea-tthkte { grid-template-columns: repeat(2, 1fr); }
    .ftr-ipbc4w { grid-template-columns: 1fr 1fr; }
    .pro-ltgxp1 { flex-direction: column; text-align: center; gap: 24px; padding: 36px; }
}

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

    .nav-c9ydze {
        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-c9ydze.men-eemqcc { opacity: 1; pointer-events: all; }
    .nav-c9ydze a { font-size: 20px; color: var(--text-primary); }
    .mob-elbzp9 { display: flex; z-index: 101; }

    .her-mk9cfc { padding: 50px 0 40px; }
    .her-6k57i8 { text-align: center; }
    .her-s5g4mb { font-size: 30px; }
    .her-ieq6xw { flex-direction: column; align-items: center; }
    .cta-hecco4, .cta-qk8rf7 { text-align: center; justify-content: center; width: 100%; max-width: 320px; }
    .tru-kajtqg { gap: 20px; justify-content: center; }
    .tru-l6ii3i { font-size: 22px; }

    .fea-tthkte { grid-template-columns: 1fr; }
    .fea-sor76v { padding: 20px; }

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

    .blo-npnfft { font-size: 28px; }

    .ftr-ipbc4w { 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-qk8rf7,
.brand-slot-card-actions .cta-hecco4 { padding: 10px 14px; font-size: 14px; flex: 1; text-align: center; }
.brand-inner-hero { padding-top: 100px; }
.brand-inner-hero .her-winz66:empty { display: none; }
.prose-body img.con-axigqa { border-radius: var(--radius-sm); margin: 16px 0; }
