/**
 * Daddy Casino Official - Styles
 * Изумрудно-зелёная тема
 */

:root {
    --bg-base: #0a0f0d;
    --bg-surface: #111916;
    --bg-elevated: #1a2520;
    --bg-hover: #243029;
    --text-white: #f0fdf4;
    --text-gray: #9ca3af;
    --text-dim: #6b7280;
    --accent: #059669;
    --accent-dark: #047857;
    --accent-light: #10b981;
    --gold: #fbbf24;
    --success: #22c55e;
    --border: #2d3b35;
    --radius: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--bg-base);
    -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

a { color: var(--accent-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; }

code {
    padding: 4px 10px;
    background: var(--bg-elevated);
    border-radius: var(--radius);
    color: var(--gold);
    font-family: monospace;
    font-size: 14px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn svg { width: 18px; height: 18px; }

.btn--primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(5,150,105,0.4); color: #fff; }

.btn--accent {
    background: linear-gradient(135deg, var(--gold) 0%, #d97706 100%);
    color: #000;
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(251,191,36,0.4); color: #000; }

.btn--ghost {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent-light);
}
.btn--ghost:hover { background: var(--accent); color: #fff; }

.btn--success { background: var(--success); color: #fff; }

.btn--lg { padding: 16px 32px; font-size: 17px; }
.btn--xl { padding: 20px 40px; font-size: 18px; }
.btn--sm { padding: 8px 16px; font-size: 14px; }
.btn--full { width: 100%; }

/* ==========================================================================
   HEADER
   ========================================================================== */

.top-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,15,13,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.top-bar__inner {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-weight: 700;
    font-size: 20px;
}
.brand:hover { color: var(--text-white); }
.brand__icon { width: 42px; height: 42px; }

.nav-menu { flex: 1; }
.nav-menu__list { display: flex; gap: 6px; list-style: none; }
.nav-menu__list a {
    display: block;
    padding: 10px 16px;
    color: var(--text-gray);
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
}
.nav-menu__list a:hover, .nav-menu__list a.is-active {
    color: var(--text-white);
    background: var(--bg-surface);
}

.top-bar__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius);
}
.top-bar__btn svg { width: 16px; height: 16px; }
.top-bar__btn:hover { color: #fff; transform: translateY(-1px); }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}
.burger span { width: 24px; height: 2px; background: var(--text-white); transition: var(--transition); }

/* ==========================================================================
   INTRO SECTION
   ========================================================================== */

.intro { padding: 60px 0 80px; }

.intro__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.intro__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(5,150,105,0.15);
    color: var(--accent-light);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
}
.intro__label svg { width: 16px; height: 16px; }

.intro__title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
}

.intro__subtitle {
    font-size: 22px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.intro__text {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 28px;
    max-width: 540px;
}

.intro__metrics {
    display: flex;
    gap: 36px;
    margin-bottom: 28px;
}

.metric { text-align: center; }
.metric strong { display: block; font-size: 26px; color: var(--text-white); }
.metric span { font-size: 13px; color: var(--text-dim); }

.intro__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Promo Box */
.promo-box {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
    position: relative;
    overflow: hidden;
}
.promo-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(5,150,105,0.12) 0%, transparent 50%);
    animation: spin 25s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.promo-box__badge {
    position: relative;
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 16px;
}

.promo-box__value {
    position: relative;
    margin-bottom: 8px;
}
.promo-box__value .big {
    display: block;
    font-size: 52px;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}
.promo-box__value .small {
    font-size: 20px;
    color: var(--text-gray);
}

.promo-box__extra {
    position: relative;
    display: inline-block;
    padding: 10px 16px;
    background: var(--bg-elevated);
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.promo-box__list {
    position: relative;
    list-style: none;
    margin-bottom: 20px;
}
.promo-box__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-gray);
}
.promo-box__list svg { width: 16px; height: 16px; color: var(--success); }

/* ==========================================================================
   STATUS WIDGET
   ========================================================================== */

.status-widget { padding: 32px 0; }

.status-widget__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.status-widget__left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-dim);
}
.status-dot.is-online {
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,94,0.2); }
    50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.status-widget__text { font-weight: 600; color: var(--success); }

