/* <<< 0. ПЕРЕМЕННЫЕ И ОБЩИЕ СТИЛИ >>> */
:root {
    --color-bg-card: #ffffff;
    --color-accent: #ff5722;
    --color-green: #1db67e;
    --color-dark: #222222;
    --bg-2: #1a0a2e;
    --bg: #0a0a1a;
}

* {box-sizing: border-box;}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6; 
    -webkit-font-smoothing: antialiased; 
    background-color: #f6faff;
    color: #fff;
    counter-reset: section;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #000;
}

/* --- ТОЧКИ В МЕНЮ #1E90FF --- */
header nav ul li:not(:last-child)::after {
    content: "•";
    color: #7ebbf7;
    margin-left: 5px;
    font-size: 16px; 
    vertical-align: middle;
    line-height: 0;
}

/* --- 1. ШАПКА И МЕНЮ background: rgb(240 245 253); --- */
header {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 50;
    background: #21293d;
    backdrop-filter: blur(12px);
    /* border-bottom: 1px solid #384553; */
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
}

.logo img {
    display: block;
    max-height: 45px;
}

.logo a {
    display: flex;
    align-items: center;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
/* #191b2b */
header nav ul li a {
    text-decoration: none;
    color: #f0f7ff;
    font-weight: 600;
    transition: 0.3s;
    font-size: 14px;
}

header nav ul li a:hover {
    color: #DC143C;
}

/* Бургер для мобилок */
.js-mobile-btn {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 101;
}

.js-mobile-btn span,
.js-mobile-btn:before,
.js-mobile-btn:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.js-mobile-btn:before {
    top: 0;
}

.js-mobile-btn span {
    top: 9px;
}

.js-mobile-btn:after {
    bottom: 0;
}

/* --- 2. ИНТРО БАННЕР --- */
.hero-main {
    color: #fff;
    padding: 50px 0;
    text-align: center;
    background: 
    radial-gradient(1200px 800px at 20% -10%, rgba(255, 0, 0, 0.2), transparent 55%), 
    radial-gradient(1200px 800px at 90% 0%, rgba(0, 123, 255, 0.2), transparent 55%), 
    linear-gradient(33deg, #19202d, #1a1d21);
    width: 100%;
    position: relative;
    overflow: hidden;
}
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* --- 3. БЛОКИ КАЗИНО --- */
.casinosss-item-wrapper {
    margin-bottom: 15px;
}

.casinosss-item-inner {
    display: flex;
    align-items: center;
    position: relative;
    background-color: #fff;
    box-shadow: 0 3px 8px rgb(0 0 0 / 2%), 0 5px 6px rgb(0 0 0 / 4%), 0 1px 5px rgb(0 0 0 / 10%);
    justify-content: space-between;
    padding: 0 15px 0 30px;
    border-radius: 5px;
    border: 1px solid #cee0ff;
    min-height: 100px;
    box-sizing: border-box;
}

.item-image,
.item-promo,
.item-bonus,
.item-nodep,
.item-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.item-image {
    flex: 1.2;
    align-items: flex-start;
    padding: 10px 15px;
}

.item-button {
    align-items: flex-end;
}

.casinosss-item-inner.item-bonus {
    background: rgba(70, 162, 141, 0.08);
}

.casinosss-item-inner .casino-badge {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-accent), #ff7a3c);
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 4;
}

.casinosss-item-inner .casino-place-icons {
    position: absolute;
    top: 0;
    left: 5px;
    z-index: 2;
    width: 38px;
}

.casinosss-item-inner:before {
    content: counter(section);
    counter-increment: section;
    position: absolute;
    top: 11px;
    left: 5px;
    width: 37px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    z-index: 3;
}

.item-image img {
    max-width: 180px;
    height: auto;
    cursor: pointer;
}

.item-flex-div {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.item-flex-div-h {
    color: #191b2b;
    text-transform: uppercase;
    font-size: 12px;
    margin: 0 0 5px 0;
    font-weight: bold;
    line-height: 1;
}

.promo-block {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 150px;
    padding: 0 5px;
    border: 1px dashed #bbb;
    border-radius: 5px;
    cursor: pointer;
    background: #fff;
    margin: 0 auto;
    overflow: hidden;
}

.promo-value {
    color: #e91f1b;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
}

.promo-block .promo-value {
    color: #1E90FF;
    text-transform: uppercase;
    font-size: 16px;
    margin-right: 0.3em;
    font-weight: bold;
}

.bonus-value,
.nodep-value {
    color: #1E90FF;
    font-weight: bold;
    font-size: 17px;
    line-height: 36px;
}

.item-button-play {
    display: block;
    background: var(--color-green);
    color: #fff !important;
    padding: 12px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
    min-width: 130px;
    text-align: center;
    cursor: pointer;
}

.item-button-play:hover {
    background: #159968;
    transform: translateY(-2px);
}

.item-button .item-button-play {
    display: block;
    background: #dc143c;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 10px;
    border: 3px double white;
    transition: all ease 0.1s;
}

.article-content {
    max-width: 1160px;
    margin: 0 auto;
}

/* --- 4. Телеграмм и кнопка ВВЕРХ --- */
.promo-banner {
    overflow: hidden;
    transition: all 0.5s;
    display: flex;
    background: #f5f5f5;
    width: 100%;
    text-decoration: none;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 10;
    border-top: 2px solid #5cb5ff;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}

.promo-banner img {
    width: 27px;
    height: 25px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.promo-banner p span,
.promo-banner .tg {
    line-height: 130%;
    color: #00b7ff;
    margin: 0 0 0 5px;
    font-weight: 600;
    text-decoration: none;
}

.promo-banner p {
    padding: 0 0 0 15px;
    color: #191b2b;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    margin: 0;
    line-height: 100%;
}

.promo-banner .tg {
    background: #00b7ff;
    cursor: pointer;
    color: #fff;
    padding: 5px 20px;
    border-radius: 32px;
    display: block;
    position: relative;
    font-style: normal;
    margin: 0 0 0 20px;
}

.promo-banner .tg:hover {
    background: #0396d0;
}

.promo-banner .close {
    font-style: normal;
    font-size: 14px;
    color: #363636;
    position: absolute;
    top: 15px;
    right: 16px;
    line-height: 100%;
    display: block;
    cursor: pointer;
    width: 15px;
    height: 15px;
}

.promo-banner .close:before,
.promo-banner .close:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 1px;
    background: #1e96c8;
    top: 6px;
    left: 0;
}

.promo-banner .close:before {
    transform: rotate(45deg);
}

.promo-banner .close:after {
    transform: rotate(-45deg);
}

.js-top {
    position: fixed;
    right: 20px;
    bottom: 150px;
    cursor: pointer;
    opacity: 0.7;
    z-index: 10;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 26px;
    border-radius: 30%;
    font-size: 18px;
    background-color: #cad5ef;
    color: #000000;
}

/* --- 5. ФУТЕР --- */
footer {
    color: #cee0ff;
    padding: 25px 0;
    margin-top: 60px;
    background: #162331;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-left p {
    margin: 0;
    font-size: 14px;
}

/* >>> 6. АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ <<< */
@media (max-width: 992px) {
    .casinosss-item-inner {
        flex-direction: column;
        padding: 50px 20px 20px 20px;
        gap: 15px;
        text-align: center;
    }
    .item-flex-div-h {
        margin-bottom: 5px;
    }
    .bonus-value,
    .nodep-value {
        line-height: 1.2;
    }
    .casinosss-item-inner .item-image {
        flex: 0 0 auto;
    }
    .item-image img {
        max-width: 150px;
    }
    .promo-banner img {
        margin: 0 0 5px 0;
    }

/* МОБИЛЬНОЕ МЕНЮ */
    .js-mobile-btn {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
    }
    .js-mobile-btn span,
    .js-mobile-btn:before,
    .js-mobile-btn:after {
        background: #000 !important;
    }
    .js-mobile-btn.active span {
        opacity: 0;
        transform: scale(0);
    }
    .js-mobile-btn.active:before {
        transform: translateY(10px) rotate(45deg);
    }
    .js-mobile-btn.active:after {
        transform: translateY(-10px) rotate(-45deg);
    }
    header nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        background: #21293d !important;
        backdrop-filter: blur(12px);
        padding: 25px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease-in-out;
        z-index: 999;
    }
    header.active nav {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 0;
        padding: 0 20px;
    }
    header nav ul li {
        width: 100%;
        text-align: center;
    }
    header nav ul li a {
        color: #f0f7ff !important;
        font-size: 16px;
        font-weight: 600;
        padding: 15px 20px;
        display: block;
        text-align: center;
        width: 100%;
        border-radius: 8px;
        transition: all 0.3s ease;
        border: 1px solid #cee0ff;
        background: rgba(255, 255, 255, 0.05);
    }
    header nav ul li a:hover {
        color: #c4a1e9 !important;
        background: rgba(196, 161, 233, 0.15);
        border-color: rgba(196, 161, 233, 0.3);
        transform: translateY(-2px);
    }
/* Фикс для хедера на мобильных */
    .header-container {
        min-height: 70px;
        position: relative;
    }
    .logo img {
        max-height: 40px;
    }
    header nav ul li:not(:last-child)::after {
    display: none;
    }
}

@media (max-width: 768px) {
    .promo-banner,
    .promo-banner p {
        flex-direction: column;
    }
    .promo-banner p {
        padding: 0 10px;
        gap: 3px;
    }
    .promo-banner .tg {
        margin-left: 0;
    }
    .footer-inner {
        flex-direction: column !important;
        text-align: center;
        gap: 20px;
    }
}











/* ===== ОСНОВНЫЕ СТИЛИ КОНТЕНТА ===== */

.section-title-premium {
    text-align: center;
    margin: 30px auto;
    max-width: 800px;
    border: 1px solid #21293d;
    border-radius: 50px;
    padding: 2px 15px;
    font-family: 'Roboto', sans-serif;
    color: #21293d;
    background: rgba(255, 255, 255, 0.05);
    /* box-shadow: 0 0 15px rgba(0, 123, 255, 0.3); */
    display: block;
}





.main-content {
    color: #191b2b;
}

.main-content p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.main-content h2 {
    font-size: 29px;
    color: #191b2b;
    margin-top: 40px;
    margin-bottom: 20px;
}

.main-content h3 {
    font-size: 24px;
    color: #191b2b;
   /* margin-top: 35px; */
   /* margin-bottom: 15px; */
}

.main-content h4 {
    font-size: 20px;
    color: #191b2b;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Ссылки */
.content-link {
    color: #dc143c;
    text-decoration: none;
    font-weight: 500;
}

.content-link:hover {
    text-decoration: underline;
}

/* ===== БЛОКИ С ШАПКАМИ ===== */

/* Блок с шапкой */
.block-with-header {
    background: #ffffff;
    margin: 40px 0;
    overflow: hidden;
}

.block-header {
    background: #e2e8ed;
    padding: 20px 30px;
    border-bottom: 2px solid #d6d7d7;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.block-header h2 {
    color: #3c3e4f;
    font-size: 29px;
    margin: 0;
    padding: 0;
    border: none;
    line-height: 1.2;
}

.block-content {
    padding: 30px;
}

/* Две колонки с шапкой */
.two-col-block-with-header {
    background: #ffffff;
    margin: 40px 0;
    overflow: hidden;
}

.two-col-block-with-header .block-header {
    background: #e2e8ed;
    padding: 20px 30px;
    border-bottom: 2px solid #d6d7d7;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.two-col-block-with-header .block-header h2 {
    color: #3c3e4f;
    font-size: 29px;
    margin: 0;
    padding: 0;
    border: none;
}

.two-col-block-with-header .cols-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 30px;
}

.two-col-block-with-header .col {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 25px;
}

.two-col-block-with-header .col h3 {
    color: #191b2b;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Три колонки с шапкой */
.three-col-block-with-header {
    background: #ffffff;
    /* border: 1px solid #e0e0e0; */
    /* border-radius: 10px; */
    margin: 40px 0;
    overflow: hidden;
}

.three-col-block-with-header .block-header {
    background: #e2e8ed;
    padding: 20px 30px;
    /* border-bottom: 1px solid #e0e0e0; */
    min-height: 50px;
    display: flex;
    align-items: center;
}

.three-col-block-with-header .block-header h2 {
    color: #3c3e4f;
    font-size: 29px;
    margin: 0;
    padding: 0;
    border: none;
}

.three-col-block-with-header .cols-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px;
}

.three-col-block-with-header .col {
    background: #f8f9fa;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.three-col-block-with-header .col h3 {
    color: #191b2b;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Специальные блоки */
.highlight-block {
    background: #3c3e4f;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    color: #cee0ff;
}

.highlight-block h3,
.highlight-block h4 {
    color: #ffffff;
    margin-top: 0;
}

.warning-block {
    background: #fff8f8;
    border: 1px solid #dc143c;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
}

.warning-block h4 {
    color: #dc143c;
    margin-top: 0;
}

/* Таблица внутри блока */
.table-block {
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.casino-table thead {
    background: #3c3e4f;
}

.casino-table th {
    color: #ffffff;
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

.casino-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.casino-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.casino-table td {
    padding: 18px 15px;
    vertical-align: middle;
    text-align: center;
}

.casino-table .btn-play {
    display: inline-block;
    background: #dc143c;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    min-width: 120px;
}

.casino-table .btn-play:hover {
    background: #b81234;
}

/* Списки */
.content-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.content-list li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    color: #191b2b;
}

.content-list li:before {
    content: "•";
    color: #dc143c;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* ===== КАРТОЧКИ С ИНФОГРАФИКОЙ ===== */

/* Базовая карточка с картинкой */
.image-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: #191b2b;
    margin-top: 0;
    margin-bottom: 15px;
}

.card-content p {
    color: #555;
    margin-bottom: 15px;
}

.card-meta {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 5px 25px;
    font-size: 14px;
    color: #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-meta .category {
    color: #1e90ff;
    font-weight: 500;
}

/* Карточка с иконкой */
.icon-card {
    background: #ffffff;
    border: 1px dashed #dc2626;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.icon-card .card-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-card .card-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.icon-card h3 {
    color: #191b2b;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

.icon-card p {
    color: #555;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Сетка карточек */
.icon-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

/* Карточка сравнения */
.comparison-card {
    background: #ffffff;
    padding: 30px;
    margin: 30px 0;
}

.comparison-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.comparison-header h3 {
    color: #191b2b;
    margin: 0;
    font-size: 22px;
}

.comparison-badge {
    background: #dc143c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 15px;
}

.comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.comparison-item {
    border: 4px double #e0e0e0;
    padding: 20px;
}

.comparison-item h4 {
    color: #191b2b;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.comparison-item ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.comparison-item li {
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
    color: #555;
}

.comparison-item li:before {
    content: "✓";
    color: #1db67e;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Карточка статистики */
.stats-card {
    background: #e1e9f7;
    border: 4px double #1e90ff;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    color: #007ffb;
    text-align: center;
}

.stats-number {
    font-size: 48px;
    font-weight: bold;
    color: #dc143c;
    margin-bottom: 10px;
}

.stats-label {
    font-size: 18px;
    margin-bottom: 20px;
}

.stats-description {
    color: #000;
    margin-bottom: 0;
}

/* Сетка статистики */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stats-grid .stats-card {
    margin: 0;
}

/* Карточка с боковой картинкой */
.side-image-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    background: #ffffff;
    border: 1px solid #191b2b;
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
}

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

.side-image-content {
    padding: 30px;
}

.side-image-content h3 {
    color: #191b2b;
    margin-top: 0;
    margin-bottom: 15px;
}

/* ===== АДАПТИВНОСТЬ ===== */

/* Мобильная версия Hero */
@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 29px;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-list {
        display: inline-block;
        text-align: left;
    }
    
    .hero-list-item {
        justify-content: center;
    }
    
    .hero-image img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 992px) {
    .two-col-block-with-header .cols-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .three-col-block-with-header .cols-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .icon-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .side-image-card {
        grid-template-columns: 1fr;
    }
    
    .side-image-card img {
        height: 200px;
    }
    
    .block-content,
    .two-col-block-with-header .cols-container,
    .three-col-block-with-header .cols-container {
        padding: 20px;
    }
    
    .col {
        padding: 20px !important;
    }
}

@media (max-width: 768px) {
    .icon-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 { font-size: 29px; }
    .main-content h2 { font-size: 24px; }
    .main-content h3 { font-size: 21px; }
    .main-content h4 { font-size: 18px; }
    
    .block-content,
    .highlight-block,
    .warning-block,
    .icon-card,
    .comparison-card,
    .stats-card,
    .side-image-card {
        padding: 20px;
    }
    
    .block-header {
        padding: 20px;
    }
    
    .block-header h2 {
        font-size: 24px;
    }
    .comparison-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    }
}













/* ===== СТИЛИ ДЛЯ ОСТАЛЬНЫХ СТРАНИЦ (КАРТИНКИ КВАДРАТНЫЕ) ===== */

/* Основа - заголовки в шапке как на главной, но свои классы */
.other-page-block {
    background: #ffffff;
    margin: 35px 0;
    overflow: hidden;
}

.other-page-header {
    background: #e2e8ed;
    padding: 20px 30px;
    border-bottom: 2px solid #d6d7d7;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.other-page-header h2 {
    color: #3c3e4f;
    font-size: 29px;
    margin: 0;
    padding: 0;
    border: none;
    line-height: 1.2;
}

.other-page-content {
    padding: 30px;
}

/* Блок с текстом и квадратной картинкой рядом */
.other-text-image {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 35px;
    background: #ffffff;
    border: 1px solid transparent;
    border-radius: 10px;
    /* margin: 35px 0; */
    padding: 20px;
    align-items: center;
}

.other-text-image.reverse {
    grid-template-columns: 300px 1fr;
}

.other-text-image img {
    width: 100%;
    height: 280px;
    object-fit: contain;
}

/* Блок с иконками (квадратные картинки 50x50) */
.other-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.other-icon-item {
    background: #f1f9ff;
    /* border: 1px solid #3c3e4f; */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

/*
.other-icon-item:hover {
    border-color: #1e90ff;
    box-shadow: 0 5px 20px rgba(30, 144, 255, 0.1);
}
*/

.other-icon-img {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.other-icon-img img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.other-icon-item h3 {
    color: #191b2b;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Блок с преимуществами (другой дизайн) */
.other-features-list {
    background: #f1f6ff;
    border: 1px dashed #1e90ff;
    border-radius: 10px;
    margin: 35px 0;
    padding: 30px;
}

.other-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #cdd8eb;
}

.other-feature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.other-feature-number {
    background: #1e90ff;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
}

.other-feature-content h3 {
    color: #191b2b;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

/* Цитата/мнение эксперта (другой дизайн) */
.other-expert-box {
    background: linear-gradient(135deg, #3c3e4f, #546285);
    border-left: 5px solid #dc143c;
    border-radius: 0 2px 2px 0;
    padding: 30px;
    margin: 35px 0;
    color: #cee0ff;
}

.other-expert-box h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.other-expert-box h3:before {
    content: "💡";
    font-size: 24px;
}

.other-expert-box p {
    color: #cee0ff;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.6;
}

/* Промо-блок (другой дизайн) */
.other-promo-block {
    background: linear-gradient(135deg, #dc143c, #ff5722);
    border-radius: 10px;
    padding: 30px;
    margin: 35px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.other-promo-block:before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.other-promo-badge {
    background: white;
    color: #dc143c;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.other-promo-block h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 26px;
    position: relative;
    z-index: 2;
}

.other-promo-block p {
    color: white;
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.other-promo-btn {
    display: inline-block;
    background: white;
    color: #dc143c !important;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.other-promo-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Предупреждение (другой дизайн) */
.other-warning {
    background: #fff5f5;
    border: 1px solid #dc143c;
    border-radius: 10px;
    padding: 20px 30px;
    margin: 35px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.other-warning-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.other-warning-icon img {
    width: 40px;
    height: 40px;
}

.other-warning-content h4 {
    color: #dc143c;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

/* Сравнительная таблица (другой дизайн) */
.other-comparison {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin: 35px 0;
    overflow: hidden;
}

.other-comparison-header {
    background: #3c3e4f;
    padding: 25px 30px;
    color: white;
}

.other-comparison-header h3 {
    color: white;
    margin: 0;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.other-comparison-badge {
    background: #dc143c;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

.other-comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.other-comparison-col {
    padding: 25px;
}

.other-comparison-col:nth-child(1) {
    background: #f8f9fa;
    border-right: 1px solid #e0e0e0;
}

.other-comparison-col:nth-child(2) {
    background: #ffffff;
}

.other-comparison-col h4 {
    color: #191b2b;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
}

.other-comparison-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.other-comparison-list li {
    padding: 12px 15px;
    margin-bottom: 8px;
    background: white;
    border-radius: 6px;
    border-left: 3px solid #1e90ff;
}

.other-comparison-col:nth-child(1) .other-comparison-list li {
    border-left-color: #dc143c;
}

/* Адаптивность */
@media (max-width: 992px) {
    .other-text-image {
        grid-template-columns: 1fr;
    }
    
    .other-text-image.reverse {
        grid-template-columns: 1fr;
    }
    
    .other-text-image img {
        height: 250px;
        order: -1;
    }
    
    .other-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .other-comparison-content {
        grid-template-columns: 1fr;
    }
    
    .other-comparison-col:nth-child(1) {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
}

@media (max-width: 768px) {
    .other-icons-grid {
        grid-template-columns: 1fr;
    }
    
    .other-page-header h2 {
        font-size: 24px;
    }
    
    .other-feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .other-feature-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .other-warning {
        flex-direction: column;
        text-align: center;
    }
}





/* ===== ДОП СТИЛИ ДЛЯ 3 СТРАНИЦЫ Maksājumu metodes ===== */
/* Стиль для блока с картинкой справа */
.other-feature-item.with-image {
    display: grid;
    grid-template-columns: auto 1fr 80px;
    gap: 20px;
    align-items: center;
}

.other-feature-img-right {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.other-feature-img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Адаптивность */
@media (max-width: 768px) {
    .other-feature-item.with-image {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .other-feature-img-right {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
}















/* ===== СПЕЦИАЛЬНЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ 4 BEZRISKA GRIEZIENI ===== */

/* Улучшенная сетка с бонусами казино */
.enhanced-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.enhanced-icon-item {
    background: white;
    border: 1px solid #191b2b;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enhanced-icon-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #dc143c, #1e90ff);
}

.enhanced-icon-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6faff;
    border-radius: 16px;
    padding: 15px;
}

.enhanced-icon-img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.enhanced-icon-item h3 {
    color: #3c3e4f;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

.enhanced-icon-item p {
    color: #555;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.5;
}

.enhanced-icon-item strong {
    color: #191b2b;
    font-weight: 600;
}

/* Блок с лимитами бонусов */
.bonus-limits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.bonus-limit-item {
    background: #f8f9fa;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

/*
.bonus-limit-item:hover {
    border-color: #1e90ff;
    transform: translateY(-3px);
}
*/

.bonus-limit-icon {
    width: 70px;
    height: 70px;
    /* background: #1e90ff; */
    color: white;
    border: 5px double gainsboro;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.bonus-limit-item h4 {
    color: #191b2b;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.bonus-limit-item p {
    color: #555;
    margin-bottom: 0;
    font-size: 14px;
}

/* Предупреждение внутри текста */
.text-warning {
    background: #fff5f5;
    border-left: 4px solid #dc143c;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 2px 2px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.text-warning-icon {
    color: #dc143c;
    font-size: 24px;
    flex-shrink: 0;
}

.text-warning-content h4 {
    color: #dc143c;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Адаптивность для новых блоков 4-й страницы */
@media (max-width: 992px) {
    .enhanced-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-limits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .enhanced-icons-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-limits-grid {
        grid-template-columns: 1fr;
    }
    
    .text-warning {
        flex-direction: column;
        text-align: center;
    }
}












/* Основной блок */
.hero-final {
    position: relative;
    padding: 55px 20px 65px 20px;
    background: #0a0a0a;
    overflow: hidden;
    margin-bottom: 60px;
}

/* Градиентный фон с нужными цветами */
.final-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background: radial-gradient(circle at 10% 20%, #1e3a8a 0%, transparent 50%), radial-gradient(circle at 90% 30%, #833bffad 0%, transparent 50%), radial-gradient(circle at 30% 70%, #dc2626 0%, transparent 50%), radial-gradient(circle at 70% 80%, #ea580c 0%, transparent 50%);
    filter: blur(60px);
}

/* Контейнер */
.final-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Левый блок */
.final-left {
    color: white;
}

.final-year {
    display: inline-block;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 12px 30px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.final-title-block h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, #f3a9b8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: -15px;
}

.final-line {
    width: 160px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #dc2626);
    border-radius: 2px;
}

.final-text-block p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 40px;
    /* max-width: 550px; */
}

/* Кнопки в 2 ряда */
.final-buttons {
    margin-top: 40px;
    width: 100%;
    max-width: 550px;
}

.button-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.button-row:last-child {
    margin-bottom: 0;
}

.action-btn {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    color: white;
    position: relative;
    overflow: hidden;
    align-items: center;
    text-decoration: none;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(59, 130, 246, 0.1), 
        rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.action-btn:hover {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.action-btn:hover::before {
    opacity: 1;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.btn-subtext {
    font-size: 0.95rem;
    color: #aaa;
    position: relative;
    z-index: 1;
}

/* Правый блок с прямоугольным слайдером */
.final-right {
    position: relative;
}

/* Прямоугольный слайдер */
.rect-slider {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.8),
        0 0 0 2px rgba(59, 130, 246, 0.3);
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Вытянутый прямоугольный фрейм */
.rect-slider-frame {
    position: relative;
    height: 400px; /* Меньше высота для прямоугольной формы */
    overflow: hidden;
}

.rect-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.rect-slide.active {
    opacity: 1;
}

.rect-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.rect-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rect-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

/* Навигация для прямоугольного слайдера */
.rect-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    z-index: 2;
}

.rect-dots {
    display: flex;
    gap: 12px;
}

.rect-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.rect-dot.active {
    background: linear-gradient(45deg, #3b82f6, #dc2626);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.rect-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rect-btn:hover {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .final-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .final-line {
        margin-left: auto;
        margin-right: auto;
    }
    
    .final-text-block p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .final-buttons {
        margin-left: auto;
        margin-right: auto;
    }
    
    .button-row {
        justify-content: center;
    }
    
    .action-btn {
        max-width: 250px;
    }
    
    .rect-slider {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .rect-slider-frame {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .final-title-block h1 {
        font-size: 2.5rem;
    }
    
    .button-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-btn {
        max-width: 100%;
    }
    
    .rect-slider-frame {
        height: 300px;
    }
    
    .rect-nav {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .final-title-block h1 {
        font-size: 2rem;
    }
    
    .final-text-block p {
        font-size: 1.1rem;
    }
    
    .rect-slider-frame {
        height: 250px;
    }
}














/* === HERO БЛОК ДЛЯ ОБЫЧНЫХ СТРАНИЦ === */

/* Основной контейнер */
.lv-page-hero {
    position: relative;
    padding: 30px 15px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 60px;
}

/* Фон два цвета: синий и красный */
.lv-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, #ff3f3f, transparent 40%), radial-gradient(circle at bottom right, #0a1a4d, transparent 40%), #3b82f6;
    opacity: 0.8;
}

/* Контейнер с контентом */
.lv-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Левый контент */
.lv-hero-content {
    color: white;
}

.lv-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.lv-hero-text {
    margin-bottom: 40px;
}

.lv-hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    /* max-width: 500px; */
}

/* Список с галочками */
.lv-features-list {
    /* display: flex;
    flex-direction: column;
    gap: 20px; */
    
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 15px;
    padding: 20px;
    
}

.lv-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lv-check-icon {
    width: 22px;
    height: 22px;
    background-color: #00b7ff;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.lv-check-icon::before {
    content: '';
    position: absolute;
    top: 44%;
    left: 48%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 7px;
    height: 9px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
}

.lv-feature-text {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

/* Правая картинка */
.lv-hero-image {
    position: relative;
}

.lv-image-frame {
    /* border-radius: 20px; */
    overflow: hidden;
    /* box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.1); */
    /* background: rgba(255, 255, 255, 0.05); */
    /* backdrop-filter: blur(10px); */
    position: relative;
}

.lv-image-frame img {
    width: 90%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.lv-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent); */
}

/* Адаптивность */
@media (max-width: 1200px) {
    .lv-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .lv-hero-text p {
        margin: 0 auto;
    }
    
    .lv-features-list {
        align-items: center;
        grid-template-columns: 1fr;
        margin: 0 auto;
    }
    
    .lv-feature-item {
        justify-content: center;
    }
    
    .lv-image-frame {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .lv-image-frame img {
        height: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .lv-hero-title {
        font-size: 2.2rem;
    }
    
    .lv-hero-text p {
        font-size: 1.1rem;
    }
    
    .lv-image-frame img {
        height: auto;
        width: 100%;
    }
    
    .lv-feature-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .lv-page-hero {
        padding: 40px 15px;
    }
    
    .lv-hero-title {
        font-size: 1.8rem;
    }
    
    .lv-image-frame {
        border-radius: 15px;
    }
    
    .lv-image-frame img {
        height: auto;
        width: 100%;
    }
    
    .lv-feature-item {
        gap: 12px;
    }
    
    .lv-check-icon {
        width: 20px;
        height: 20px;
    }
}





/* <<< РАЗДЕЛИТЕЛЬ >>> */
.divider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%; 
    margin: 40px auto;
}
.line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0) 0%, #3b82f6 100%);
}
.line:last-child {
    background: linear-gradient(90deg, #3b82f6 0%, rgba(59, 130, 246, 0) 100%);
}
.dot {
    width: 10px;
    height: 10px;
    background-color: #3b82f6;
    border-radius: 50%;
    margin: 0 15px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
}

