/**
 * Geannreal — стили лендинга
 * Темы: светлая, тёмная, системная (через data-theme на html)
 */

:root {
    --brand-blue: #00A3FF;
    --deep-blue: #0029D9;
    --outline-black: #000000;
    --brand-white: #ffffff;
    --primary: var(--brand-blue);
    --primary-dark: var(--deep-blue);
    --accent: var(--brand-blue);
}

/* Тёмная тема (по умолчанию) */
:root,
[data-theme="dark"] {
    --body-bg: #000e50;
    --text: var(--brand-white);
    --text-muted: rgba(255, 255, 255, 0.72);
    --navbar-bg: rgba(0, 14, 80, 0.92);
    --navbar-text: rgba(255, 255, 255, 0.95);
    --hero-bg: linear-gradient(135deg, #000e50 0%, #0029D9 55%, #000e50 100%);
    --hero-overlay: radial-gradient(ellipse at 50% 0%, rgba(0, 163, 255, 0.35) 0%, transparent 55%);
    --section-alt-bg: #0029D9;
    --section-default-bg: #000e50;
    --footer-bg: #000e50;
    --footer-text: var(--brand-white);
    --footer-muted: rgba(255, 255, 255, 0.7);
    --card-bg: #000e50;
    --placeholder-bg: linear-gradient(145deg, #0029D9 0%, #000e50 100%);
    --placeholder-text: rgba(255, 255, 255, 0.55);
    --placeholder-border: rgba(255, 255, 255, 0.2);
    --hero-outline-btn: rgba(255, 255, 255, 0.7);
    --hero-outline-btn-hover: var(--brand-white);
    --promo-code-bg: rgba(0, 163, 255, 0.2);
    --promo-code-text: var(--brand-blue);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
}

/* Светлая тема */
[data-theme="light"] {
    --body-bg: var(--brand-white);
    --text: var(--outline-black);
    --text-muted: rgba(0, 0, 0, 0.65);
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --navbar-text: var(--outline-black);
    --hero-bg: linear-gradient(135deg, #00A3FF 0%, #0029D9 55%, #00A3FF 100%);
    --hero-overlay: radial-gradient(ellipse at 50% 0%, rgba(0, 163, 255, 0.25) 0%, transparent 55%);
    --section-alt-bg: #E6F6FF;
    --section-default-bg: var(--brand-white);
    --footer-bg: var(--outline-black);
    --footer-text: var(--brand-white);
    --footer-muted: rgba(255, 255, 255, 0.7);
    --card-bg: var(--brand-white);
    --placeholder-bg: linear-gradient(145deg, rgba(0, 163, 255, 0.2) 0%, rgba(0, 41, 217, 0.2) 100%);
    --placeholder-text: rgba(0, 41, 217, 0.7);
    --placeholder-border: rgba(0, 163, 255, 0.35);
    --hero-outline-btn: rgba(255, 255, 255, 0.9);
    --hero-outline-btn-hover: var(--brand-white);
    --promo-code-bg: rgba(0, 163, 255, 0.15);
    --promo-code-text: var(--deep-blue);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
    background: var(--body-bg);
    color: var(--text);
    transition: background 0.25s ease, color 0.25s ease;
}

/* Навигация */
.navbar {
    background: var(--navbar-bg);
    color: var(--navbar-text);
    backdrop-filter: blur(10px);
    transition: background 0.3s, color 0.2s;
}

.navbar .navbar-brand {
    color: var(--navbar-text) !important;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
}

.navbar .brand-logo {
    display: block;
    width: 50px;
    height: 37px;
}

.navbar .nav-link {
    color: var(--navbar-text) !important;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: var(--accent) !important;
}

.navbar .nav-link.active {
    color: var(--accent) !important;
    font-weight: 600;
}

.navbar .navbar-toggler {
    border-color: var(--navbar-text);
    color: var(--navbar-text);
}

[data-theme="dark"] .navbar .navbar-toggler-icon {
    filter: invert(1);
}

/* Кнопка темы в хедере */
.navbar .dropdown .btn-link {
    color: var(--navbar-text) !important;
    text-decoration: none;
}

.navbar .dropdown .btn-link:hover {
    color: var(--accent) !important;
}

.navbar .dropdown-menu {
    background: var(--card-bg);
    border: 1px solid var(--placeholder-border);
    box-shadow: var(--shadow);
}

.navbar .dropdown-item {
    color: var(--text);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: var(--promo-code-bg);
    color: var(--text);
}

.navbar .dropdown-item.active {
    background: var(--primary);
    color: #fff;
}

/* Hero */
.hero {
    background: var(--hero-bg);
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(120px, 0.9fr) minmax(260px, 1.2fr) minmax(120px, 0.9fr);
    align-items: center;
    gap: 1.5rem;
    min-height: 100vh;
}

.hero-side {
    display: flex;
    justify-content: center;
}

.hero-video-frame {
    max-width: 360px;
    width: 100%;
    /* высота почти на весь экран клиента */
    height: calc(100vh - 180px);
    max-height: 720px;
    border-radius: 16px;
    /* border: 1px dashed var(--placeholder-border); */
    background: radial-gradient(circle at 20% 0%, rgba(255, 215, 0, 0.12), transparent 55%), var(--placeholder-bg);
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Иконка ручного запуска для видео */
.video-overlay-container {
    position: relative;
}

.video-manual-play {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 5;
}

.video-manual-play svg {
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

.video-manual-play.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.video-manual-play:hover {
    background: rgba(0, 0, 0, 0.75);
}

.hero-center {
    max-width: 520px;
    margin-inline: auto;
}

.hero-text,
.hero-text .display-3,
.hero-text .lead {
    color: var(--text);
}

.hero-text .lead {
    font-family: "Marck Script", cursive;
}

[data-theme="light"] .hero-text,
[data-theme="light"] .hero-text .display-3,
[data-theme="light"] .hero-text .lead {
    color: #fff;
}

.hero h1 {
    letter-spacing: 0.05em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

/* Эффект слот-машины на кнопках */
.btn-primary,
.btn-hero-outline,
#copyPromo {
    position: relative;
    overflow: visible;
}

.btn-primary::after,
.btn-hero-outline::after {
    content: "";
    position: absolute;
    top: 0;
    left: -5%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn-primary:hover::after,
.btn-hero-outline:hover::after {
    left: 5%;
}

#copyPromo::after {
    content: "";
    position: absolute;
    top: 0;
    left: -5%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.4),
        transparent
    );
    transition: left 0.5s ease;
    pointer-events: none;
    border-radius: inherit;
}

#copyPromo:hover::after {
    left: 5%;
}

.btn-hero-outline {
    border: 2px solid var(--hero-outline-btn);
    color: var(--hero-outline-btn);
    background: transparent;
}

.btn-hero-outline:hover {
    border-color: var(--hero-outline-btn-hover);
    color: var(--hero-outline-btn-hover);
    background: rgba(255, 255, 255, 0.1);
}

/* Секции: фон и текст */
.section-alt {
    background: var(--section-alt-bg);
    color: var(--text);
    transition: background 0.25s ease, color 0.25s ease;
}

.section-default {
    background: var(--section-default-bg);
    color: var(--text);
    transition: background 0.25s ease, color 0.25s ease;
}

.section-title {
    color: var(--text) !important;
    font-family: "Rubik Doodle Shadow", system-ui;
    font-weight: 400;
    font-style: normal;
}

.section-title-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.section-title-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.providers-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.providers-title-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.section-lead {
    color: var(--text-muted) !important;
}

.section-body {
    color: var(--text) !important;
}

.section-muted {
    color: var(--text-muted) !important;
}

#promo .card {
    background: var(--card-bg);
    color: var(--text);
}

#promo .card-body {
    color: var(--text);
}

