/* CSS Generator v5 */



/* System fonts */



:root {
    --primary: #0891b2;
    --secondary: #0e7490;
    --accent: #22c55e;

    --bg-page: #FFFFFF;
    --bg-alt: #F1F5F9;
    --bg-card: #F1F5F9;
    --bg-dark: #111827;

    --text: #343137;
    --text-heading: #1a1a2e;
    --text-muted: #7a7785;
    --text-on-dark: #FFFFFF;

    --border: #e8e5ef;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-hover: 0 6px 24px rgba(0,0,0,0.10);

    --radius: 8px;
    --container: 1200px;
    --section-padding: 80px 0;
    --transition: all 0.25s ease;

    --font-heading: "Orbitron", sans-serif;
    --font-body: "Inter", sans-serif;
    --h1-size: clamp(2rem, 5vw, 3.2rem);
    --h2-size: clamp(1.5rem, 3.5vw, 2.2rem);
    --h3-size: clamp(1.1rem, 2.5vw, 1.5rem);

    color-scheme: light;

    /* Aliases for html-generator compatibility */
    --bg-primary: var(--bg-page);
    --bg-secondary: var(--bg-alt);
    --bg-darkest: var(--bg-dark);
    --bg-header: var(--bg-dark);
    --text-bright: var(--text-heading);
    --border-primary: var(--border);
    --border-strong: var(--border);
    --card-radius: var(--radius);
    --transition-base: var(--transition);
    --shadow-card: var(--shadow);
    --shadow-glow: var(--shadow-hover);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--bg-page);
    color: var(--text);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.25;
}
h1 { font-size: var(--h1-size); font-weight: 700; }
h2 { font-size: var(--h2-size); font-weight: 700; }
h3 { font-size: var(--h3-size); font-weight: 600; }

p, li, td, th, label, figcaption, blockquote { color: var(--text); }
strong, b { color: var(--text-heading); font-weight: 600; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { opacity: 0.8; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
main { display: block; }

/* Sections: white ↔ cream */
section { padding: var(--section-padding); background: var(--bg-page); color: var(--text); }
section:nth-child(even) { background: var(--bg-alt); }

.section-title {
    font-size: var(--h2-size);
    color: var(--text-heading);
    margin-bottom: 48px;
    text-align: center;
}
.section-title::after {
    content: ""; display: block; width: 50px; height: 3px;
    background: var(--accent); margin-top: 16px;
    margin-left: auto; margin-right: auto;
}

.site-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: var(--bg-dark);
    height: 60px; display: flex; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.logo {
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
    color: #fff; letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none;
}

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-menu a {
    color: rgba(255,255,255,0.6); font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.5px; text-transform: uppercase;
    padding: 6px 12px; border-radius: 6px; transition: var(--transition);
    text-decoration: none;
}
.nav-menu a:hover { color: #fff; background: rgba(255,255,255,0.08); }

.header-cta {
    background: var(--accent); color: var(--bg-dark);
    padding: 8px 20px; border-radius: 6px;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase; text-decoration: none;
    transition: var(--transition);
}
.header-cta:hover { opacity: 0.9; color: var(--bg-dark); transform: translateY(-1px); }

.menu-toggle {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 8px;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: #fff; transition: var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO: above the fold, text LEFT + iframe RIGHT ── */
.hero {
    background: var(--bg-dark);
    padding: 80px 0 40px;
    position: relative; overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: center;
}

/* All hero text = white */
.hero, .hero *, .hero-text, .hero-text * { color: #fff; }
.hero-badge { color: var(--bg-dark) !important; }
.hero-rating-score, .hero-rating-stars { color: var(--accent) !important; }
.hero h1 .accent-text { color: var(--accent); display: block; margin-top: 6px; }

.hero-text { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
    background: var(--accent);
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
}
.hero-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--bg-dark); animation: pulse 2s infinite; }

.hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; line-height: 1.1; font-weight: 800; }
.hero-subtitle { font-size: 1rem; opacity: 0.7; margin-bottom: 20px; line-height: 1.7; max-width: 520px; }
.hero-subtitle p { margin-bottom: 0; }

.hero-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-rating-score { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; }
.hero-rating-stars { font-size: 1rem; }
.hero-rating-count { font-size: 0.8rem; opacity: 0.5; }

/* Two CTA buttons side by side */
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-ctas .cta-button { font-size: 0.8rem; padding: 14px 28px; }
.hero-ctas .cta-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px;
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    text-decoration: none; cursor: pointer; transition: var(--transition);
}
.hero-ctas .cta-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* Iframe in right column */
.hero-iframe {
    border-radius: 12px; overflow: hidden;
    border: 2px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    background: #000;
}
.hero-iframe iframe {
    width: 100%; border: none; display: block;
    aspect-ratio: 4/3;
}


/* Card */
.card { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); padding: 28px; }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card h3, .card h4 { color: var(--text-heading); margin-bottom: 10px; }
.card p { color: var(--text); }

