/* ============================================
   CSS — Водка Казино (vodka-casino-online.top)
   Тема: Алкогольный гламур
   Цвета: Золото, бордовый, янтарь, хрусталь
   ============================================ */

/* ===== IMPORT ШРИФТОВ ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,800;0,900;1,400;1,700&display=swap');

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
    --bg-primary: #0f0a0a;
    --bg-secondary: #1a1210;
    --bg-card: #241815;
    --bg-card-hover: #32201b;
    --accent: #ffb800;
    --accent-dark: #d49a00;
    --accent-light: #ffd54f;
    --cta-red: #d42020;
    --cta-red-hover: #e84040;
    --text-primary: #f5f0eb;
    --text-secondary: #b8a99c;
    --text-muted: #7a6b5e;
    --border: #3a2a1f;
    --gold: #ffd700;
    --glass: rgba(255, 255, 255, 0.05);
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; height: auto; display: block; }

/* ===== GOLD LINE (фирменный элемент) ===== */
.gold-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark), var(--accent));
    margin: 8px auto 24px;
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--cta-red);
    color: #fff;
}

.btn-primary:hover {
    background: var(--cta-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 32, 32, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: #0f0a0a;
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--accent);
    color: #0f0a0a;
    font-weight: 800;
}

.btn-gold:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 184, 0, 0.3);
}