/* Плейсхолдеры изображений */
.hero-photo-placeholder,
.about-photo-placeholder,
.gallery-placeholder,
.banner-placeholder,
.promo-banner-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--placeholder-bg);
    color: var(--placeholder-text);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 12px;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.hero-photo-placeholder {
    width: 100%;
    max-width: 480px;
    height: 320px;
}

.hero-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo-placeholder {
    width: 100%;
    height: 360px;
    min-height: 280px;
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 1;
    min-height: 200px;
}

.banner-placeholder {
    width: 100%;
    height: 180px;
}

.promo-banner-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
}

.promo-banner-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Малые баннеры 1win */
.sm-banners-block {
    margin-top: 2rem;
}

.sm-banners-header {
    text-align: center;
}

.sm-banners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.sm-banner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
    border-radius: 16px;
    overflow: hidden;
    background: var(--section-default-bg);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 1rem 1rem 1.2rem;
    min-height: 220px;
    text-align: center;
    text-decoration: none;
}

.sm-banner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.sm-banner-text-top {
    font-size: 12px;
    font-weight: 800;
}

.sm-banner-media {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.sm-banner-img {
    display: block;
    width: 90%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
}

.sm-banner-text {
    margin-top: auto;
    font-weight: 700;
    font-size: 1.0rem;
    color: #fff;
    letter-spacing: 0.1em;
}

@media (max-width: 992px) {
    .sm-banners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .sm-banners-grid {
        grid-template-columns: 1fr;
    }
}

/* Промокод */
.promo-code {
    background: var(--promo-code-bg);
    color: var(--promo-code-text);
    padding: 0.25em 0.5em;
    border-radius: 6px;
    font-size: 1.1em;
}

.promo-benefits {
    display: grid;
    gap: 0.5rem;
    max-width: 420px;
    margin-inline: auto;
    text-align: left;
}

.promo-benefits li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.promo-card {
    border-radius: 16px;
    box-shadow: var(--shadow);
}

/* Промо-баннер с одним квадратным видео */
.promo-banner-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.promo-banner-video {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    /* border: 1px dashed var(--placeholder-border); */
    background: radial-gradient(circle at 20% 0%, rgba(255, 215, 0, 0.16), transparent 60%), var(--placeholder-bg);
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .promo-banner-video {
        max-width: 220px;
    }
}

/* Розыгрыш */
#raffle .card {
    background: var(--card-bg);
    color: var(--text);
}