.two-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.three-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Bonus cards */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.bonus-card { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); padding: 28px; position: relative; }
.bonus-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.bonus-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); border-radius: var(--radius) var(--radius) 0 0; }
.bonus-card h3 { color: var(--text-heading); }
.bonus-card p { color: var(--text); }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); padding: 24px; border-left: 3px solid var(--accent); }
.testimonial-card p { color: var(--text); font-style: italic; }
.testimonial-card .testimonial-author { font-weight: 600; color: var(--text-heading); margin-top: 14px; }
.testimonial-card .testimonial-role { font-size: 0.85rem; color: var(--text-muted); }
.testimonial-card .testimonial-stars { color: var(--accent); font-size: 0.9rem; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.stat-box { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); padding: 24px; text-align: center; }
.stat-box:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.stat-box .stat-value, .stat-box .stat-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--accent); }
.stat-box .stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* Strategy */
.strategy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.strategy-card { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); padding: 24px; }
.strategy-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.strategy-card h3 { color: var(--text-heading); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step-item { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); padding: 24px; text-align: center; }
.step-item:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent); color: var(--bg-dark);
    font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
    margin-bottom: 14px;
}
.step-item h3, .step-item h4 { color: var(--text-heading); }

/* Highlight box */
.highlight-box {
    background: var(--bg-card); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); padding: 24px;
    border-left: 4px solid var(--accent);
    display: flex; align-items: flex-start; gap: 16px;
}
.highlight-icon { font-size: 2rem; flex-shrink: 0; }
.highlight-box h3, .highlight-box h4 { color: var(--text-heading); }

/* Pros/Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pros-col, .cons-col { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); padding: 24px; }
.pros-col h3 { color: #16a34a; }
.cons-col h3 { color: #dc2626; }
.pros-col li::before { content: "✓ "; color: #16a34a; font-weight: 700; }
.cons-col li::before { content: "✗ "; color: #dc2626; font-weight: 700; }
.pros-col li, .cons-col li { color: var(--text); padding: 6px 0; }

/* Icon grid */
.icon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.icon-card { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); padding: 20px; display: flex; align-items: flex-start; gap: 14px; }
.icon-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.icon-card .icon-emoji { font-size: 1.8rem; flex-shrink: 0; }
.icon-card h4 { color: var(--text-heading); }

/* Numbered list */
.numbered-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 16px 0; border-bottom: 1px solid var(--border);
}
.numbered-item .item-number {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    background: var(--accent); color: var(--bg-dark);
    font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem;
}
.numbered-item h4 { color: var(--text-heading); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.gallery-item img { border-radius: var(--radius); transition: var(--transition); }
.gallery-item img:hover { transform: scale(1.02); }
.gallery-item figcaption { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }

/* Timeline */
.timeline-section { position: relative; padding-left: 40px; }
.timeline-section::before { content: ""; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: var(--accent); }
.timeline-item { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); position: relative; margin-bottom: 24px; padding: 20px 24px; }
.timeline-item::before {
    content: ""; position: absolute; left: -34px; top: 24px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--accent); border: 3px solid var(--bg-page);
}
.timeline-item h3, .timeline-item h4 { color: var(--text-heading); }
.timeline-date { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }

/* Accordion */
.accordion-section { max-width: 800px; }
.accordion-item { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 8px; overflow: hidden; }
.accordion-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; cursor: pointer; font-weight: 600; color: var(--text-heading); list-style: none; }
.accordion-header::-webkit-details-marker { display: none; }
.accordion-icon { font-size: 1.2rem; color: var(--accent); transition: var(--transition); }
details[open] .accordion-icon { transform: rotate(45deg); }
.accordion-body { padding: 0 24px 20px; color: var(--text); }

/* Masonry */
.masonry-grid { columns: 2; column-gap: 20px; }
.masonry-item { break-inside: avoid; margin-bottom: 20px; }
@media (max-width: 768px) { .masonry-grid { columns: 1; } }