.btn-reg {
    background: var(--cta-red);
    color: #fff;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 24px;
    font-size: 13px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-reg:hover {
    background: var(--cta-red-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 32, 32, 0.3);
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
}

.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo img { height: 50px; width: auto; }

.nav__list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav__list a {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav__list a:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

.nav__list a.active {
    color: var(--accent);
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
}

.header__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ===== HERO ===== */
.hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero__content {
    flex: 1;
}

.hero__badge {
    display: inline-block;
    padding: 4px 16px;
    background: var(--accent);
    color: #0f0a0a;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}

.hero h1 .highlight {
    color: var(--accent);
    font-style: italic;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero__subtitle strong {
    color: var(--accent-light);
}

.hero__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero__image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 184, 0, 0.1);
}

.hero__image img {
    width: 100%;
    height: auto;
}

/* ===== ADVANTAGES ===== */
.advantages {
    padding: 40px 24px 0;
}

.advantages__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.advantage-card__icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.advantage-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    color: var(--accent-light);
    margin-bottom: 6px;
}

.advantage-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

.section-title .highlight {
    color: var(--accent);
    font-style: italic;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 32px;
}

/* ===== GAMES GRID ===== */
.games-grid {
    padding: 48px 24px 0;
}

.games-grid__items {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.game-card {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: all 0.3s ease;
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.game-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(255, 184, 0, 0.1);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== MIRROR BANNER ===== */
.mirror-banner {
    padding: 40px 24px;
}

.mirror-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 1px solid var(--accent);
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.mirror-banner__content {
    flex: 1;
}

.mirror-banner__content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.mirror-banner__content h2 .highlight {
    color: var(--accent);
}

.mirror-banner__content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.mirror-banner__content p strong {
    color: var(--accent-light);
}

.mirror-banner__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.mirror-banner__status .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.mirror-banner__image {
    flex: 0 0 280px;
    border-radius: 12px;
    overflow: hidden;
}

.mirror-banner__image img {
    width: 100%;
    height: auto;
}

/* ===== PAYMENTS PREVIEW ===== */
.payments-preview {
    padding: 40px 24px;
}

.payments-preview__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.payments-preview__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.payments-preview__item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.payments-preview__item .icon {
    font-size: 28px;
    display: block;
    margin-bottom: 6px;
}

.payments-preview__item .label {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ===== FAQ ===== */
.faq-section {
    padding: 48px 24px;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', Georgia, serif;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; color: var(--accent); }
.faq-item[open] summary::after { content: '−'; }

.faq-item p,
.faq-item div {
    padding: 0 20px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.faq-item div strong {
    color: var(--accent-light);
}

/* ===== EEAT BLOCK ===== */
.eeat-block {
    padding: 0 24px 32px;
}

.eeat-block__inner {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.eeat-block__avatars {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.eeat-block__avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.eeat-block__info {
    flex: 1;
}

.eeat-block__author {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.eeat-block__author strong {
    color: var(--text-primary);
}

.eeat-block__reviewer {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.eeat-block__reviewer strong {
    color: var(--text-primary);
}

.eeat-block__date {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 40px 24px;
    margin-top: 48px;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__logo img {
    height: 40px;
    width: auto;
}

.footer__brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.footer__brand .highlight {
    color: var(--accent);
}

.footer__nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer__nav a {
    color: var(--text-muted);
    font-size: 13px;
    transition: color 0.2s;
}

.footer__nav a:hover {
    color: var(--accent-light);
}

.footer__legal {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
}

.footer__legal p {
    margin: 4px 0;
}

.footer__legal .highlight {
    color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero__buttons {
        justify-content: center;
    }
    .hero h1 { font-size: 36px; }
    .advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .games-grid__items {
        grid-template-columns: repeat(4, 1fr);
    }
    .payments-preview__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .mirror-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
    .mirror-banner__image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .nav__list {
        display: none;
        flex-direction: column;
        background: var(--bg-secondary);
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        padding: 20px;
        gap: 10px;
        border-bottom: 1px solid var(--border);
    }
    .nav__list.open { display: flex; }
    .nav__toggle { display: block; }
    .header__inner {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 0;
    }
    .logo img { height: 40px; }
    .games-grid__items {
        grid-template-columns: repeat(3, 1fr);
    }
    .advantages__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .hero h1 { font-size: 28px; }
    .section-title { font-size: 28px; }
    .mirror-banner__inner { padding: 24px; }
    .payments-preview__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .games-grid__items {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 { font-size: 22px; }
    .btn { padding: 10px 20px; font-size: 13px; }
    .footer__nav { flex-direction: column; gap: 12px; }
    .payments-preview__grid {
        grid-template-columns: 1fr 1fr;
    }
    .eeat-block__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===== MIRROR PAGE SPECIFIC ===== */

/* Mirror Hero */
.hero--mirror .hero h1 {
    font-size: 42px;
}

.hero--mirror .hero__image {
    max-width: 500px;
}

/* Mirror Status */
.mirror-status {
    padding: 0 24px 40px;
}

.mirror-status__card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mirror-status__icon {
    font-size: 32px;
    flex-shrink: 0;
}

.mirror-status__info {
    flex: 1;
}

.mirror-status__info h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.mirror-status__info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.mirror-status__badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    font-size: 13px;
    font-weight: 600;
}

/* How to use */
.how-to-use {
    padding: 48px 24px;
    background: var(--bg-secondary);
}

.how-to-use__sub {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
}

.how-to-use__steps {
    max-width: 800px;
    margin: 0 auto;
}

.how-to-use__step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
    background: var(--bg-card);
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.how-to-use__step:hover {
    border-color: var(--accent);
}

.how-to-use__number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #0f0a0a;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.how-to-use__content h3 {
    color: var(--accent-light);
    font-size: 18px;
    margin-bottom: 6px;
}

.how-to-use__content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.how-to-use__content p strong {
    color: var(--text-primary);
}

.how-to-use__cta {
    text-align: center;
    margin-top: 40px;
}

/* Mirror FAQ */
.mirror-faq {
    padding: 48px 24px;
}

.mirror-faq__grid {
    max-width: 800px;
    margin: 0 auto;
}

/* Mirror Benefits */
.mirror-benefits {
    padding: 48px 24px;
    background: var(--bg-secondary);
}

.mirror-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.mirror-benefits__item {
    background: var(--bg-card);
    padding: 30px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.mirror-benefits__item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.mirror-benefits__icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.mirror-benefits__item h3 {
    color: var(--accent-light);
    font-size: 18px;
    margin-bottom: 10px;
}

.mirror-benefits__item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.mirror-benefits__item p strong {
    color: var(--text-primary);
}

.mirror-benefits__cta {
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .mirror-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mirror-benefits__grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto 40px;
    }
    
    .how-to-use__step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .mirror-status__card {
        flex-direction: column;
        text-align: center;
    }
    
    .hero--mirror .hero h1 {
        font-size: 28px;
    }
}

/* ===== MIRROR PAGE SPECIFIC ===== */

/* Hero Mirror */
.hero--mirror .hero h1 {
    font-size: 40px;
}

/* Mirror Status */
.mirror-status {
    padding: 0 24px 40px;
}

.mirror-status__card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mirror-status__icon {
    font-size: 32px;
    flex-shrink: 0;
}

.mirror-status__info {
    flex: 1;
}

.mirror-status__info h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.mirror-status__info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.mirror-status__badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    font-size: 13px;
    font-weight: 600;
}

/* How to use */
.how-to-use {
    padding: 48px 24px;
    background: var(--bg-secondary);
}

.how-to-use__sub {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
}

.how-to-use__steps {
    max-width: 800px;
    margin: 0 auto;
}

.how-to-use__step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
    background: var(--bg-card);
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.how-to-use__step:hover {
    border-color: var(--accent);
}

.how-to-use__number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--cta-red);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.how-to-use__content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--accent-light);
    font-size: 18px;
    margin-bottom: 6px;
}

.how-to-use__content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.how-to-use__content p strong {
    color: var(--text-primary);
}

.how-to-use__cta {
    text-align: center;
    margin-top: 40px;
}

/* Mirror FAQ */
.mirror-faq {
    padding: 48px 24px;
}

.mirror-faq__grid {
    max-width: 800px;
    margin: 0 auto;
}

/* Mirror Benefits */
.mirror-benefits {
    padding: 48px 24px;
    background: var(--bg-secondary);
}

.mirror-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.mirror-benefits__item {
    background: var(--bg-card);
    padding: 30px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.mirror-benefits__item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.mirror-benefits__icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.mirror-benefits__item h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--accent-light);
    font-size: 18px;
    margin-bottom: 10px;
}

.mirror-benefits__item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.mirror-benefits__item p strong {
    color: var(--text-primary);
}

.mirror-benefits__cta {
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .mirror-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mirror-benefits__grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto 40px;
    }
    
    .how-to-use__step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .mirror-status__card {
        flex-direction: column;
        text-align: center;
    }
    
    .hero--mirror .hero h1 {
        font-size: 28px;
    }
}