.raffle-card {
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.raffle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.raffle-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--promo-code-bg);
    border: 1px solid var(--placeholder-border);
    font-size: 0.85rem;
    color: var(--text);
}

.raffle-block .section-title {
    font-size: 1.1rem;
}

.raffle-list {
    counter-reset: raffle-step;
    display: grid;
    gap: 0.6rem;
    margin: 0;
}

.raffle-list li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.raffle-list li::before {
    counter-increment: raffle-step;
    content: counter(raffle-step);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex: 0 0 28px;
}

.raffle-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.raffle-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.raffle-bonuses {
    display: grid;
    gap: 0.6rem;
    margin: 0;
}

.raffle-bonuses li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.9rem;
    border-radius: 12px;
    border: 1px solid var(--placeholder-border);
    background: rgba(0, 163, 255, 0.08);
}

.raffle-bonus-num {
    font-weight: 600;
    color: var(--text-muted);
}

.raffle-bonus-val {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.raffle-banner-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    text-align: center;
    background: radial-gradient(circle at 20% 0%, rgba(255, 215, 0, 0.18), transparent 60%), var(--placeholder-bg);
    color: var(--text);
    border-left: 1px solid var(--placeholder-border);
    position: relative;
    overflow: hidden;
}

.raffle-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    position: relative;
    z-index: 1;
}