/* Sidebar layout */
.sidebar-layout { display: grid; grid-template-columns: 1fr 300px; gap: 30px; align-items: start; }
.sidebar-main p { margin-bottom: 16px; }
.sidebar-aside { position: sticky; top: 100px; }
.sidebar-points { list-style: none; }
.sidebar-points li { padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--text); font-size: 0.9rem; }
.sidebar-points li::before { content: "\2713 "; color: var(--accent); font-weight: 700; margin-right: 8px; }
@media (max-width: 768px) { .sidebar-layout { grid-template-columns: 1fr; } .sidebar-aside { position: static; } }

/* Zigzag */
.zigzag-layout { display: flex; flex-direction: column; gap: 16px; max-width: 700px; margin: 0 auto; }
.zigzag-left { align-self: flex-start; max-width: 85%; }
.zigzag-right { align-self: flex-end; max-width: 85%; }
@media (max-width: 768px) { .zigzag-left, .zigzag-right { max-width: 100%; } }

/* Quote block */
.quote-block { text-align: center; max-width: 700px; margin: 0 auto 30px; }
.quote-text { font-size: 1.3rem; font-style: italic; color: var(--text-heading); line-height: 1.7; margin-bottom: 16px; }
.quote-text::before { content: "\201C"; font-size: 3rem; color: var(--accent); display: block; line-height: 1; }
.quote-author { color: var(--text-muted); font-size: 0.9rem; font-weight: 600; }

/* Full width section */
.full-width-section .full-width-content { max-width: 800px; }
.full-width-content p { margin-bottom: 16px; }

/* Numbered badge (alternative to numbered-item) */
.numbered-badge {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    background: var(--accent); color: var(--bg-dark);
    font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem;
}
.numbered-text p { color: var(--text); }

/* Icon grid item (used by layoutIconGrid) */
.icon-grid-item { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; display: flex; align-items: flex-start; gap: 14px; }
.icon-grid-item:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.icon-grid-emoji { font-size: 1.8rem; flex-shrink: 0; }
.icon-grid-item h4 { color: var(--text-heading); margin-bottom: 6px; }
.icon-grid-item p { color: var(--text); font-size: 0.9rem; }

/* Image wrap */
.img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.img-wrap img { width: 100%; height: auto; display: block; }

/* Skip link (a11y) */
.skip-link { position: absolute; top: -100px; left: 16px; background: var(--accent); color: var(--bg-dark); padding: 8px 16px; border-radius: 4px; z-index: 9999; font-weight: 700; text-decoration: none; }
.skip-link:focus { top: 8px; }

/* Featured cards grid */
.featured-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

/* Numbered list wrapper */
.numbered-list { display: flex; flex-direction: column; gap: 16px; }

/* Strategy card sub-elements */
.strategy-label { font-family: var(--font-heading); font-size: 0.85rem; color: var(--text-heading); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.strategy-range { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--accent); margin-bottom: 8px; }

/* Bonus card icon */
.bonus-card-icon { font-size: 2.5rem; margin-bottom: 12px; text-align: center; }