.status-widget__center {
    display: flex;
    gap: 6px;
    font-size: 14px;
    color: var(--text-dim);
}

/* ==========================================================================
   MIRROR INFO
   ========================================================================== */

.mirror-info { padding: 60px 0; }

.mirror-info__box {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: start;
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(5,150,105,0.08) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.mirror-info__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-lg);
}
.mirror-info__icon svg { width: 32px; height: 32px; color: #fff; }

.mirror-info__content h2 { font-size: 28px; margin-bottom: 12px; }
.mirror-info__content p { color: var(--text-gray); line-height: 1.7; }

.mirror-info__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mf {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}
.mf svg { width: 18px; height: 18px; color: var(--gold); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */

section { padding: 70px 0; }

.section-head {
    text-align: center;
    margin-bottom: 40px;
}
.section-head h2 { font-size: 32px; margin-bottom: 10px; }
.section-head p { font-size: 17px; color: var(--text-gray); }

.section-foot { text-align: center; margin-top: 36px; }

.text-accent { color: var(--accent-light); }

/* About Platform */
.about-platform { background: var(--bg-surface); }

.about-platform__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-platform__text p {
    margin-bottom: 18px;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
}
.about-platform__text strong { color: var(--text-white); }

.data-table { width: 100%; border-collapse: collapse; }
.data-table td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table td:first-child { color: var(--text-dim); font-size: 14px; }
.data-table td:last-child { font-weight: 600; text-align: right; }

/* Advantages */
.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.adv-card {
    padding: 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.adv-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.adv-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius);
    margin-bottom: 18px;
}
.adv-card__icon svg { width: 26px; height: 26px; color: #fff; }

.adv-card h3 { font-size: 18px; margin-bottom: 10px; }
.adv-card p { font-size: 14px; color: var(--text-gray); }

/* Bonuses */
.bonuses { background: var(--bg-surface); }

.bonuses__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bonus-card {
    position: relative;
    padding: 24px;
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.bonus-card.is-featured { border-color: var(--gold); }

.bonus-card__tag {
    position: absolute;
    top: 14px;
    right: -6px;
    padding: 5px 12px;
    background: var(--gold);
    color: #000;
    font-size: 11px;
    font-weight: 700;
}

.bonus-card h3 { font-size: 15px; margin-bottom: 12px; }

.bonus-card__value {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 10px;
}

.bonus-card p { font-size: 13px; color: var(--text-gray); margin-bottom: 14px; }

.bonus-card__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-dim);
}
.bonus-card__meta code { font-size: 12px; }

/* How To */
.how-to__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.step-card {
    padding: 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.step-card__num {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
}

.step-card h3 { font-size: 16px; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-gray); }
.step-card code { font-size: 12px; }

/* Providers */
.providers { background: var(--bg-surface); }

.providers__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.provider-chip {
    padding: 10px 18px;
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
}

/* FAQ */
.faq__list { max-width: 800px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
}
.faq-item__q svg { width: 18px; height: 18px; color: var(--text-dim); transition: var(--transition); }
.faq-item.is-open .faq-item__q svg { transform: rotate(180deg); }

.faq-item__a { display: none; padding-bottom: 18px; }
.faq-item.is-open .faq-item__a { display: block; }
.faq-item__a p { color: var(--text-gray); line-height: 1.7; }

/* Final CTA */
.final-cta { padding: 50px 0; }
.final-cta.compact { padding: 40px 0; }

.final-cta__box {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-elevated) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}
.final-cta__box h2 { font-size: 28px; margin-bottom: 12px; }
.final-cta__box p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   PAGE TOP
   ========================================================================== */

.page-top {
    padding: 36px 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-dim);
}
.breadcrumb a { color: var(--text-gray); }
.breadcrumb span { color: var(--text-dim); }

.page-top h1 { font-size: 32px; margin-bottom: 6px; }
.page-top > .wrap > p { color: var(--text-gray); }

/* Mirror Main */
.mirror-main { padding: 50px 0; }

.mirror-main__card {
    text-align: center;
    padding: 44px;
    background: var(--bg-surface);
    border: 2px solid var(--success);
    border-radius: var(--radius-xl);
}

