﻿/* ============================================
   casapariurilor.us.com - GLOBAL STYLES
   ============================================ */

:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    /* Бренд (хедер/футер) — тёмный navy */
    --brand: #131c2e;
    --brand-2: #0b1220;
    --brand-soft: #1c2740;
    /* Фирменный тёмный градиент для крупных секций (синий → navy) */
    --brand-gradient: linear-gradient(160deg, var(--primary-dark) 0%, var(--brand) 100%);
    --bg-main: #ffffff;
    --bg-light: #f8fafc;
    --bg-soft: #f1f5f9;
    --text-dark: #1e293b;
    --text-mid: #475569;
    --text-gray: #64748b;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);

    /* Типографика */
    --fs-display: clamp(1.75rem, 4vw, 2.625rem);
    --fs-h2: clamp(1.375rem, 3vw, 1.75rem);
    --fs-h3: clamp(1.125rem, 2.5vw, 1.375rem);
    --fs-h4: 1.0625rem;
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --fs-caption: 0.8125rem;
    --lh-tight: 1.25;
    --lh-body: 1.65;
    --lh-relaxed: 1.75;

    /* Вертикальный ритм секций */
    --section-space: 56px;
    --section-space-md: 44px;
    --section-space-sm: 32px;
    --block-gap: 24px;

    /* Кнопки */
    --btn-radius: 10px;
    --btn-py: 14px;
    --btn-px: 26px;
    --btn-font: 15px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.28s;

    /* Иконки контента (п.6 — единые размеры) */
    --icon-section: 42px;
    --icon-heading: 36px;
    --icon-h4: 32px;
    --icon-inline: 28px;
    --icon-table: 28px;
    --icon-star: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; width: 100%; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}