table { width: 100%; border-collapse: collapse; }
.specs-table { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.specs-table th, .specs-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.specs-table th { color: var(--text-heading); font-weight: 600; font-size: 0.9rem; }
.specs-table td { color: var(--text); }
.specs-table thead th { background: var(--bg-dark); color: #fff; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 1px; font-size: 0.78rem; }
.specs-table tbody tr:hover { background: rgba(0,0,0,0.02); }
.specs-table tbody tr:last-child td { border-bottom: none; }

.casino-table { width: 100%; border-collapse: separate; border-spacing: 0 8px; }
.casino-table tr { background: var(--bg-card); box-shadow: var(--shadow); border-radius: var(--radius); }
.casino-table td { padding: 16px; color: var(--text); }
.casino-table td:first-child { border-radius: var(--radius) 0 0 var(--radius); font-weight: 600; color: var(--text-heading); }
.casino-table td:last-child { border-radius: 0 var(--radius) var(--radius) 0; }

.cta-button {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; border-radius: 50px;
    background: var(--accent); color: var(--bg-dark);
    font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    text-decoration: none; border: none; cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.cta-button:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 6px 20px rgba(0,0,0,0.15); color: var(--bg-dark); }
.cta-button::after { content: "→"; font-size: 1.1em; transition: var(--transition); }
.cta-button:hover::after { transform: translateX(4px); }

/* CTA Banner — dark */
.cta-banner {
    background: var(--bg-dark); border-radius: var(--radius);
    padding: 48px; text-align: center; margin: 40px 0;
}
.cta-banner h2, .cta-banner h3 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }

.bonus-banner, .welcome-banner {
    background: var(--accent); color: var(--bg-dark);
    border-radius: var(--radius); padding: 20px 32px;
    text-align: center; font-weight: 700; margin: 24px 0; font-size: 1.05rem;
}

.faq-item {
    background: var(--bg-card); color: var(--text);
    border: 1px solid var(--border); border-radius: var(--radius);
    margin-bottom: 10px; overflow: hidden;
}
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px; cursor: pointer;
    font-weight: 600; color: var(--text-heading); transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question::after { content: "+"; font-size: 1.3rem; color: var(--accent); transition: var(--transition); }
.faq-item.active .faq-question::after { content: "−"; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 24px; color: var(--text); }
.faq-item.active .faq-answer { max-height: 500px; padding: 12px 24px 20px; }

.iframe-wrap {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow);
}
.iframe-wrap iframe { width: 100%; height: 500px; border: none; border-radius: calc(var(--radius) - 4px); display: block; }
.demo-label {
    display: inline-block; padding: 6px 16px; margin-bottom: 16px;
    background: var(--accent); color: var(--bg-dark);
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px;
}

.content-image { border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); }
.content-image:hover { transform: scale(1.01); box-shadow: var(--shadow-hover); }
img[loading="lazy"] { opacity: 0; transition: opacity 0.3s ease; }
img[loading="lazy"].loaded, img[loading="lazy"][complete] { opacity: 1; }

.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.footer-col h4 { color: #fff; font-size: 0.9rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col p, .footer-col li { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.9; }
.footer-col a { color: rgba(255,255,255,0.55); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); margin-top: 40px; padding-top: 20px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--accent); }

/* TOC */
#toc { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 20px; box-shadow: var(--shadow); }
#toc h3 { color: var(--text-heading); font-size: 0.95rem; margin-bottom: 12px; }
#toc a { display: block; padding: 6px 0; font-size: 0.88rem; color: var(--text-muted); border-bottom: 1px solid var(--border); transition: var(--transition); }
#toc a:last-child { border-bottom: none; }
#toc a:hover { color: var(--primary); padding-left: 8px; }