.mirror-main__status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

.mirror-main__card h2 { font-size: 26px; margin-bottom: 14px; }
.mirror-main__card > p { color: var(--text-gray); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

.mirror-main__badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.mirror-main__badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-dim);
}
.mirror-main__badges svg { width: 14px; height: 14px; }

/* Mirror About */
.mirror-about { padding: 50px 0; background: var(--bg-surface); }
.mirror-about h2 { font-size: 26px; margin-bottom: 14px; }
.mirror-about > .wrap > p { color: var(--text-gray); margin-bottom: 28px; max-width: 700px; }

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-box {
    padding: 22px;
    background: var(--bg-base);
    border-radius: var(--radius-lg);
}
.feature-box h3 { font-size: 17px; margin-bottom: 8px; }
.feature-box p { font-size: 14px; color: var(--text-gray); }

/* Main Promo */
.main-promo { padding: 50px 0; }

.main-promo__card {
    text-align: center;
    padding: 44px;
    background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(251,191,36,0.08) 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-xl);
}

.main-promo__badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 18px;
}

.main-promo__card h2 { font-size: 26px; margin-bottom: 16px; }

.main-promo__value {
    margin-bottom: 10px;
}
.main-promo__value span {
    font-size: 64px;
    font-weight: 800;
    color: var(--accent-light);
}

.main-promo__extra {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 24px;
}

.main-promo__terms {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 24px;
    list-style: none;
    color: var(--text-gray);
}

.promo-code-field {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: var(--bg-base);
    border-radius: var(--radius);
    margin-bottom: 24px;
}
.promo-code-field code { font-size: 22px; font-weight: 700; }
.promo-code-field .copy-btn {
    padding: 8px 14px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}

/* All Promos */
.all-promos { padding: 50px 0; background: var(--bg-surface); }
.all-promos h2 { font-size: 26px; margin-bottom: 28px; }

/* Codes Section */
.codes-section { padding: 50px 0; }
.codes-section h2 { font-size: 26px; margin-bottom: 22px; }

.codes-table-wrap { overflow-x: auto; }

.codes-table { width: 100%; border-collapse: collapse; }
.codes-table th, .codes-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.codes-table th { font-weight: 600; color: var(--text-dim); font-size: 13px; }

/* App Section */
.app-section { padding: 50px 0; }

.app-card {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    padding: 40px;
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
}

.app-card__info h2 { font-size: 26px; margin-bottom: 20px; }

.app-card__features {
    list-style: none;
    margin-bottom: 24px;
}
.app-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
}
.app-card__features svg { width: 18px; height: 18px; color: var(--success); }

.app-card__reqs h3 { font-size: 18px; margin-bottom: 16px; }

.req-item {
    padding: 14px;
    background: var(--bg-base);
    border-radius: var(--radius);
    margin-bottom: 10px;
}
.req-item strong { display: block; margin-bottom: 4px; }
.req-item span { font-size: 13px; color: var(--text-dim); }

/* Install Section */
.install-section { padding: 50px 0; background: var(--bg-surface); }
.install-section h2 { font-size: 22px; margin-bottom: 20px; }

.install-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.install-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--bg-base);
    border-radius: var(--radius);
}
.install-step span {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    border-radius: 50%;
    flex-shrink: 0;
}
.install-step p { color: var(--text-gray); font-size: 14px; }

/* Rating Block */
.rating-block { padding: 50px 0; }

.rating-card {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 36px;
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
}