.raffle-banner-eyebrow {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.raffle-banner-amount {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.raffle-banner-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.raffle-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
    max-width: 360px;
    margin-top: 0.75rem;
    font-variant-numeric: tabular-nums;
}

.raffle-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.55rem 0.35rem;
    border-radius: 12px;
    border: 1px solid var(--placeholder-border);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    min-height: 64px;
}

[data-theme="light"] .raffle-countdown-item {
    background: rgba(255, 255, 255, 0.8);
}

.raffle-countdown-value {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.raffle-countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.raffle-countdown.is-ended .raffle-countdown-value {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .raffle-bonuses li {
        align-items: flex-start;
    }

    .raffle-banner-placeholder {
        border-left: 0;
        border-top: 1px solid var(--placeholder-border);
        padding: 2rem 1.5rem;
    }

    .raffle-banner-amount {
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    .raffle-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Секции */
section {
    scroll-margin-top: 76px;
}

/* Кнопка "Наверх" */
.scroll-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, var(--brand-blue), var(--deep-blue));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 999;
}

[data-theme="light"] .scroll-top {
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.scroll-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
}

.scroll-top:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 4px;
}

@media (max-width: 576px) {
    .scroll-top {
        width: 48px;
        height: 48px;
        right: 1rem;
        bottom: 1rem;
    }
}

/* Кнопки контактов */
.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Футер */
.footer {
    background: var(--footer-bg) !important;
    transition: background 0.25s ease;
}

.footer-text {
    color: var(--footer-text) !important;
}

.footer-muted {
    color: var(--footer-muted) !important;
}

.footer-legal {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 0.35rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-legal a {
    color: var(--brand-blue);
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* Легенда */
.legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.legend-card {
    background: var(--card-bg);
    border: 1px solid var(--placeholder-border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.legend-card:hover {
    box-shadow: var(--shadow);
}

.legend-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.legend-value {
    font-size: 0.95rem;
    color: var(--text);
}

/* Провайдеры */
.providers-toolbar {
    border-radius: 12px;
    border: 1px solid var(--placeholder-border);
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.08);
}

.providers-list .btn {
    border-radius: 999px;
}

.providers-list .btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.slot-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.slot-card-link:hover .slot-card {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.slot-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 0.75rem 0.9rem 0.9rem;
    border: 1px solid var(--placeholder-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
}

.slot-provider {
    font-weight: 600;
    color: var(--accent);
}

.slot-rtp {
    font-weight: 500;
    color: var(--text-muted);
}

.slot-bet {
    font-size: 0.8rem;
}

.slot-title {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.slot-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.slot-image-wrap {
    width: 100%;
    max-width: 240px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    aspect-ratio: 3 / 4;
    background: var(--placeholder-bg);
    margin-inline: auto;
}

.slot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Контейнер для эффекта выигрыша */
.win-effect-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
}

.win-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: win-fly 1.2s ease-out forwards;
    opacity: 0.9;
}

.win-particle.coin {
    background: radial-gradient(circle at 30% 30%, #ffd700, #daa520);
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
}

.win-particle.confetti {
    border-radius: 2px;
    width: 8px;
    height: 8px;
}

@keyframes win-fly {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.9;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0.3);
        opacity: 0;
    }
}

/* Адаптив */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-top: 80px;
        margin-bottom: 40px;
    }

    .hero-video-frame {
        max-width: 220px;
        height: 55vh;
        max-height: 420px;
    }

    .promo-card .card-body {
        text-align: center;
    }
}

/* Обзоры */
.review-card-link {
    display: block;
    color: inherit;
}
.review-card-link:hover {
    color: inherit;
}
.review-card-link:hover .review-card {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.review-card {
    background: var(--card-bg);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.review-card-img {
    height: 200px;
    object-fit: cover;
}
.review-card-placeholder {
    height: 200px;
}
.review-body {
    font-size: 1.05rem;
    line-height: 1.65;
}