/* Author */
.author-section { padding: 40px 0; }
.author-card { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; display: flex; gap: 24px; align-items: flex-start; box-shadow: var(--shadow); }
.author-avatar { width: 70px; height: 70px; border-radius: 50%; flex-shrink: 0; background: var(--accent); display: flex; align-items: center; justify-content: center; color: var(--bg-dark); font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; }
.author-info h3 { color: var(--text-heading); font-size: 1.1rem; margin-bottom: 4px; }
.author-title { color: var(--primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.author-bio { color: var(--text); font-size: 0.9rem; line-height: 1.6; }
.author-meta { display: flex; gap: 16px; margin-top: 12px; font-size: 0.8rem; color: var(--text-muted); }
.author-meta span { display: flex; align-items: center; gap: 4px; }

/* Cookie */
#cookie-consent { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-dark); color: rgba(255,255,255,0.8); padding: 16px 20px; z-index: 9999; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid rgba(255,255,255,0.08); box-shadow: 0 -4px 20px rgba(0,0,0,0.3); }
#cookie-consent p { font-size: 0.85rem; color: rgba(255,255,255,0.8); flex: 1; }
#cookie-consent a { color: var(--accent); }
.cookie-buttons { display: flex; gap: 8px; }
.cookie-btn { padding: 8px 20px; border: none; border-radius: 6px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.cookie-accept { background: var(--accent); color: var(--bg-dark); }
.cookie-accept:hover { opacity: 0.9; }
.cookie-reject { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.cookie-reject:hover { background: rgba(255,255,255,0.15); }

/* Badges */
.regulatory-badges { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 20px 0; flex-wrap: wrap; }
.badge-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.badge-item svg { width: 40px; height: 40px; fill: rgba(255,255,255,0.4); }

/* Lang Switcher */
#lang-switcher { position: fixed; bottom: 20px; right: 20px; z-index: 9998; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.lang-toggle { display: flex; align-items: center; gap: 6px; background: var(--bg-dark); color: #fff; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 8px 14px; cursor: pointer; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.lang-list { display: none; flex-direction: column; gap: 2px; background: var(--bg-dark); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 4px; min-width: 100px; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.lang-list.open { display: flex; }
.lang-list a { color: rgba(255,255,255,0.7); font-size: 0.78rem; font-weight: 500; padding: 6px 12px; border-radius: 4px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: all 0.2s ease; }
.lang-list a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.lang-list a.active { color: var(--accent); font-weight: 700; }

@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.3); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1024px) {
    :root { --section-padding: 60px 0; }
    .container { padding: 0 16px; }
    .hero-grid { gap: 30px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    :root { --section-padding: 50px 0; }
    .menu-toggle { display: flex; }
    .nav-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(18,13,28,0.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); flex-direction: column; justify-content: center; align-items: center; gap: 24px; opacity: 0; visibility: hidden; transform: translateY(-20px); transition: all 0.3s ease; z-index: 999; }
    .nav-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-menu a { font-size: 1.2rem; letter-spacing: 2px; padding: 12px 24px; }
    .hero { padding: 80px 0 32px; }
    .hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .hero-text { text-align: center; }
    .hero-subtitle { max-width: 600px; margin-left: auto; margin-right: auto; }
    .hero-rating { justify-content: center; }
    .hero-ctas { justify-content: center; }
    .hero-iframe iframe { aspect-ratio: 16/10; }
    .bonus-grid, .testimonial-grid, .strategy-grid, .icon-grid, .two-cards-grid, .three-cards-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .pros-cons { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight-box { flex-direction: column; align-items: center; text-align: center; }
    .numbered-item { flex-direction: column; align-items: center; text-align: center; }
    .timeline-section { padding-left: 30px; }
    .timeline-section::before { left: 8px; }
    .timeline-item::before { left: -26px; }
    .specs-table th, .specs-table td { padding: 10px 12px; font-size: 0.85rem; }
    .iframe-wrap { padding: 8px; }
    .iframe-wrap iframe { height: 350px; }
    .faq-question { padding: 16px 20px; font-size: 0.95rem; }
    .faq-item.active .faq-answer { padding: 12px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .cta-banner { padding: 28px 18px; }
    .card { padding: 22px; }
    .cta-button { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
    .author-card { flex-direction: column; text-align: center; padding: 24px 20px; }
    .author-meta { justify-content: center; flex-wrap: wrap; }
    #cookie-consent { flex-direction: column; text-align: center; padding: 16px; }
    .cookie-buttons { width: 100%; }
    .cookie-btn { flex: 1; }
}
@media (max-width: 480px) {
    :root { --section-padding: 40px 0; }
    html { font-size: 15px; }
    .container { padding: 0 12px; }
    .logo { font-size: 1.1rem; letter-spacing: 1px; }
    .hero h1 { font-size: clamp(1.4rem, 6vw, 2rem); }
    .hero-badge { font-size: 0.65rem; padding: 6px 16px; }
    .hero-rating-score { font-size: 1.8rem; }
    .cta-button { padding: 14px 28px; font-size: 0.8rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .steps-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .stat-box .stat-value, .stat-box .stat-number { font-size: 1.6rem; }
    .stat-box { padding: 20px 12px; }
    .card { padding: 20px 16px; }
    .bonus-card { padding: 20px 16px; }
    .testimonial-card { padding: 20px 16px; }
    .faq-question { padding: 14px 16px; font-size: 0.9rem; }
    .iframe-wrap iframe { height: 280px; }
    .hero-iframe iframe { aspect-ratio: 4/3; }
    .site-footer { padding: 40px 0 20px; }
    .regulatory-badges { gap: 12px; }
    .badge-item svg { width: 32px; height: 32px; }
}
@media (max-width: 360px) {
    html { font-size: 14px; }
    .hero h1 { font-size: 1.3rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero-rating { flex-wrap: wrap; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } html { scroll-behavior: auto; } }
::selection { background: color-mix(in srgb, var(--accent) 30%, transparent); color: var(--text-heading); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
@media print { body { background: #fff; color: #000; } .site-header, .site-footer, .menu-toggle, .cta-button, .cta-banner, .iframe-wrap, #cookie-consent { display: none !important; } .card, .bonus-card, .testimonial-card, .faq-item { border: 1px solid #ccc; box-shadow: none; background: #fff; } h1, h2, h3 { color: #000; } p { color: #333; } }