h1, h2, h3, h4, h5, h6, p { word-wrap: break-word; overflow-wrap: break-word; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* ============ Кнопки (п.2) ============ */
.btn,
.btn-warning,
.btn-primary,
.newsletter-form button,
button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: var(--btn-py) var(--btn-px);
    border-radius: var(--btn-radius);
    font-size: var(--btn-font);
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.28);
    transition:
        background var(--duration-fast) var(--ease-out),
        border-color var(--duration-fast) var(--ease-out),
        color var(--duration-fast) var(--ease-out),
        transform var(--duration-fast) var(--ease-out),
        box-shadow var(--duration-fast) var(--ease-out);
}
.btn:hover,
.btn-warning:hover,
.btn-primary:hover,
.newsletter-form button:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35);
}
.btn:focus-visible,
.btn-warning:focus-visible,
.btn-secondary:focus-visible,
.newsletter-form button:focus-visible {
    outline: 3px solid rgba(30, 64, 175, 0.35);
    outline-offset: 2px;
}
.btn-secondary {
    background: #fff;
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: none;
}
.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Header & Navigation */
header { background: #131c2e; box-shadow: 0 2px 16px rgba(0,0,0,0.28); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.08); }
.header-top { background: #0b1220; padding: 10px 0; font-size: 13px; color: #cbd5e1; }
.header-top .container { display: flex; justify-content: flex-end; align-items: center; gap: 15px; }
.language-selector, .theme-toggle { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 6px 14px; border-radius: 6px; background: rgba(255,255,255,0.08); color: #e2e8f0; font-weight: 600; font-size: 13px; transition: all 0.3s; }
.language-selector:hover, .theme-toggle:hover { background: rgba(245,158,11,0.18); color: #fff; }

/* Dark Theme */
body.dark-theme { background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%); color: #e2e8f0; }
body.dark-theme header { background: #2d3748; }
body.dark-theme .header-top { background: #2d3748; }
body.dark-theme .casino-card, body.dark-theme .content-block, body.dark-theme .faq-item { background: #374151; color: #e2e8f0; }
body.dark-theme .language-selector, body.dark-theme .theme-toggle { background: #4a5568; }
body.dark-theme .hero { background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%); }

.nav-main { padding: 15px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.logo-text { font-size: 24px; font-weight: 800; color: #fff; }
nav ul { display: flex; list-style: none; gap: 30px; }
nav a { text-decoration: none; color: #cbd5e1; font-weight: 500; transition: color 0.3s; }
nav a:hover { color: var(--accent); }

/* Desktop Navigation with Dropdown */
.desktop-nav { display: block; }
.desktop-nav > ul { display: flex; list-style: none; gap: 6px; align-items: center; }
.desktop-nav > ul > li { position: relative; }
.desktop-nav > ul > li > a { text-decoration: none; color: #cbd5e1; font-weight: 500; padding: 10px 15px; display: block; border-radius: 8px; transition: all 0.25s ease; font-size: 15px; }
.desktop-nav > ul > li > a:hover { color: var(--accent); background: rgba(255,255,255,0.05); }

/* Dropdown Menu */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: "▼"; font-size: 9px; margin-left: 6px; color: rgba(255,255,255,0.45); transition: transform 0.25s ease; }
.has-dropdown:hover > a::after { transform: rotate(180deg); color: var(--accent); }
.dropdown { display: block; position: absolute; top: calc(100% + 8px); left: 0; background: #1c2740; min-width: 230px; width: max-content; max-width: 300px; gap: 0; box-shadow: 0 14px 34px rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 1000; list-style: none; }
.dropdown::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
@media screen and (min-width: 769px) { .desktop-nav > ul > li:nth-child(n+3) .dropdown { left: auto; right: 0; } }
.dropdown li { margin: 0; }
.dropdown li a { padding: 11px 20px; display: block; color: #cbd5e1; text-decoration: none; transition: all 0.2s; font-size: 14px; white-space: nowrap; border-left: 2px solid transparent; }
.dropdown li a:hover { background: rgba(255,255,255,0.05); color: var(--accent); padding-left: 25px; border-left-color: var(--accent); }

/* Burger Menu */
.burger-menu { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1001; }
.burger-menu span { width: 28px; height: 3px; background: #e2e8f0; border-radius: 3px; transition: all 0.3s ease; }
.burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* Mobile Menu Header */
.mobile-menu-header { display: none; position: absolute; top: 0; left: 0; right: 0; padding: 20px 25px; background: #0b1220; border-bottom: 1px solid rgba(255,255,255,0.08); justify-content: space-between; align-items: center; }
.mobile-menu-title { font-size: 18px; font-weight: 700; color: #fff; }
.mobile-close-btn { background: none; border: none; cursor: pointer; padding: 5px; color: #cbd5e1; display: flex; align-items: center; justify-content: center; transition: color 0.3s; }
.mobile-close-btn:hover { color: var(--accent); }
.mobile-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; transition: opacity 0.3s ease; }
.mobile-overlay.active { display: block; opacity: 1; }

/* Images responsive */
img { max-width: 100%; height: auto; display: block; }
table { width: 100%; border-collapse: collapse; max-width: 100%; }
section, article, div { max-width: 100%; }

/* Page Navigation — блок «Navigare rapidă» */
.page-nav-block__head {
    text-align: center;
    margin-bottom: 28px;
}

.page-nav-block__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 10px;
    line-height: 1.25;
}

.page-nav-block__lead {
    margin: 0 auto;
    max-width: 640px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-mid);
}

.page-nav-grid,
.page-nav-block__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.page-nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.page-nav-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 64, 175, 0.35);
}

.page-nav-item:active {
    transform: translateY(-2px);
}

.page-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.14);
}

.page-nav-icon--brand {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.page-nav-icon--success {
    background: linear-gradient(145deg, #22c55e 0%, #16a34a 100%);
}

.page-nav-icon--accent {
    background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.page-nav-icon svg {
    width: 30px;
    height: 30px;
}

.page-nav-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.page-nav-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.35;
}

.page-nav-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
}

.page-nav-item:hover .page-nav-title {
    color: var(--primary);
}

/* Сетка из 6 плиток: 5-я и 6-я карточки — под 2-й и 3-й колонкой (как на главной) */
@media screen and (min-width: 900px) {
    :is(.page-nav-block__grid, .page-nav-grid):has(> .page-nav-item:nth-child(6)):not(:has(> .page-nav-item:nth-child(7))) {
        grid-template-columns: repeat(4, 1fr);
    }

    :is(.page-nav-block__grid, .page-nav-grid):has(> .page-nav-item:nth-child(6)):not(:has(> .page-nav-item:nth-child(7))) > .page-nav-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    :is(.page-nav-block__grid, .page-nav-grid):has(> .page-nav-item:nth-child(6)):not(:has(> .page-nav-item:nth-child(7))) > .page-nav-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    :is(.page-nav-block__grid, .page-nav-grid):has(> .page-nav-item:nth-child(6)):not(:has(> .page-nav-item:nth-child(7))) > .page-nav-item:nth-child(3) {
        grid-column: 3;
        grid-row: 1;
    }

    :is(.page-nav-block__grid, .page-nav-grid):has(> .page-nav-item:nth-child(6)):not(:has(> .page-nav-item:nth-child(7))) > .page-nav-item:nth-child(4) {
        grid-column: 4;
        grid-row: 1;
    }

    :is(.page-nav-block__grid, .page-nav-grid):has(> .page-nav-item:nth-child(6)):not(:has(> .page-nav-item:nth-child(7))) > .page-nav-item:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
    }

    :is(.page-nav-block__grid, .page-nav-grid):has(> .page-nav-item:nth-child(6)):not(:has(> .page-nav-item:nth-child(7))) > .page-nav-item:nth-child(6) {
        grid-column: 3;
        grid-row: 2;
    }
}

@media screen and (max-width: 899px) {
    :is(.page-nav-block__grid, .page-nav-grid):has(> .page-nav-item:nth-child(6)):not(:has(> .page-nav-item:nth-child(7))) {
        display: flex;
        flex-wrap: wrap;
    }

    :is(.page-nav-block__grid, .page-nav-grid):has(> .page-nav-item:nth-child(6)):not(:has(> .page-nav-item:nth-child(7))) > .page-nav-item {
        flex: 1 1 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    :is(.page-nav-block__grid, .page-nav-grid):has(> .page-nav-item:nth-child(6)):not(:has(> .page-nav-item:nth-child(7))) > .page-nav-item:nth-child(4) {
        order: 6;
    }

    :is(.page-nav-block__grid, .page-nav-grid):has(> .page-nav-item:nth-child(6)):not(:has(> .page-nav-item:nth-child(7))) > .page-nav-item:nth-child(5) {
        order: 4;
    }

    :is(.page-nav-block__grid, .page-nav-grid):has(> .page-nav-item:nth-child(6)):not(:has(> .page-nav-item:nth-child(7))) > .page-nav-item:nth-child(6) {
        order: 5;
    }
}

/* Hero Section */
/* ============ Типографика (п.1) ============ */
.hero h1,
section.hero h1[style] {
    font-size: var(--fs-display) !important;
    font-weight: 800 !important;
    line-height: var(--lh-tight) !important;
    margin-bottom: 16px !important;
}
.section-title,
h2.section-title,
.faq-section .section-title,
.casinos-section .section-title {
    font-size: var(--fs-h2) !important;
    font-weight: 800 !important;
    line-height: var(--lh-tight) !important;
}
.content-block h2,
.content-section h2,
.page-nav-block__title {
    font-size: var(--fs-h2);
    font-weight: 700;
    line-height: var(--lh-tight);
    color: var(--text-dark);
}
.content-block h3,
.content-section h3,
.content-block h3[style],
.cp-bonus-types h3 {
    font-size: var(--fs-h3) !important;
    font-weight: 700 !important;
    line-height: var(--lh-tight) !important;
    color: var(--primary) !important;
    margin-top: 0;
}
.content-block h4,
.content-section h4 {
    font-size: var(--fs-h4);
    font-weight: 700;
    line-height: var(--lh-tight);
}
.hero p,
.content-block p,
.content-section p {
    font-size: var(--fs-body);
    line-height: var(--lh-relaxed);
}
.newsletter-box h3 {
    font-size: var(--fs-h2);
    font-weight: 800;
    line-height: var(--lh-tight);
}

/* ============ Отступы секций (п.3) ============ */
.hero { background: var(--brand-gradient); color: white; padding: var(--section-space) 0 calc(var(--section-space) + 16px); text-align: center; }
.hero p { max-width: 900px; margin: 0 auto 30px; opacity: 0.95; }
.article-meta { padding: var(--section-space-sm) 0 0; }
.casinos-section { padding: var(--section-space) 0; background: transparent; }
.content-section { padding: var(--section-space) 0; background: transparent; }
.faq-section { padding: var(--section-space) 0; background: var(--bg-light); }
.newsletter-section { background: var(--brand-gradient); padding: var(--section-space-md) 0; color: white; text-align: center; }
.page-nav-section { margin-bottom: var(--block-gap); }
.section-title { text-align: center; margin-bottom: var(--block-gap); font-weight: 800; color: var(--text-dark); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }
.feature-card { background: rgba(255,255,255,0.15); padding: 20px; border-radius: 10px; backdrop-filter: blur(10px); }
.feature-icon { font-size: 32px; margin-bottom: 10px; }

/* Casino Cards */
.casino-card {
    background: white;
    padding: 0;
    border-radius: 16px;
    margin-bottom: var(--block-gap);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--duration-normal) var(--ease-out),
        box-shadow var(--duration-normal) var(--ease-out),
        border-color var(--duration-fast) var(--ease-out);
}
.casino-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.casino-content { display: grid; grid-template-columns: 200px 1fr 220px; gap: 30px; padding: 32px; align-items: center; }
.casino-logo-section { text-align: center; position: relative; background: var(--bg-light); padding: 20px; border-radius: 12px; }
.rank-number { position: absolute; top: -10px; left: -10px; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; color: white; z-index: 10; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.rank-number.rank-1 { background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); }
.rank-number.rank-2 { background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%); }
.rank-number.rank-3 { background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%); }
.casino-logo { width: 120px; height: 120px; border-radius: 50%; border: 3px solid var(--border); object-fit: cover; margin: 20px auto 10px; }
.casino-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.badge { background: #e3f2fd; color: #1976d2; padding: 4px 8px; border-radius: 5px; font-size: 12px; font-weight: 600; }
.casino-type-badge {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid #c7d8f5;
    background: #eef4ff;
    color: #1e3a8a;
    box-shadow: 0 1px 3px rgba(30, 64, 175, 0.08);
}
.casino-type-badge.both { border-color: #bfdbfe; }
.casino-type-badge.casino-only {
    background: #f5f3ff;
    color: #5b21b6;
    border-color: #ddd6fe;
}
.casino-type-badge.sport-only {
    background: #ecfdf5;
    color: #047857;
    border-color: #a7f3d0;
}
.casino-type-text {
    display: flex;
    align-items: center;
    padding: 8px 14px 8px 10px;
    line-height: 1.2;
    white-space: nowrap;
}
.casino-info { flex: 1; }
.casino-name { font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.casino-bonus {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 16px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #fde68a;
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    background: #fffbeb;
    box-shadow: 0 1px 4px rgba(245, 158, 11, 0.1);
}
.casino-bonus .bonus-highlight {
    display: flex;
    align-items: center;
    padding: 12px 16px 12px 12px;
    color: var(--accent);
    font-weight: 800;
    font-size: 17px;
    line-height: 1.3;
}
.casino-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.feature-tag {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: #1e3a8a;
    background: #eef4ff;
    border: 1px solid #c7d8f5;
    box-shadow: 0 1px 3px rgba(30, 64, 175, 0.08);
}
.feature-tag__label {
    display: flex;
    align-items: center;
    padding: 9px 14px 9px 10px;
}
/* Иконка — левая часть чипа, не отдельная «наклейка» */
.casino-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    align-self: stretch;
    min-height: 38px;
}
.casino-badge-icon svg {
    width: 20px !important;
    height: 20px !important;
}
.casino-badge-icon--feature {
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.casino-badge-icon--type {
    width: 40px;
    min-height: 0;
}
.casino-type-badge .content-icon--badge {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    margin-right: 4px;
    vertical-align: middle;
}

.casino-type-badge.both .casino-badge-icon--type {
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.casino-type-badge.casino-only .casino-badge-icon--type {
    background: linear-gradient(160deg, #7c3aed 0%, #6d28d9 100%);
}
.casino-type-badge.sport-only .casino-badge-icon--type {
    background: linear-gradient(160deg, #059669 0%, #047857 100%);
}
.casino-badge-icon--bonus {
    width: 44px;
    background: linear-gradient(160deg, #fbbf24 0%, #f59e0b 100%);
}
.casino-badge-icon--bonus svg {
    width: 22px !important;
    height: 22px !important;
}
.casino-rating-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    min-width: 0;
    text-align: center;
}
.rating-box {
    width: 100%;
    box-sizing: border-box;
    background: var(--primary);
    color: white;
    padding: 20px 16px;
    border-radius: 12px;
    margin: 0;
}
.rating-number { font-size: 36px; font-weight: 700; margin-bottom: 5px; }
.stars { font-size: 20px; color: #FFD700; line-height: 1.2; }
.accepted-players {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 4px 0;
    color: #28a745;
    font-weight: 600;
    font-size: 14px;
}
.casino-rating-section .casino-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.casino-rating-section .casino-actions .btn,
.casino-rating-section .casino-actions .btn-secondary,
.casino-rating-section .casino-actions .btn-warning,
.casino-rating-section > .btn,
.casino-rating-section > .btn-secondary,
.casino-rating-section > .btn-warning {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin: 0;
}

/* Иконки в контенте — единый стиль SVG (п.6) */
svg.content-icon {
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(0 3px 8px rgba(30, 64, 175, 0.14));
}

svg.content-icon--h2,
.section-title svg.content-icon--heading {
    width: var(--icon-section) !important;
    height: var(--icon-section) !important;
    min-width: var(--icon-section) !important;
}

svg.content-icon--h3 {
    width: var(--icon-heading) !important;
    height: var(--icon-heading) !important;
    min-width: var(--icon-heading) !important;
}

svg.content-icon--h4 {
    width: var(--icon-h4) !important;
    height: var(--icon-h4) !important;
    min-width: var(--icon-h4) !important;
}

svg.content-icon--table {
    width: var(--icon-table) !important;
    height: var(--icon-table) !important;
    min-width: var(--icon-table) !important;
    margin-right: 8px;
}

svg.content-icon--inline:not(.content-icon--table) {
    width: var(--icon-inline) !important;
    height: var(--icon-inline) !important;
    min-width: var(--icon-inline) !important;
    margin-right: 6px;
}

svg.content-icon--star {
    width: var(--icon-star) !important;
    height: var(--icon-star) !important;
    min-width: var(--icon-star) !important;
    margin: 0 1px;
    filter: none;
}

.cp-star-rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    vertical-align: middle;
}

.content-block h2,
.content-section h2,
h2.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
}

.content-block h3,
.content-block h4,
.content-section h3,
.content-section h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.content-block table td,
.content-block table th {
    vertical-align: middle;
}

.content-block table td svg.content-icon--table,
.content-block table th svg.content-icon--table {
    display: inline-block;
    vertical-align: middle;
}

.content-block svg.content-icon:not(.content-icon--table):not(.content-icon--star),
.content-section svg.content-icon:not(.content-icon--table):not(.content-icon--star) {
    max-width: 48px;
    max-height: 48px;
}

@media screen and (max-width: 768px) {
    :root {
        --icon-section: 36px;
        --icon-heading: 32px;
        --icon-h4: 28px;
        --icon-inline: 24px;
        --icon-table: 24px;
    }
}

/* Content Section */
.content-block {
    background: white;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: var(--block-gap);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.content-block h2 { margin-bottom: 16px; }
.content-block h3,
.content-block h4 { margin: 22px 0 12px; }
.content-block p { margin-bottom: 14px; color: var(--text-gray); }
.content-block a { color: var(--primary); text-decoration: none; font-weight: 600; }
.content-block a:hover { color: var(--primary-dark); text-decoration: underline; }

/* Блок «Înregistrare Rapidă» — кнопка в SVG не обрезается контейнером */
.cp-registration-block {
    overflow: visible;
}
.cp-registration-block svg.cp-registration-form-svg,
.content-block .cp-registration-block svg,
.content-section .cp-registration-block svg {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: visible;
}
.content-block ul { list-style: none; padding-left: 0; margin-bottom: 20px; }
.content-block ul li { padding: 10px 0; padding-left: 30px; position: relative; color: var(--text-mid); }
.content-block ul li:before { content: "✓"; position: absolute; left: 0; color: #28a745; font-weight: 700; font-size: 18px; top: 10px; }
/* Списки в карточках / сравнениях — без псевдо-галочки, иконки через SVG в разметке */
.content-block ul.cp-list-cards > li,
.content-block ul.cp-feature-list > li,
.content-block ul li[style*="background: white"],
.content-block ul li[style*="background:white"],
.content-block ul li[style*="border-bottom: 1px solid"],
.content-block ul li[style*="border-bottom:1px solid"],
.content-block div[style*="background: white"] ul > li,
.content-block div[style*="background:white"] ul > li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0 !important;
    position: static;
}
.content-block ul.cp-list-cards > li::before,
.content-block ul.cp-feature-list > li::before,
.content-block ul li[style*="background: white"]::before,
.content-block ul li[style*="background:white"]::before,
.content-block ul li[style*="border-bottom: 1px solid"]::before,
.content-block ul li[style*="border-bottom:1px solid"]::before,
.content-block div[style*="background: white"] ul > li::before,
.content-block div[style*="background:white"] ul > li::before {
    content: none;
    display: none;
}
svg.content-icon--list-marker {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    margin: 2px 0 0 !important;
    flex-shrink: 0;
}
p.sport-card-label {
    margin: 15px 0 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

svg.content-icon--sport-card {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    margin: 0 auto 15px !important;
    display: block;
}
.content-block ol { padding-left: 24px; }
.content-block ol li { padding: 8px 0; color: var(--text-mid); }
.content-block ol li::marker { color: var(--primary); font-weight: 700; }
.content-block table { width: 100%; margin: 20px 0; border-collapse: collapse; }
.content-block table td { padding: 15px; text-align: center; border: 1px solid var(--border); }

/* Обёртки таблиц из контента (inline overflow-x) */
.content-block div[style*="overflow-x"],
.content-section div[style*="overflow-x"] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    margin: 16px 0;
}
.content-block table img { display: inline-block; width: 80px; height: 80px; object-fit: contain; margin: 0 auto 10px; vertical-align: middle; }
.content-block table strong { display: block; margin-top: 10px; color: var(--text-dark); }

/* Newsletter */
.newsletter-box { max-width: 600px; margin: 0 auto; }
.newsletter-box p { font-size: var(--fs-body); margin-bottom: 24px; opacity: 0.95; }
.newsletter-form { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; }
.newsletter-form input {
    flex: 1;
    min-height: 48px;
    padding: 14px 18px;
    border: none;
    border-radius: var(--btn-radius);
    font-size: var(--fs-body);
    transition: box-shadow var(--duration-fast) var(--ease-out);
}
.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45);
}

/* Компоненты контента (п.1 — классы, inline остаётся) */
.cp-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    margin: 16px 0;
}
.cp-bonus-types {
    border-radius: 16px !important;
    margin: var(--block-gap) 0 !important;
}
.cp-bonus-types > h3 {
    margin-bottom: 20px !important;
}
.cp-info-callout {
    border-radius: 10px !important;
    margin-top: 16px !important;
}
.cp-info-callout > div {
    line-height: var(--lh-body) !important;
    font-size: var(--fs-small) !important;
}
.cp-calc-label {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
}
.cp-calc-input,
.cp-calc-select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    background: #fff;
    transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}
.cp-calc-input:focus,
.cp-calc-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
}
.cp-bet-calculator-fields > div {
    min-width: 0;
}
.cp-calc-label {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
}
.cp-calc-label .content-icon--inline {
    vertical-align: middle;
    margin-right: 4px;
}

.cp-calc-result {
    border-radius: 16px !important;
    padding: 28px 24px !important;
    color: #fff;
    box-shadow: 0 8px 28px rgba(22, 163, 74, 0.28);
}
.cp-calc-result__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3;
}
.cp-calc-result__icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    flex-shrink: 0;
    display: block;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.18));
}
.cp-calc-result__label {
    color: rgba(255, 255, 255, 0.96);
    letter-spacing: 0.01em;
}
.cp-calc-result #totalWin {
    color: #fff !important;
    font-size: clamp(36px, 5vw, 48px) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin: 8px 0 16px !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.cp-calc-result > div[style*="minmax(150px"] {
    margin-top: 4px !important;
}
.cp-calc-result > div[style*="minmax(150px"] > div {
    background: rgba(255, 255, 255, 0.16) !important;
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 14px 12px !important;
    border-radius: 12px !important;
}
.cp-calc-result > div[style*="minmax(150px"] > div > div:first-child {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 13px !important;
    font-weight: 600;
    line-height: 1.35;
}
.cp-calc-result #netProfit,
.cp-calc-result #roi,
.cp-calc-result #withBonus {
    color: #fff !important;
}
.cp-calc-result #finalWin {
    color: #fde047 !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

/* FAQ */
.faq-item {
    background: white;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}
.faq-item:hover { border-color: rgba(30, 64, 175, 0.2); }
.faq-item.active { box-shadow: var(--shadow); border-color: rgba(30, 64, 175, 0.25); }
.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-weight: 600;
    color: var(--text-dark);
    gap: 16px;
    font-size: var(--fs-body);
    line-height: var(--lh-tight);
    transition: background var(--duration-fast) var(--ease-out);
}
.faq-question svg.faq-icon,
.faq-question > svg {
    width: 56px;
    height: 56px;
    min-width: 56px;
    flex-shrink: 0;
    display: block;
    padding: 10px;
    box-sizing: border-box;
    background: linear-gradient(145deg, #eff6ff 0%, #f8fafc 100%);
    border: 1px solid rgba(30, 64, 175, 0.12);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.08);
}
.faq-question > span:last-child {
    flex-shrink: 0;
    margin-left: 8px;
    opacity: 0.55;
    font-size: 14px;
}
.section-title svg,
.section-title svg.content-icon--heading {
    flex-shrink: 0;
    filter: drop-shadow(0 3px 10px rgba(30, 64, 175, 0.18));
}
.section-title svg.content-icon--trophy,
.casinos-section .section-title svg.content-icon--heading { filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.35)); }
.casinos-section .section-title { color: var(--text-dark); }
.faq-question:hover { background: var(--bg-light); }
.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-mid);
    font-size: var(--fs-small);
    line-height: var(--lh-body);
    display: none;
}
.faq-item.active .faq-answer { display: block; }