.rating-card__score {
    text-align: center;
    padding-right: 40px;
    border-right: 1px solid var(--border);
}
.rating-card__score .big {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.rating-card__score .stars { font-size: 22px; color: var(--gold); margin: 6px 0; }
.rating-card__score .count { font-size: 13px; color: var(--text-dim); }

.rating-card__text h2 { font-size: 26px; margin-bottom: 6px; }
.rating-card__text p { color: var(--text-gray); }

/* Reviews Section */
.reviews-section { padding: 50px 0; background: var(--bg-surface); }
.reviews-section h2 { font-size: 26px; margin-bottom: 24px; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.review-item {
    padding: 22px;
    background: var(--bg-base);
    border-radius: var(--radius-lg);
}

.review-item__head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}
.review-item__head span:first-child { font-weight: 600; }
.review-item__head span:last-child { color: var(--text-dim); }

.review-item__stars { color: var(--gold); margin-bottom: 10px; }

.review-item p { font-size: 14px; color: var(--text-gray); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.bottom-bar {
    padding: 50px 0 24px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.bottom-bar__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 36px;
    margin-bottom: 36px;
}

.bottom-bar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 14px;
}
.bottom-bar__logo svg { width: 36px; height: 36px; }
.bottom-bar__about p { font-size: 14px; color: var(--text-dim); }

.bottom-bar__nav strong,
.bottom-bar__info strong,
.bottom-bar__pay strong {
    display: block;
    font-size: 14px;
    margin-bottom: 14px;
    color: var(--text-gray);
}

.bottom-bar__nav ul,
.bottom-bar__info ul { list-style: none; }

.bottom-bar__nav li,
.bottom-bar__info li { padding: 5px 0; font-size: 14px; }

.bottom-bar__nav a { color: var(--text-dim); }
.bottom-bar__nav a:hover { color: var(--text-white); }

.bottom-bar__info li { color: var(--text-dim); }

.pay-list { display: flex; flex-wrap: wrap; gap: 6px; }
.pay-list span {
    padding: 5px 10px;
    background: var(--bg-base);
    border-radius: var(--radius);
    font-size: 12px;
    color: var(--text-gray);
}

.bottom-bar__warn {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--bg-base);
    border-radius: var(--radius);
    margin-bottom: 20px;
}
.bottom-bar__warn svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--gold); }
.bottom-bar__warn p { font-size: 12px; color: var(--text-dim); line-height: 1.5; }

.bottom-bar__copy {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.bottom-bar__copy p { font-size: 12px; color: var(--text-dim); }

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
}
.error-page__code {
    font-size: 100px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 14px;
}
.error-page h1 { font-size: 26px; margin-bottom: 10px; }
.error-page p { color: var(--text-gray); margin-bottom: 24px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .intro__grid { grid-template-columns: 1fr; }
    .intro__aside { max-width: 380px; }
    .about-platform__layout { grid-template-columns: 1fr; }
    .mirror-info__box { grid-template-columns: 1fr; }
    .advantages__grid { grid-template-columns: repeat(2, 1fr); }
    .bonuses__grid { grid-template-columns: repeat(2, 1fr); }
    .how-to__steps { grid-template-columns: repeat(3, 1fr); }
    .bottom-bar__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-surface);
        border-bottom: 1px solid var(--border);
        padding: 16px;
    }
    .nav-menu.is-open { display: block; }
    .nav-menu__list { flex-direction: column; }
    .burger { display: flex; }
    
    .intro__title { font-size: 34px; }
    .intro__subtitle { font-size: 18px; }
    .intro__metrics { gap: 24px; }
    
    .advantages__grid,
    .bonuses__grid,
    .features-row,
    .reviews-grid { grid-template-columns: 1fr; }
    
    .how-to__steps { grid-template-columns: 1fr; }
    
    .section-head h2 { font-size: 26px; }
    
    .status-widget__card { flex-direction: column; text-align: center; }
    
    .app-card { grid-template-columns: 1fr; }
    
    .rating-card { flex-direction: column; text-align: center; }
    .rating-card__score { padding-right: 0; padding-bottom: 20px; border-right: none; border-bottom: 1px solid var(--border); }
    
    .bottom-bar__grid { grid-template-columns: 1fr; gap: 28px; }
    
    .main-promo__terms { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
    .wrap { padding: 0 16px; }
    section { padding: 50px 0; }
    
    .intro__title { font-size: 28px; }
    .intro__btns { flex-direction: column; }
    .intro__btns .btn { width: 100%; }
    
    .promo-box { padding: 22px; }
    .promo-box__value .big { font-size: 42px; }
    
    .final-cta__box { padding: 36px 22px; }
    .final-cta__box h2 { font-size: 22px; }
    
    .main-promo__value span { font-size: 48px; }
}