/* ============ Микро-анимации и иконки (п.3 из плана) ============ */
.faq-question svg.faq-icon,
.faq-question > svg {
    transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}
.faq-item.active .faq-question svg.faq-icon,
.faq-item.active .faq-question > svg {
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.15);
}
.section-title svg.content-icon--heading,
h2 svg.content-icon--heading,
h3 svg.content-icon--heading {
    transition: transform var(--duration-normal) var(--ease-out), filter var(--duration-fast) var(--ease-out);
}
.page-nav-item {
    transition:
        transform var(--duration-normal) var(--ease-out),
        box-shadow var(--duration-normal) var(--ease-out),
        border-color var(--duration-fast) var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
    .faq-question svg,
    .page-nav-item,
    .casino-card,
    .btn,
    .btn-warning,
    .btn-secondary,
    .newsletter-form button {
        transition: none;
    }
}

/* ============ FOOTER ============ */
.site-footer { color: #cbd5e1; font-size: 15px; }

/* Блок ответственной игры */
.footer-rg { background: #0b1220; border-top: 3px solid var(--accent); }
.footer-rg__inner { display: flex; align-items: center; gap: 28px; padding: 22px 0; flex-wrap: wrap; }
.footer-rg__badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.rg-badge { display: inline-flex; align-items: center; justify-content: center; height: 38px; padding: 0 16px; border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; color: #e2e8f0; font-weight: 700; font-size: 13px; letter-spacing: .02em; text-decoration: none; background: rgba(255,255,255,0.04); transition: all .25s ease; white-space: nowrap; }
.rg-badge:hover { border-color: var(--accent); color: #fff; background: rgba(245,158,11,0.12); }
.rg-badge--age { background: #dc2626; border-color: #dc2626; color: #fff; min-width: 48px; font-size: 15px; border-radius: 50px; }
.rg-badge--age:hover { background: #b91c1c; border-color: #b91c1c; color: #fff; }
.footer-rg__text { margin: 0; color: #94a3b8; font-size: 13.5px; line-height: 1.65; flex: 1; min-width: 260px; }
.footer-rg__text a { color: var(--accent); text-decoration: none; font-weight: 600; }
.footer-rg__text a:hover { text-decoration: underline; }

/* Основная часть */
.footer-main { background: #131c2e; padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; }
.footer-brand { max-width: 340px; }
.footer-logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 18px; }
.footer-logo svg { width: 44px; height: 44px; }
.footer-logo-text { font-size: 22px; font-weight: 800; color: #fff; }
.footer-brand__desc { margin: 0 0 22px; color: #94a3b8; font-size: 14px; line-height: 1.75; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06); color: #cbd5e1; transition: all .25s ease; }
.footer-social a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }

.footer-column h4 { margin: 0 0 18px; font-size: 15px; font-weight: 700; color: #fff; letter-spacing: .03em; text-transform: uppercase; position: relative; padding-bottom: 12px; }
.footer-column h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px; background: var(--accent); border-radius: 2px; }
.footer-column ul { list-style: none; margin: 0; padding: 0; }
.footer-column li { margin-bottom: 2px; }
.footer-column a { color: #94a3b8; text-decoration: none; display: inline-flex; align-items: center; padding: 6px 0; font-size: 14px; transition: all .2s ease; }
.footer-column a::before { content: "›"; margin-right: 8px; color: var(--accent); opacity: 0; transform: translateX(-6px); transition: all .2s ease; }
.footer-column a:hover { color: #fff; }
.footer-column a:hover::before { opacity: 1; transform: translateX(0); }

/* Методы оплаты */
.footer-payments { display: flex; align-items: center; gap: 20px; margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; }
.footer-payments__label { font-size: 13px; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: .04em; }
.footer-payments__icons { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-payments__icons img { height: 44px; width: auto; background: #fff; border-radius: 8px; padding: 7px 12px; box-shadow: 0 2px 6px rgba(0,0,0,0.3); }

/* Нижняя юридическая панель */
.footer-bottom { background: #0b1220; padding: 28px 0; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center; margin-bottom: 18px; }
.footer-legal a { color: #cbd5e1; text-decoration: none; font-size: 13.5px; font-weight: 500; transition: color .2s ease; }
.footer-legal a:hover { color: var(--accent); }
.footer-disclaimer { max-width: 880px; margin: 0 auto 16px; text-align: center; color: #64748b; font-size: 12.5px; line-height: 1.7; }
.footer-copy { margin: 0; text-align: center; color: #64748b; font-size: 13px; }

/* ============ MOBILE RESPONSIVE ============ */
@media screen and (max-width: 768px) {
    .desktop-nav { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: #131c2e; box-shadow: -4px 0 30px rgba(0,0,0,0.5); transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1001; padding: 80px 0 30px; overflow-y: auto; }
    .desktop-nav.active { right: 0; }
    .desktop-nav > ul { flex-direction: column; gap: 0; width: 100%; }
    .desktop-nav > ul > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .desktop-nav > ul > li > a { padding: 18px 25px; font-size: 16px; display: block; border-radius: 0; }
    .desktop-nav > ul > li > a:hover { background: rgba(255,255,255,0.05); }
    .has-dropdown > a::after { float: right; }
    .dropdown { display: block; width: auto; max-width: none; min-width: 0; position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(0,0,0,0.25); border: none; border-radius: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .has-dropdown.open .dropdown { max-height: 500px; }
    .dropdown li a { padding: 12px 25px 12px 45px; font-size: 14px; border-left: none; }
    .dropdown li a:hover { padding-left: 50px; }
    .burger-menu { display: flex !important; }
    .container { padding: 0 14px; max-width: 100%; }
    header { box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important; }
    .nav-main { padding: 10px 0 !important; }
    .mobile-menu-header { display: flex !important; }
    nav { position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: #131c2e; box-shadow: -4px 0 30px rgba(0,0,0,0.5); transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1001; padding: 70px 0 30px; overflow-y: auto; }
    nav.active { right: 0; }
    nav ul { flex-direction: column; gap: 0; width: 100%; }
    nav ul li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
    nav ul li a { display: block; padding: 18px 25px; text-align: left; font-size: 16px; font-weight: 600; color: #cbd5e1; }
    nav ul li a:hover { background: rgba(255,255,255,0.05); color: var(--accent); }
    .logo-text { font-size: 16px; }
    .logo svg { width: 34px; height: 34px; }
    .burger-menu span { width: 24px; height: 2.5px; }
    
    /* Секции — компактнее на мобильных */
    .hero { padding: var(--section-space-sm) 0 calc(var(--section-space-sm) + 8px) !important; }
    .casinos-section,
    .content-section,
    .faq-section { padding: var(--section-space-sm) 0 !important; }
    .newsletter-section { padding: var(--section-space-sm) 0 !important; }
    .section-title { margin-bottom: 20px !important; }

    /* Hero */
    .hero h1 { font-size: 20px !important; line-height: 1.3; margin-bottom: 15px; }
    .hero p { font-size: 13px; line-height: 1.5; }
    .hero .container > div:first-child { width: 100% !important; max-width: 100% !important; }
    .hero .container > div:first-child > div { padding: 12px 10px !important; border-radius: 12px !important; }
    .hero h2.hero-lead,
    .hero h3 { font-size: 16px !important; margin: 20px 0 15px !important; font-weight: 700; color: var(--primary); }
    
    /* Casino Cards */
    .section-title { font-size: var(--fs-h2) !important; }
    .casino-card { margin-bottom: 15px; border-radius: 12px !important; }
    .casino-content { grid-template-columns: 1fr !important; gap: 12px !important; padding: 12px 10px !important; text-align: center; }
    .casino-logo-section { margin: 0 auto; max-width: 180px; padding: 12px !important; border-radius: 10px !important; }
    .casino-logo { max-width: 120px !important; }
    .rank-number { width: 36px; height: 36px; font-size: 16px; }
    .casino-info { text-align: center; }
    .casino-info h3 { font-size: 18px; margin-bottom: 8px !important; }
    .casino-rating { justify-content: center; font-size: 13px; }
    .casino-rating-section {
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .rating-box { padding: 16px 14px; }
    .rating-number { font-size: 30px; }
    .feature-tag { font-size: 12px; }
    .feature-tag__label { padding: 8px 12px 8px 8px; }
    .casino-badge-icon { width: 34px; min-height: 34px; }
    .casino-badge-icon svg { width: 18px !important; height: 18px !important; }
    .casino-type-text { padding: 7px 12px 7px 8px; font-size: 11px; }
    .casino-badge-icon--type { width: 36px; }
    .casino-badge-icon--bonus { width: 38px; }
    .casino-bonus .bonus-highlight { font-size: 15px; padding: 10px 12px 10px 10px; }
    .casino-actions { flex-direction: column; width: 100%; gap: 8px; }
    .casino-actions .btn, .casino-actions .btn-warning, .casino-actions .btn-secondary { width: 100%; padding: 12px 16px; font-size: 13px; border-radius: 8px !important; }
    
    /* Content Blocks */
    .content-block { padding: 15px 10px !important; margin-bottom: 12px; border-radius: 12px !important; }
    .content-block h2 { font-size: 18px !important; margin-bottom: 10px; }
    .content-block h3 { font-size: 16px !important; margin-bottom: 8px !important; }
    .content-block p { font-size: 13px; line-height: 1.5; margin-bottom: 10px !important; }
    .content-block ul, .content-block ol { font-size: 13px !important; padding-left: 20px !important; }
    
    /* Newsletter */
    .newsletter-section { padding: 36px 0 !important; }
    .newsletter-box h3 { font-size: 22px !important; }
    .newsletter-box p { font-size: 14px !important; margin-bottom: 20px !important; }
    .newsletter-form {
        flex-direction: column !important;
        align-items: stretch !important;
        max-width: 100% !important;
        gap: 10px !important;
    }
    .newsletter-form input,
    .newsletter-form button {
        width: 100% !important;
        border-radius: 12px !important;
        padding: 14px 16px !important;
        font-size: 15px !important;
    }

    /* Section titles & headings with icons */
    .section-title,
    .faq-section .section-title,
    h2[style*="display: flex"],
    h3[style*="display: flex"],
    .content-block h3[style*="display: flex"] {
        font-size: 18px !important;
        gap: 10px !important;
        line-height: 1.35 !important;
        text-align: center;
        justify-content: center !important;
    }

    /* Data tables: горизонтальный скролл вместо «ломаной» вертикали */
    .content-block div[style*="overflow-x"],
    .content-section div[style*="overflow-x"] {
        margin-left: -4px;
        margin-right: -4px;
    }
    .content-block div[style*="overflow-x"] table,
    .content-section div[style*="overflow-x"] table {
        min-width: 520px;
        font-size: 13px;
        display: table !important;
        width: 100%;
    }
    .content-block div[style*="overflow-x"] table thead,
    .content-section div[style*="overflow-x"] table thead {
        display: table-header-group !important;
    }
    .content-block div[style*="overflow-x"] table tbody,
    .content-section div[style*="overflow-x"] table tbody {
        display: table-row-group !important;
    }
    .content-block div[style*="overflow-x"] table tr,
    .content-section div[style*="overflow-x"] table tr {
        display: table-row !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        border: none !important;
    }
    .content-block div[style*="overflow-x"] table th,
    .content-block div[style*="overflow-x"] table td,
    .content-section div[style*="overflow-x"] table th,
    .content-section div[style*="overflow-x"] table td {
        display: table-cell !important;
        width: auto !important;
        padding: 10px 8px !important;
        font-size: 12px !important;
        white-space: nowrap;
    }
    .content-block div[style*="overflow-x"] table td:first-child,
    .content-section div[style*="overflow-x"] table td:first-child {
        white-space: normal;
        min-width: 110px;
    }

    /* Простые таблицы без обёртки — компактные карточки по строке */
    .content-block > table,
    .content-section > table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Карточные сетки контента — одна колонка (избегаем 2 узких колонки с рваными словами) */
    [style*="grid-template-columns: repeat(auto-fit, minmax(200px"],
    [style*="grid-template-columns: repeat(auto-fit, minmax(250px"],
    [style*="grid-template-columns: repeat(auto-fit, minmax(260px"],
    [style*="grid-template-columns: repeat(auto-fit, minmax(280px"],
    [style*="grid-template-columns: repeat(auto-fit, minmax(300px"] {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    /* Карточки внутри сеток (Tipuri de Bonusuri и т.п.) */
    [style*="minmax(260px"] > div,
    [style*="minmax(250px"] > div,
    [style*="minmax(280px"] > div,
    div[style*="background: white"][style*="text-align: center"][style*="padding: 30px"] {
        padding: 20px 16px !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
        hyphens: manual !important;
    }
    [style*="minmax(260px"] > div h3,
    [style*="minmax(260px"] > div h4,
    [style*="minmax(260px"] > div strong,
    [style*="minmax(250px"] > div h3,
    [style*="minmax(250px"] > div h4,
    [style*="minmax(250px"] > div strong {
        font-size: 17px !important;
        line-height: 1.35 !important;
    }
    [style*="minmax(260px"] > div *,
    [style*="minmax(250px"] > div *,
    [style*="minmax(280px"] > div * {
        overflow-wrap: normal !important;
        word-break: normal !important;
    }
    [style*="minmax(260px"] > div svg,
    [style*="minmax(250px"] > div svg {
        margin-bottom: 14px !important;
        width: 52px !important;
        height: 52px !important;
    }

    /* Секция бонусов (голубой блок) */
    div[style*="f0f9ff"][style*="padding: 30px"],
    div[style*="e0f2fe"][style*="padding: 30px"] {
        padding: 18px 14px !important;
        margin: 20px 0 !important;
        border-radius: 14px !important;
    }
    div[style*="f0f9ff"] h3,
    div[style*="e0f2fe"] h3 {
        font-size: 20px !important;
        margin-bottom: 18px !important;
        line-height: 1.3 !important;
    }

    /* Калькулятор: компактный блок результатов */
    .cp-calc-result__head {
        gap: 10px;
        font-size: 15px;
        margin-bottom: 10px;
    }
    .cp-calc-result__icon {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px;
    }
    #totalWin {
        font-size: clamp(28px, 9vw, 40px) !important;
        white-space: nowrap !important;
        line-height: 1.15 !important;
        letter-spacing: -0.02em;
        margin: 6px 0 !important;
    }
    div[style*="4ade80"],
    div[style*="22c55e"] {
        padding: 16px 12px !important;
        border-radius: 12px !important;
        margin-top: 12px !important;
    }
    div[style*="4ade80"] [style*="font-size: 48px"],
    div[style*="22c55e"] [style*="font-size: 48px"] {
        font-size: clamp(28px, 9vw, 40px) !important;
        white-space: nowrap !important;
    }
    div[style*="4ade80"] [style*="minmax(150px"],
    div[style*="22c55e"] [style*="minmax(150px"] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        margin-top: 12px !important;
    }
    div[style*="4ade80"] [style*="rgba(255,255,255,0.2)"],
    div[style*="22c55e"] [style*="rgba(255,255,255,0.2)"] {
        padding: 10px 8px !important;
        border-radius: 8px !important;
    }
    div[style*="4ade80"] [style*="font-size: 13px"],
    div[style*="22c55e"] [style*="font-size: 13px"] {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }
    div[style*="4ade80"] [style*="font-size: 22px"],
    div[style*="22c55e"] [style*="font-size: 22px"] {
        font-size: 16px !important;
        margin-top: 2px !important;
        white-space: nowrap !important;
    }

    /* Подсказка «Cum funcționează» */
    div[style*="eff6ff"][style*="border-left"],
    div[style*="border-left: 4px solid var(--accent)"] {
        padding: 14px 16px !important;
        margin-top: 14px !important;
        border-radius: 10px !important;
    }
    div[style*="eff6ff"][style*="border-left"] > div,
    div[style*="border-left: 4px solid var(--accent)"] > div,
    div[style*="eff6ff"] [style*="line-height: 2"] {
        font-size: 13px !important;
        line-height: 1.55 !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
    }

    /* Обёртка калькулятора */
    .content-block div:has(#betAmount),
    .content-section div:has(#betAmount),
    .hero div:has(#betAmount) {
        padding: 18px 14px !important;
        border-radius: 14px !important;
    }
    .content-block div:has(#totalWin),
    .content-section div:has(#totalWin) {
        max-width: 100%;
    }

    .hero [style*="padding: 50px"] > div,
    .hero [style*="padding: 50px"] {
        padding: 18px 14px !important;
    }

    .hero [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* Page Navigation */
    .page-nav-block__title { font-size: 22px !important; }
    .page-nav-block__lead { font-size: 14px !important; }
    .page-nav-grid,
    .page-nav-block__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .page-nav-item { padding: 12px 10px !important; gap: 10px !important; border-radius: 12px !important; }
    .page-nav-icon { width: 44px !important; height: 44px !important; border-radius: 11px !important; }
    .page-nav-icon svg { width: 24px !important; height: 24px !important; }
    .page-nav-title { font-size: 13px !important; }
    .page-nav-desc { font-size: 11px !important; }
    
    /* FAQ */
    .faq-section { padding: 36px 0 !important; }
    .faq-item { padding: 0 !important; margin-bottom: 8px !important; border-radius: 10px !important; }
    .faq-question {
        font-size: 14px !important;
        gap: 12px !important;
        padding: 14px 12px !important;
        align-items: flex-start !important;
    }
    .faq-question svg.faq-icon,
    .faq-question > svg {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        padding: 8px !important;
        border-radius: 10px !important;
    }
    .faq-answer {
        font-size: 13px !important;
        padding: 0 14px 16px !important;
        line-height: 1.55 !important;
    }
    
    /* Tables */
    table { font-size: 11px !important; }
    table th, table td { padding: 10px 8px !important; font-size: 11px !important; }
    
    /* Footer */
    .footer-rg__inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 0; }
    .footer-rg__badges { justify-content: center; width: 100%; gap: 8px; }
    .footer-rg__text { text-align: center; min-width: 0; font-size: 12.5px; }
    .footer-main { padding: 36px 0 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
    .footer-brand { grid-column: 1 / -1; max-width: 100%; text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-column h4 { font-size: 14px !important; margin-bottom: 12px !important; }
    .footer-column h4::after { left: 0; }
    .footer-column a { font-size: 13.5px; }
    .footer-payments { flex-direction: column; align-items: center; text-align: center; margin-top: 32px; padding-top: 24px; }
    .footer-payments__icons { justify-content: center; }
    .footer-bottom { padding: 22px 0; }
    .footer-legal { gap: 8px 16px; }
    .footer-legal a { font-size: 12.5px; }
    .footer-disclaimer { font-size: 11.5px; }
    .footer-copy { font-size: 12px; }
    
    /* Buttons */
    .btn, .btn-warning, .btn-secondary { padding: 10px 16px; font-size: 13px; }
    
    /* SVG */
    svg { max-width: 100%; height: auto; }

    /* Карточки контента (svg + жирный заголовок) */
    .content-block div[style*="border-radius: 12px"][style*="padding: 20px"],
    .content-block div[style*="border-radius: 15px"][style*="padding: 20px"],
    .content-section div[style*="border-radius: 12px"][style*="padding: 20px"] {
        padding: 16px 14px !important;
    }
    .content-block div[style*="display: flex"][style*="gap: 15px"] {
        flex-wrap: wrap;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    .content-block span[style*="font-weight: 700"] {
        font-size: 15px !important;
        line-height: 1.35;
    }
}

@media screen and (max-width: 480px) {
    .page-nav-grid,
    .page-nav-block__grid { grid-template-columns: 1fr !important; }

    /* Калькулятор: метрики в одну колонку на очень узких экранах */
    div[style*="4ade80"] [style*="minmax(150px"],
    div[style*="22c55e"] [style*="minmax(150px"] {
        grid-template-columns: 1fr 1fr !important;
    }

    .content-block div[style*="overflow-x"] table,
    .content-section div[style*="overflow-x"] table {
        min-width: 460px;
    }
}

/* ============================================
   CASINO REVIEW PAGE STYLES
   ============================================ */

/* Casino Review Hero */
.casino-review-hero {
    background: var(--brand-gradient);
    padding: 40px 0;
    color: white;
}

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

.casino-logo-box {
    text-align: center;
}

.casino-logo-box img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.3);
    object-fit: cover;
    margin: 0 auto 12px;
}

.casino-main-info h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.bonus-box {
    background: rgba(255,255,255,0.15);
    padding: 18px 22px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin-bottom: 18px;
}

.bonus-main {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent);
}

.bonus-extra {
    font-size: 16px;
    opacity: 0.95;
    margin-top: 4px;
}

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

.feature-badge {
    background: rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feature-badge svg {
    flex-shrink: 0;
}

/* Rating Box in Casino Review Hero */
.casino-review-hero .rating-box {
    text-align: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.casino-review-hero .rating-circle {
    background: var(--primary);
    border: 3px solid var(--accent);
    border-radius: 12px;
    padding: 15px 25px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 12px;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.casino-review-hero .rating-number {
    font-size: 30px;
    font-weight: 800;
    color: white;
    margin: 0;
}

.casino-review-hero .rating-stars {
    font-size: 14px;
    color: var(--accent);
}

.btn-play {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
}

.btn-play:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.accepted-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
}

/* Payments Section */
.payments-section {
    background: white;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.payments-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.payment-icon {
    width: 65px;
    height: 42px;
    object-fit: contain;
    background: var(--bg-light);
    padding: 6px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

/* Info Table */
.info-section {
    background: white;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.info-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-row {
    display: flex;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    width: 35%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.info-label svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.info-value {
    width: 65%;
    color: var(--text-gray);
    font-size: 14px;
}

.info-value strong {
    color: var(--success);
}

/* Page Navigation for Reviews */
.page-nav-section {
    background: white;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.page-nav-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.page-nav-section .page-nav-grid {
    display: grid;
    gap: 12px;
}

/* 3 колонки только если плиток не ровно 6 (для 6 — общая схема 4+2 ниже) */
.page-nav-section .page-nav-grid:not(:has(> .page-nav-item:nth-child(6))),
.page-nav-section .page-nav-grid:has(> .page-nav-item:nth-child(7)) {
    grid-template-columns: repeat(3, 1fr);
}

.page-nav-section .page-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.page-nav-section .page-nav-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-icon.blue { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.nav-icon.green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.nav-icon.orange { background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%); }
.nav-icon.purple { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.nav-icon.red { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.nav-icon.teal { background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%); }

.nav-text {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-dark);
}

/* Pros & Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-box, .cons-box {
    padding: 20px;
    border-radius: 12px;
}

.pros-box {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 1px solid #86efac;
}

.cons-box {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #fca5a5;
}

.pros-box h4, .cons-box h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.pros-box ul, .cons-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-box li, .cons-box li {
    padding: 8px 0 8px 28px;
    font-size: 14px;
    position: relative;
    line-height: 1.5;
}

.pros-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #16a34a;
    font-weight: bold;
    font-size: 16px;
}

.cons-box li::before {
    content: "✗";
    position: absolute;
    left: 0;
    top: 8px;
    color: #dc2626;
    font-weight: bold;
    font-size: 16px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
}

.breadcrumbs ul {
    display: flex;
    gap: 10px;
    list-style: none;
    font-size: 14px;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: var(--text-gray);
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Casino Review Mobile */
@media screen and (max-width: 768px) {
    .casino-review-hero {
        padding: 25px 0;
    }
    
    .casino-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .casino-logo-box img {
        width: 100px;
        height: 100px;
    }
    
    .casino-main-info h1 {
        font-size: 22px;
    }
    
    .bonus-main {
        font-size: 20px;
    }
    
    .feature-badges {
        justify-content: center;
    }
    
    .casino-review-hero .rating-circle {
        padding: 10px 20px;
        border-radius: 10px;
        border-width: 2px;
        margin-bottom: 10px;
    }
    
    .casino-review-hero .rating-number {
        font-size: 24px;
    }
    
    .casino-review-hero .rating-stars {
        font-size: 12px;
    }
    
    .btn-play {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .info-row {
        flex-direction: column;
        gap: 6px;
    }
    
    .info-label, .info-value {
        width: 100%;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
    
    .page-nav-section .page-nav-grid:not(:has(> .page-nav-item:nth-child(6))),
    .page-nav-section .page-nav-grid:has(> .page-nav-item:nth-child(7)) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .page-nav-section .page-nav-grid:not(:has(> .page-nav-item:nth-child(6))),
    .page-nav-section .page-nav-grid:has(> .page-nav-item:nth-child(7)) {
        grid-template-columns: 1fr;
    }
    .footer-grid { grid-template-columns: 1fr; gap: 4px; text-align: center; }
    .footer-column h4 { padding-bottom: 0; }
    .footer-column h4::after { display: none; }
    .footer-column ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 18px; margin-bottom: 8px; }
    .footer-column a::before { display: none; }
}

/* Author Byline */
.article-meta {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.author-name a {
    color: var(--primary);
    text-decoration: none;
}

.author-name a:hover {
    text-decoration: underline;
}

.article-date {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
}

body.dark-theme .article-meta {
    background: #374151;
}

/* About Page */
.about-hero {
    background: var(--brand-gradient);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.about-section {
    padding: 50px 0;
}

.about-section:nth-child(even) {
    background: white;
}

.about-block {
    max-width: 800px;
    margin: 0 auto;
}

.about-block h2 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.about-block p {
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 16px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-card .author-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}

.team-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.team-card .role {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.team-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

body.dark-theme .team-card {
    background: #374151;
    border-color: #4b5563;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table th {
    background: var(--primary);
    color: white;
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
}

.comparison-table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.comparison-table tr:nth-child(even) td {
    background: var(--bg-light);
}

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

body.dark-theme .comparison-table th {
    background: #4b5563;
}

body.dark-theme .comparison-table td {
    border-color: #4b5563;
}

body.dark-theme .comparison-table tr:nth-child(even) td {
    background: #2d3748;
}

/* Editorial Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.process-step {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border);
}

.process-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}

.process-step h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

body.dark-theme .process-step {
    background: #374151;
    border-color: #4b5563;
}

@media screen and (max-width: 768px) {
    .about-hero h1 { font-size: 26px; }
    .about-hero p { font-size: 16px; }
    .team-grid { grid-template-columns: 1fr; }
    .comparison-table { font-size: 13px; }
    .comparison-table th, .comparison-table td { padding: 10px 12px; }
}

