/**
 * style.css - Полные стили сайта Post❤️Date
 * Версия 4.0 — добавлены стили для тарифов, ЮKassa, новых модальных окон
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background: #f8f9fa;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #e63946;
    transition: all 0.3s;
}

a:hover {
    color: #c82333;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #e63946;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    color: white;
}

.btn-success {
    background: #28a745;
}
.btn-success:hover {
    background: #218838;
}
.btn-secondary {
    background: #6c757d;
}
.btn-secondary:hover {
    background: #5a6268;
}
.btn-large {
    padding: 15px 30px;
    font-size: 18px;
    width: 100%;
}
.btn-block {
    display: block;
    width: 100%;
}

/* ========== ШАПКА ========== */
.site-header {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    font-size: 28px;
    font-weight: 800;
    color: #e63946;
    letter-spacing: -0.5px;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

.desktop-nav a {
    color: #2d3436;
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    position: relative;
}

.desktop-nav a:hover {
    border-bottom-color: #e63946;
}

.desktop-nav a i {
    margin-right: 6px;
}

.notifications-link .badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #e63946;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 20px;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn-pulse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #e63946, #d62828);
    color: white !important;
    padding: 8px 22px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
    animation: gentlePulse 2.5s infinite;
    line-height: 1;
    height: 42px;
    margin-left: 5px;
}

.btn-pulse i, .btn-pulse::before {
    margin-right: 6px;
    font-size: 18px;
}

.btn-pulse:hover {
    background: linear-gradient(145deg, #d62828, #b71c1c);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(230, 57, 70, 0.4);
    animation: none;
}

@keyframes gentlePulse {
    0% { box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3); }
    50% { box-shadow: 0 4px 18px rgba(230, 57, 70, 0.6); }
    100% { box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3); }
}

.user-menu {
    display: flex;
    gap: 15px;
    align-items: center;
}

.favorites-link {
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 50px;
    background: #f8f9fa;
    color: #ffc107;
    background: #fff3cd;
}

.favorites-link i {
    margin-right: 4px;
}

.tariff-badge {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    background: #28a745;
    color: white;
    white-space: nowrap;
}

/* Иконки соцсетей в шапке */
.desktop-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: bold;
}
.social-icon.max-icon {
    background: linear-gradient(145deg, #8B5CF6, #7C3AED);
    color: white;
    font-size: 14px;
    font-family: monospace;
}
.social-icon.max-icon:hover {
    background: #7C3AED;
    transform: translateY(-2px);
}
.social-icon.ok-icon {
    background: #ED812B;
    color: white;
    font-size: 20px;
}
.social-icon.ok-icon:hover {
    background: #e06e1a;
    transform: translateY(-2px);
}
.social-icon.vk-icon {
    background: #4C75A3;
    color: white;
    font-size: 20px;
}
.social-icon.vk-icon:hover {
    background: #3b5d82;
    transform: translateY(-2px);
}
.mobile-social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
}
.mobile-social-icons .social-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
}
@media (max-width: 768px) {
    .desktop-social-icons {
        display: none;
    }
}
@media (min-width: 769px) {
    .mobile-social-icons {
        display: none;
    }
}

/* ========== МОБИЛЬНОЕ МЕНЮ ========== */
.mobile-menu-toggle {
    display: none;
    font-size: 28px;
    color: #e63946;
    cursor: pointer;
    padding: 15px;
    position: relative;
}

.mobile-menu-toggle .badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #e63946;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 20px;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
}

.mobile-nav {
    display: none;
    background: white;
    padding: 20px;
    border-top: 1px solid #f1f1f1;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 15px;
    position: relative;
}

.mobile-nav a {
    display: block;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #2d3436;
    font-weight: 500;
    text-align: center;
}

.mobile-nav a i {
    margin-right: 8px;
}

.mobile-nav a:hover {
    background: #e63946;
    color: white;
}

.mobile-nav .badge {
    background: #e63946;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: 5px;
    display: inline-block;
    min-width: 20px;
    text-align: center;
}

.mobile-create-btn {
    background: #e63946 !important;
    color: white !important;
    font-weight: 700;
}

@media (max-width: 768px) {
    .desktop-nav, .desktop-only {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .mobile-nav.active {
        display: block;
    }
    .logo a {
        font-size: 24px;
    }
}

/* ========== ПЛАВАЮЩАЯ КНОПКА ========== */
.floating-create-btn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-floating {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #e63946, #c82333);
    color: white;
    border-radius: 50%;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-floating i {
    font-size: 32px;
}

.btn-floating:hover {
    transform: scale(1.1) rotate(90deg);
    background: linear-gradient(145deg, #c82333, #e63946);
    color: white;
}

@media (max-width: 768px) {
    .floating-create-btn {
        display: block;
    }
}

/* ========== ХЛЕБНЫЕ КРОШКИ ========== */
.breadcrumbs {
    margin: 20px 0;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumbs a {
    color: #e63946;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #2d3436;
}

/* ========== СЛУЧАЙНЫЕ ОБЪЯВЛЕНИЯ ========== */
.random-ads-section {
    margin: 30px 0 20px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f1f1f1;
    width: 100%;
    box-sizing: border-box;
}

.random-ads-title {
    font-size: 20px;
    color: #e63946;
    font-weight: 700;
    margin-bottom: 15px;
    padding-left: 5px;
}

.random-ads-wrapper {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #e63946 #f1f1f1;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.random-ads-wrapper::-webkit-scrollbar {
    height: 8px;
}

.random-ads-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.random-ads-wrapper::-webkit-scrollbar-thumb {
    background: #e63946;
    border-radius: 10px;
}

.random-ad-card {
    flex: 0 0 auto;
    width: 160px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    transition: transform 0.2s, box-shadow 0.2s;
}

.random-ad-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.15);
    border-color: #e63946;
}

.random-ad-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.random-ad-image {
    height: 160px;
    background: linear-gradient(145deg, #fff0f0, #ffe5e5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.random-ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.random-ad-image .no-image {
    font-size: 48px;
    color: #e63946;
}

.random-ad-info {
    padding: 10px;
    text-align: center;
}

.random-ad-name {
    font-weight: 600;
    color: #e63946;
    font-size: 14px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.random-ad-city {
    font-size: 12px;
    color: #6c757d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .random-ad-card {
        width: 130px;
    }
    .random-ad-image {
        height: 130px;
    }
    .random-ads-wrapper {
        gap: 10px;
    }
}

/* ========== ЛЕНТА ОПЛАТ ========== */
.payment-activity-section {
    margin: 20px 0 30px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f1f1f1;
    width: 100%;
    box-sizing: border-box;
}

.payment-activity-title {
    font-size: 24px;
    color: #e63946;
    font-weight: 700;
    text-align: center;
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 3px solid #e63946;
    display: block;
}

.payment-activity-wrapper {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #28a745 #f1f1f1;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.payment-activity-wrapper::-webkit-scrollbar {
    height: 8px;
}

.payment-activity-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.payment-activity-wrapper::-webkit-scrollbar-thumb {
    background: #28a745;
    border-radius: 10px;
}

.payment-activity-card {
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 260px;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 14px;
    padding: 15px;
    border-left: 5px solid #28a745;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-activity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.15);
    border-left-color: #1e7e34;
}

.pa-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.pa-info {
    flex: 1;
    min-width: 0;
}

.pa-name {
    font-weight: 700;
    font-size: 15px;
    color: #2d3436;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pa-city {
    font-size: 13px;
    color: #6c757d;
    margin: 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pa-purpose {
    font-size: 12px;
    color: #e63946;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pa-tariff {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pa-time {
    font-size: 11px;
    color: #6c757d;
    font-weight: 500;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .payment-activity-card {
        min-width: 160px;
        padding: 12px;
    }
    .pa-name {
        font-size: 13px;
    }
    .pa-city {
        font-size: 11px;
    }
    .pa-purpose {
        font-size: 11px;
    }
    .pa-time {
        font-size: 10px;
    }
}

/* ========== ГЕРОЙ ========== */
.page-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    padding: 25px 0;
    background: linear-gradient(145deg, #fff9f9, #fff0f0);
    border-radius: 60px 60px 20px 20px;
    box-shadow: 0 5px 20px rgba(230,57,70,0.08);
    border-bottom: 3px solid #e63946;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 5px;
    display: inline-block;
    position: relative;
    padding: 0 20px;
}

.page-header h1 span {
    color: #e63946;
}

@media (max-width: 768px) {
    .page-header {
        padding: 15px 10px;
        margin-bottom: 25px;
        border-radius: 40px 40px 15px 15px;
    }
    .page-header h1 {
        font-size: 24px;
        padding: 0 10px;
        white-space: normal;
    }
}
/* ========== ФИЛЬТРЫ ПОИСКА ========== */
.search-filters {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f1f1f1;
}

.filters-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.filter-group {
    flex: 1 1 180px;
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3436;
    font-size: 14px;
}

.age-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.age-range input {
    width: 80px;
    padding: 10px;
    border: 2px solid #dfe6e9;
    border-radius: 10px;
    font-size: 14px;
}

.filter-group select {
    width: 100%;
    padding: 10px;
    border: 2px solid #dfe6e9;
    border-radius: 10px;
    font-size: 14px;
    background: white;
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 0 0 auto;
}

.btn-filter {
    background: #e63946;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-filter:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.btn-reset {
    color: #6c757d;
    padding: 10px 15px;
    border-radius: 50px;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .search-filters {
        padding: 15px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .filters-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .filter-group {
        flex: 0 0 100%;
    }
    .filter-group:nth-child(1) {
        grid-column: span 2;
    }
    .age-range {
        display: flex;
        gap: 8px;
    }
    .age-range input {
        width: calc(50% - 4px);
        padding: 10px;
        font-size: 14px;
    }
    .filter-group select {
        padding: 10px;
        font-size: 14px;
    }
    .filter-actions {
        grid-column: span 2;
        display: flex;
        gap: 8px;
        margin-top: 5px;
    }
    .btn-filter, .btn-reset {
        flex: 1;
        padding: 12px 10px;
        font-size: 15px;
        text-align: center;
    }
}

/* ========== СЕТКА ОБЪЯВЛЕНИЙ ========== */
.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.ad-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.3s;
    border: 1px solid #f1f1f1;
}

.ad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.1);
    border-color: #e63946;
}

.ad-image {
    height: 320px;
    background: linear-gradient(145deg, #fff0f0, #ffe5e5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ad-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.ad-image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    font-size: 64px;
}

.ad-info {
    padding: 20px;
}

.ad-info h3 {
    margin-bottom: 10px;
    color: #e63946;
    font-size: 20px;
}

.ad-info h3 a {
    color: #e63946;
    text-decoration: none;
}

.ad-info h3 a:hover {
    color: #c82333;
    text-decoration: underline;
}

.city, .purpose, .gender {
    color: #636e72;
    font-size: 14px;
    margin-bottom: 5px;
}

.about {
    font-size: 14px;
    margin: 15px 0;
    color: #2d3436;
    line-height: 1.5;
}

.ad-date {
    font-size: 12px;
    color: #95a5a6;
    margin-top: 5px;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad-actions {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.btn-contacts {
    background: #28a745;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    flex: 1 1 auto;
    font-weight: 600;
    transition: all 0.3s;
    min-width: 100px;
}

.btn-contacts:hover {
    background: #218838;
}

.btn-favorite {
    background: white;
    border: 2px solid #e63946;
    border-radius: 50px;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-favorite.active {
    background: #e63946;
    border-color: #e63946;
    color: white;
}

.btn-report {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50px;
    width: 45px;
    height: 45px;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-share {
    background: #17a2b8;
    color: white;
    border: none;
    border-radius: 50px;
    width: 45px;
    height: 45px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-share:hover {
    background: #138496;
    transform: translateY(-2px);
}

.btn-like {
    background: white;
    border: 2px solid #e63946;
    border-radius: 50px;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #6c757d;
}

.btn-like.active {
    background: #e63946;
    border-color: #e63946;
    color: white;
}

.btn-like i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .btn-favorite, .btn-report, .btn-share, .btn-like {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .btn-contacts {
        padding: 8px 12px;
        font-size: 14px;
        min-width: 80px;
    }
    .ad-actions {
        gap: 5px;
    }
}

/* ========== ПАГИНАЦИЯ ========== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    background: white;
    border: 1px solid #e63946;
    border-radius: 10px;
    color: #e63946;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.pagination a:hover {
    background: #e63946;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(230, 57, 70, 0.3);
}

.pagination span.active {
    background: #e63946;
    color: white;
    border-color: #e63946;
    cursor: default;
}

.pagination span.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination .pagination-arrow {
    font-size: 18px;
}

.pagination .pagination-dots {
    border: none;
    background: transparent;
    color: #6c757d;
    min-width: 30px;
}

@media (max-width: 768px) {
    .pagination {
        gap: 5px;
    }
    .pagination a,
    .pagination span {
        min-width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* ========== ПУСТОЕ СОСТОЯНИЕ ========== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    margin: 40px 0;
}

.empty-state p {
    font-size: 20px;
    margin-bottom: 15px;
}

/* ========== SEO-ТЕКСТ ========== */
.seo-text {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f1f1f1;
}

.seo-text h2 {
    color: #e63946;
    margin-bottom: 20px;
    font-size: 24px;
}

.seo-text p {
    margin-bottom: 15px;
    color: #2d3436;
    line-height: 1.6;
}

.seo-text ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.seo-text li {
    margin-bottom: 5px;
}

/* ========== МОДАЛЬНЫЕ ОКНА ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal-content {
    background: white;
    margin: 50px auto;
    padding: 40px;
    max-width: 550px;
    border-radius: 25px;
    position: relative;
    animation: modalFadeIn 0.3s;
}

.bot-modal-content, .report-modal-content, .preview-modal-content, .share-modal-content {
    max-width: 700px;
}

.tariff-modal-content {
    max-width: 850px;
    padding: 30px 25px;
}

.share-modal-content {
    max-width: 500px;
    text-align: center;
}

.share-modal-content .share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.share-modal-content .share-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
}

#share-url-display {
    word-break: break-all;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
}

@keyframes modalFadeIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close, .close-bot, .close-report, .close-pending, .close-limit, .close-preview, .close-share, .close-tariff, .close-payment-wait {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #636e72;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover, .close-bot:hover, .close-report:hover, .close-pending:hover, .close-limit:hover, .close-preview:hover, .close-share:hover, .close-tariff:hover, .close-payment-wait:hover {
    color: #e63946;
}

/* ========== КАРТОЧКИ ТАРИФОВ ========== */
.tariff-card {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.tariff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.tariff-card.premium {
    border-color: #FFD700 !important;
    background: linear-gradient(145deg, #fff9e6, #fff3cd) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.tariff-card.premium:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.btn-select-tariff {
    transition: all 0.3s;
}

.btn-select-tariff:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Спиннер для ожидания оплаты */
.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #e63946;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== МОДАЛЬНОЕ ОКНО ПРЕДПРОСМОТРА ========== */
.preview-ad-details {
    margin-top: 20px;
}

.preview-ad-image {
    text-align: center;
    margin-bottom: 20px;
}

.preview-ad-image img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 15px;
    border: 2px solid #e63946;
}

.preview-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.preview-info-item {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 10px;
}

.preview-info-item strong {
    color: #e63946;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.preview-info-item span {
    font-size: 16px;
    word-break: break-word;
}

.preview-about {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.preview-about strong {
    color: #e63946;
    display: block;
    margin-bottom: 8px;
}

.preview-contacts {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #28a745;
}

.preview-contacts p {
    margin: 8px 0;
    font-size: 16px;
}

.preview-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.preview-actions a {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    flex: 1;
}

/* ========== ВЕБ-БОТ ========== */
.bot-step {
    display: none;
}

.bot-step.active {
    display: block;
}

.bot-step h3 {
    color: #e63946;
    margin-bottom: 20px;
}

.bot-step input,
.bot-step select,
.bot-step textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e63946;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 20px;
}

.bot-step .btn-next,
.btn-finish {
    background: #e63946;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.bot-step .btn-next:hover,
.btn-finish:hover {
    background: #c82333;
}

.btn-finish {
    background: #28a745;
    width: 100%;
    margin-top: 15px;
}

.char-counter {
    text-align: right;
    margin-bottom: 15px;
    color: #6c757d;
    font-size: 14px;
}

.email-hint {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #6c757d;
}

.photo-upload-area {
    border: 2px dashed #e63946;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.captcha-group {
    margin-bottom: 20px;
}

.captcha-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

#bot-preview {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

#preview-content {
    margin: 20px 0;
    line-height: 1.8;
}

/* ========== ПРОФИЛЬ ========== */
.profile-container {
    max-width: 800px;
}

.profile-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.profile-info p {
    margin-bottom: 15px;
    font-size: 18px;
}

.premium-badge {
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
}

.basic-badge {
    background: #6c757d;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
}

.profile-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* ========== СТРАНИЦА ПОМОЩИ ========== */
.help-container {
    max-width: 800px;
}

.help-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
}

.help-content h2 {
    color: #e63946;
    margin-bottom: 30px;
}

.help-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2d3436;
}

.help-content p {
    margin-bottom: 15px;
    color: #636e72;
}

/* ========== СТАТЬИ ========== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.3s;
    border: 1px solid #f1f1f1;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.1);
    border-color: #e63946;
}

.article-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover img {
    transform: scale(1.02);
}

.article-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-info h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.3;
}

.article-info h3 a {
    color: #2d3436;
    transition: color 0.3s;
}

.article-info h3 a:hover {
    color: #e63946;
}

.article-meta {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 15px;
}

.preview {
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #e63946;
    font-weight: 600;
    margin-top: auto;
    align-self: flex-start;
}

.full-article {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.article-image-container {
    margin-bottom: 30px;
}

.article-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.article-meta-info {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
    color: #95a5a6;
    font-size: 14px;
    flex-wrap: wrap;
}

.article-keywords {
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 50px;
}

.article-text {
    line-height: 1.8;
    font-size: 18px;
    color: #2d3436;
    margin-bottom: 40px;
}

.article-footer {
    margin-top: 30px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 22px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.share-btn.vk {
    background: #4c75a3;
}

.share-btn.ok {
    background: #ed812b;
}

.share-btn.copy-link {
    background: #6c757d;
}

.share-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .full-article {
        padding: 25px;
    }
    .article-text {
        font-size: 16px;
    }
}

/* ========== СТРАНИЦА ОТДЕЛЬНОГО ОБЪЯВЛЕНИЯ ========== */
.ad-view-container {
    max-width: 900px;
}

.ad-view-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.ad-view-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    background: #f8f9fa;
    text-align: center;
}

.ad-view-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.no-image-large {
    font-size: 120px;
    padding: 60px 0;
}

.ad-view-info {
    padding: 30px;
}

.ad-view-info h1 {
    color: #e63946;
    margin-bottom: 20px;
    font-size: 32px;
}

.ad-view-detail {
    font-size: 18px;
    margin-bottom: 10px;
}

.ad-view-about {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.6;
}

.ad-view-date {
    color: #6c757d;
    margin: 15px 0;
}

.ad-view-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
    align-items: center;
}

.ad-view-actions .btn-contacts {
    flex: 0 1 auto;
    min-width: 140px;
    padding: 12px 25px;
    font-size: 16px;
}

.ad-view-actions .btn-favorite,
.ad-view-actions .btn-report,
.ad-view-actions .btn-share,
.ad-view-actions .btn-like {
    width: 45px;
    height: 45px;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.ad-view-actions .btn-favorite {
    background: white;
    border: 2px solid #e63946;
}

.ad-view-actions .btn-favorite.active {
    background: #e63946;
    color: white;
}

.ad-view-actions .btn-like {
    background: white;
    border: 2px solid #e63946;
    color: #6c757d;
}

.ad-view-actions .btn-like.active {
    background: #e63946;
    color: white;
}

.ad-view-actions .btn-report {
    background: #dc3545;
    color: white;
}

.ad-view-actions .btn-share {
    background: #17a2b8;
    color: white;
}

.ad-view-note {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.ad-view-back-link {
    margin-top: 20px;
    display: inline-block;
}

@media (max-width: 768px) {
    .ad-view-actions {
        gap: 10px;
        justify-content: flex-start;
    }
    .ad-view-actions .btn-contacts {
        min-width: 120px;
        padding: 10px 20px;
        font-size: 14px;
    }
    .ad-view-actions .btn-favorite,
    .ad-view-actions .btn-report,
    .ad-view-actions .btn-share,
    .ad-view-actions .btn-like {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .ad-view-note {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .ad-view-back-link {
        margin-top: 15px;
    }
}
/* ========== ФОРМЫ ========== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3436;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #dfe6e9;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e63946;
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

/* ========== УВЕДОМЛЕНИЯ ========== */
.notifications-container {
    max-width: 800px;
    margin: 0 auto;
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.notification-item {
    background: white;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 5px solid #e63946;
    transition: all 0.2s;
    cursor: pointer;
}

.notification-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.notification-item.unread {
    background: #fff0f0;
    border-left-color: #e63946;
    font-weight: 500;
}

.notification-item.read {
    background: white;
    border-left-color: #6c757d;
    opacity: 0.8;
}

.notification-message {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2d3436;
}

.notification-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #6c757d;
}

.notification-date {
    color: #95a5a6;
}

.notification-link {
    color: #e63946;
    font-weight: 600;
    text-decoration: none;
}

.notification-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .notification-item {
        padding: 15px;
    }
    .notification-message {
        font-size: 15px;
    }
}

/* ========== ПРАВИЛА ========== */
.rules-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.rules-content h2 {
    color: #e63946;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 24px;
}

.rules-content h2:first-of-type {
    margin-top: 0;
}

.rules-content ul, .rules-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.rules-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.rules-content ul ul {
    margin-top: 5px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .rules-content {
        padding: 25px;
    }
}

/* ========== ФУТЕР ========== */
.site-footer {
    background: #2d3436;
    color: white;
    padding: 50px 0;
    margin-top: 80px;
}

.footer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 18px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.footer-support {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-support a {
    color: #ffc107;
    font-weight: 600;
}

.footer-social {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-label {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons .social-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.footer-links a,
.footer-links-group a,
.footer-links-block a {
    color: #ffc107;
}
.footer-links a:hover,
.footer-links-group a:hover,
.footer-links-block a:hover {
    color: #ffda6a;
    text-decoration: underline;
}

/* ========== АДМИН-ПАНЕЛЬ ========== */
.admin-body {
    background: #f1f5f9;
}

.admin-container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    overflow: hidden;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(145deg, #e63946, #c82333);
    color: white;
    border-radius: 15px 15px 0 0;
    flex-wrap: wrap;
    position: relative;
}

.admin-header h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: -0.5px;
}

.admin-header h1 span {
    color: #FFD700;
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-logout {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-logout:hover {
    background: rgba(255,255,255,0.3);
}

.mobile-admin-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.admin-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 25px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.stat-card:hover {
    border-color: #e63946;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    padding: 0 20px;
}

.admin-tabs .tab-btn {
    padding: 12px 25px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.admin-tabs .tab-btn.active {
    background: #e63946;
    color: white;
    border-color: #e63946;
}

.table-container {
    overflow-x: auto;
    margin: 0 20px 20px;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.admin-table th {
    background: #f8f9fa;
    padding: 15px;
    font-weight: 700;
    color: #2d3436;
    border-bottom: 2px solid #e63946;
    text-align: left;
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
}

.status {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-approved { background: #d4edda; color: #155724; }
.status-rejected { background: #f8d7da; color: #721c24; }
.status-paid { background: #d4edda; color: #155724; }
.status-failed { background: #f8d7da; color: #721c24; }
.status-refunded { background: #e2e3e5; color: #383d41; }

.btn-approve, .btn-reject, .btn-delete, .btn-preview {
    padding: 6px 12px;
    border-radius: 8px;
    color: white;
    font-size: 13px;
    margin: 0 3px;
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-approve { background: #28a745; }
.btn-reject { background: #dc3545; }
.btn-delete { background: #6c757d; }
.btn-preview { background: #17a2b8; }

.action-buttons {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.tab-pane {
    display: none;
    padding: 0 0 25px;
}

.tab-pane.active {
    display: block;
}

@media (max-width: 768px) {
    .admin-header {
        padding: 15px 20px;
    }
    .admin-header h1 {
        font-size: 22px;
    }
    .mobile-admin-toggle {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
    }
    .admin-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-top: 15px;
        background: rgba(255,255,255,0.1);
        padding: 15px;
        border-radius: 15px;
    }
    .admin-nav.active {
        display: flex;
    }
    .admin-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .admin-actions span {
        text-align: center;
    }
    .btn-logout {
        text-align: center;
    }
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
        margin: 15px;
    }
    .admin-tabs {
        flex-direction: column;
        gap: 8px;
        padding: 0 15px;
    }
    .admin-tabs .tab-btn {
        width: 100%;
        text-align: left;
        border-radius: 12px;
        padding: 14px 20px;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        border: none;
        background: #f8f9fa;
        color: #2d3436;
        box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    }
    .admin-tabs .tab-btn.active {
        background: #e63946;
        color: white;
        box-shadow: 0 4px 10px rgba(230,57,70,0.3);
    }
    .admin-tabs .tab-btn i {
        font-size: 20px;
        width: 24px;
    }
    .table-container {
        margin: 0 15px 20px;
        border-radius: 12px;
    }
    .admin-table th, .admin-table td {
        padding: 12px;
        font-size: 14px;
    }
    .action-buttons {
        flex-direction: column;
        gap: 5px;
    }
    .action-buttons a, .action-buttons button {
        width: 100%;
        text-align: center;
    }
}

.login-page {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #e63946, #c82333);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 15px;
}

.login-box {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-box h1 {
    color: #e63946;
    margin-bottom: 10px;
    font-size: 32px;
}

.login-box h1 span {
    color: #FFD700;
}

.login-box h2 {
    margin-bottom: 30px;
    font-size: 20px;
    color: #2d3436;
}

.login-box input {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 2px solid #dfe6e9;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.login-box input:focus {
    border-color: #e63946;
    outline: none;
}

.login-box button {
    width: 100%;
    padding: 14px;
    background: #e63946;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.login-box button:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.error {
    color: #dc3545;
    margin-bottom: 15px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
        max-width: 320px;
    }
    .login-box h1 {
        font-size: 28px;
    }
    .login-box h2 {
        font-size: 18px;
        margin-bottom: 25px;
    }
    .login-box input {
        padding: 12px;
        font-size: 15px;
    }
    .login-box button {
        padding: 12px;
        font-size: 16px;
    }
}

.step-hint {
    background: #fff3cd;
    color: #856404;
    padding: 12px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    border-left: 4px solid #ffc107;
}

.contacts-section {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
}

.contact-option {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

.contact-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 600;
    color: #2d3436;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #e63946;
    border: 2px solid #e63946;
    border-radius: 5px;
    cursor: pointer;
}

#email-field-container,
#phone-field-container {
    margin-left: 32px;
    transition: all 0.2s ease;
}

#email-field-container input,
#phone-field-container input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #dfe6e9;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
}

#email-field-container input:focus,
#phone-field-container input:focus {
    border-color: #e63946;
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.phone-hint {
    background: #e7f5ff;
    color: #0c5460;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 14px;
    border-left: 4px solid #17a2b8;
}

.personal-data-consent {
    background: #e8f5e9;
    border-radius: 16px;
    padding: 20px;
    margin: 25px 0 20px;
    border: 1px solid #c8e6c9;
}

.consent-checkbox {
    font-weight: normal;
    font-size: 15px;
    line-height: 1.5;
    color: #1e4620;
}

.consent-checkbox a {
    color: #0d47a1;
    text-decoration: underline;
    font-weight: 600;
}

.consent-checkbox a:hover {
    color: #002171;
}

#contacts-error {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 500;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .contacts-section {
        padding: 15px;
    }
    .checkbox-label {
        font-size: 15px;
    }
    #email-field-container,
    #phone-field-container {
        margin-left: 0;
        margin-top: 15px;
    }
    .personal-data-consent {
        padding: 15px;
    }
}

/* ========== ПОСАДОЧНАЯ СТРАНИЦА (landing) ========== */
.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.landing-header {
    text-align: center;
    margin: 40px 0;
}

.landing-header h1 {
    font-size: 36px;
    color: #e63946;
    margin-bottom: 15px;
}

.landing-subheader {
    font-size: 18px;
    color: #2d3436;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.landing-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.advantage-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f1f1f1;
}

.advantage-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.advantage-item h3 {
    color: #e63946;
    margin-bottom: 10px;
    font-size: 20px;
}

.advantage-item p {
    color: #636e72;
    line-height: 1.5;
}

.landing-examples {
    margin: 50px 0;
}

.landing-examples h2 {
    text-align: center;
    color: #e63946;
    margin-bottom: 30px;
    font-size: 28px;
}

.landing-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.landing-cta .btn {
    min-width: 250px;
    padding: 15px 30px;
    font-size: 18px;
}

.landing-seo-text {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 50px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f1f1f1;
}

.landing-seo-text h2 {
    color: #e63946;
    margin-bottom: 20px;
    font-size: 24px;
}

.landing-seo-text p {
    margin-bottom: 15px;
    color: #2d3436;
    line-height: 1.6;
}

.no-examples {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    padding: 40px;
}

@media (max-width: 768px) {
    .landing-header h1 {
        font-size: 28px;
    }
    .landing-subheader {
        font-size: 16px;
    }
    .landing-advantages {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .landing-cta {
        flex-direction: column;
        align-items: center;
    }
    .landing-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ========== СТРАНИЦА WHY-US (ПОЧЕМУ МЫ?) ========== */
.why-us-container {
    max-width: 1000px;
    margin: 0 auto;
}

.why-us-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 30px 0;
}

.why-us-content h1 {
    color: #e63946;
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.why-us-content .lead {
    font-size: 18px;
    color: #2d3436;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #e63946;
}

.comparison-section {
    margin: 40px 0;
}

.comparison-section h2 {
    color: #e63946;
    margin-bottom: 25px;
    font-size: 26px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.comparison-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.comparison-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.comparison-item.bad h3 {
    color: #dc3545;
}

.comparison-item.good h3 {
    color: #28a745;
}

.comparison-item ul {
    list-style: none;
}

.comparison-item li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.comparison-item.bad li::before {
    content: "❌";
    position: absolute;
    left: 0;
    top: 0;
}

.comparison-item.good li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
}

.advantages-detailed {
    background: #e8f5e9;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.advantages-detailed h2 {
    color: #1e4620;
    margin-bottom: 20px;
}

.advantages-detailed ul {
    list-style: none;
}

.advantages-detailed li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.advantages-detailed li::before {
    content: "🔑";
    position: absolute;
    left: 0;
    top: 0;
}

.myths {
    margin: 40px 0;
}

.myths h2 {
    color: #e63946;
    margin-bottom: 25px;
}

.myth-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #ffc107;
}

.myth-item .myth {
    font-weight: 700;
    color: #856404;
    margin-bottom: 10px;
    font-size: 18px;
}

.myth-item .fact {
    color: #2d3436;
}

.final-cta {
    text-align: center;
    margin: 40px 0 20px;
    padding: 30px;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
}

.final-cta h2 {
    color: #e63946;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 25px;
}

.why-us-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.why-us-buttons .btn {
    min-width: 220px;
    padding: 15px 25px;
}

@media (max-width: 768px) {
    .why-us-content {
        padding: 25px;
    }
    .why-us-content h1 {
        font-size: 26px;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .myth-item .myth {
        font-size: 16px;
    }
    .why-us-buttons .btn {
        width: 100%;
        min-width: auto;
    }
}

/* ========== СТИЛИ ДЛЯ КОМПАКТНОГО ОКНА ОПЛАТЫ, КНОПОК КОПИРОВАНИЯ И ИКОНОК БАНКОВ ========== */
.copy-btn {
    background: white;
    color: #e63946;
    border: none;
    border-radius: 6px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.copy-btn:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.copy-btn i {
    font-size: 14px;
}

.bank-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    min-width: 60px;
}

.bank-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.bank-icon.sber {
    background: linear-gradient(135deg, #21a038, #14802b);
}

.bank-icon.vtb {
    background: linear-gradient(135deg, #003791, #002878);
}

.bank-icon.alfa {
    background: linear-gradient(135deg, #e31e24, #c8102e);
}

.bank-label {
    font-weight: 600;
    font-size: 11px;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
}

.bank-label.sber {
    color: #14802b;
}

.bank-label.vtb {
    color: #003791;
}

.bank-label.alfa {
    color: #b71c1c;
    text-decoration-color: white;
}

@media (max-width: 480px) {
    .bank-item {
        min-width: 50px;
    }
    .bank-label {
        font-size: 9px;
    }
}
.bank-label.sber {
    color: #14802b;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.bank-label.vtb {
    color: #003791;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.bank-label.alfa {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ========== БЛОГ ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.3s;
    border: 1px solid #f1f1f1;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.1);
    border-color: #e63946;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover img {
    transform: scale(1.02);
}

.blog-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-info h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.3;
}

.blog-info h3 a {
    color: #2d3436;
    transition: color 0.3s;
}

.blog-info h3 a:hover {
    color: #e63946;
}

.blog-meta {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 15px;
}

.blog-full {
    max-width: 900px;
    margin: 0 auto;
}

.full-blog-post {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.blog-image-container {
    margin-bottom: 30px;
    text-align: center;
}

.blog-image {
    max-width: 100%;
    max-height: 500px;
    border-radius: 15px;
}

.blog-meta-info {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
    color: #95a5a6;
    font-size: 14px;
}

.blog-text {
    line-height: 1.8;
    font-size: 18px;
    color: #2d3436;
    margin-bottom: 40px;
}

.blog-footer {
    margin-top: 30px;
    text-align: center;
}

.blog-poll {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #e63946;
}

.blog-poll h3 {
    margin-bottom: 20px;
    color: #e63946;
    font-size: 22px;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.poll-option button {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e63946;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    color: #2d3436;
    text-align: left;
}

.poll-option button:hover {
    background: #e63946;
    color: white;
    transform: translateX(5px);
}

.poll-results {
    margin-top: 20px;
}

.poll-result-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.poll-result-text {
    width: 200px;
    font-weight: 500;
}

.poll-result-bar {
    background: #e63946;
    height: 10px;
    border-radius: 5px;
    transition: width 0.3s;
}

.poll-result-percent {
    font-size: 14px;
    color: #6c757d;
    min-width: 80px;
}

.poll-total {
    margin-top: 20px;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.poll-message {
    margin-top: 15px;
    padding: 10px;
    background: #fff3cd;
    border-radius: 8px;
    color: #856404;
    text-align: center;
}

.btn-like-blog {
    background: white;
    border: 2px solid #e63946;
    border-radius: 50px;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #6c757d;
}

.btn-like-blog.active {
    background: #e63946;
    color: white;
}

.btn-like-blog i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .full-blog-post {
        padding: 25px;
    }
    .blog-text {
        font-size: 16px;
    }
    .poll-result-text {
        width: 100%;
        margin-bottom: 5px;
    }
    .poll-option button {
        padding: 10px 15px;
        font-size: 15px;
    }
}

/* ========== СТРАНИЦА ЗНАКОМСТВ В MAX ========== */
.max-landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.max-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 30px;
    padding: 50px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.max-hero-content {
    flex: 1;
}

.max-hero-content h1 {
    font-size: 42px;
    color: #2d3436;
    margin-bottom: 20px;
    line-height: 1.2;
}

.max-highlight {
    color: #e63946;
    background: linear-gradient(120deg, rgba(230,57,70,0.1) 0%, rgba(230,57,70,0.1) 100%);
    padding: 0 8px;
    display: inline-block;
}

.max-subheader {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 30px;
    line-height: 1.6;
}

.max-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-max-primary {
    background: #8B5CF6;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
}

.btn-max-primary:hover {
    background: #7C3AED;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.btn-max-secondary {
    background: #e63946;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
}

.btn-max-secondary:hover {
    background: #c82333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

.max-hero-image {
    flex: 0 0 200px;
    text-align: center;
}

.max-badge {
    background: #8B5CF6;
    color: white;
    font-size: 48px;
    font-weight: 800;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.max-qr-placeholder {
    background: white;
    padding: 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #8B5CF6;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.max-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.max-advantage-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f1f1f1;
    transition: all 0.3s;
}

.max-advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.1);
    border-color: #e63946;
}

.max-advantage-card .advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.max-advantage-card h3 {
    color: #e63946;
    margin-bottom: 15px;
    font-size: 22px;
}

.max-advantage-card p {
    color: #636e72;
    line-height: 1.6;
}

.max-fresh-ads {
    margin: 50px 0;
    background: #fff0f0;
    border-radius: 30px;
    padding: 40px;
}

.max-fresh-ads h2 {
    text-align: center;
    color: #e63946;
    font-size: 28px;
    margin-bottom: 15px;
}

.max-fresh-subtitle {
    text-align: center;
    color: #636e72;
    margin-bottom: 30px;
}

.max-ads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.max-ad-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.max-ad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230,57,70,0.15);
}

.max-ad-image {
    width: 100%;
    height: 220px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.max-ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.max-ad-card:hover .max-ad-image img {
    transform: scale(1.05);
}

.max-ad-image .no-photo {
    font-size: 48px;
    color: #e63946;
    background: linear-gradient(145deg, #fff0f0, #ffe5e5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.max-ad-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.max-ad-name {
    font-size: 18px;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 8px;
}

.max-ad-city, .max-ad-purpose, .max-ad-gender {
    font-size: 13px;
    color: #636e72;
    margin-bottom: 5px;
}

.max-ad-about {
    font-size: 13px;
    line-height: 1.5;
    color: #2d3436;
    margin: 12px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.max-ad-link {
    margin-top: 10px;
}

.btn-max-channel-small {
    display: inline-block;
    background: #8B5CF6;
    color: white;
    padding: 8px 12px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.btn-max-channel-small:hover {
    background: #7C3AED;
    transform: translateY(-2px);
}

.max-ads-more {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 900px) {
    .max-ads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .max-ads-grid {
        grid-template-columns: 1fr;
    }
    .max-ad-image {
        height: 200px;
    }
}

.max-channel-info {
    background: linear-gradient(145deg, #fff0f0, #ffe5e5);
    border-radius: 30px;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
}

.max-channel-info h2 {
    color: #e63946;
    font-size: 28px;
    margin-bottom: 20px;
}

.max-channel-info p {
    color: #2d3436;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-max-channel {
    background: #8B5CF6;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-top: 15px;
}

.btn-max-channel:hover {
    background: #7C3AED;
    transform: translateY(-2px);
}

.max-cta-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: #2d3436;
    border-radius: 30px;
    padding: 40px;
    margin: 50px 0;
    color: white;
    flex-wrap: wrap;
}

.max-cta-text {
    flex: 2;
}

.max-cta-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.max-cta-text p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.max-cta-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 20px;
}

.stat-item {
    font-size: 18px;
    font-weight: 600;
    padding: 10px;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.max-faq-accordion {
    margin: 50px 0;
}

.max-faq-accordion h2 {
    text-align: center;
    color: #e63946;
    font-size: 28px;
    margin-bottom: 30px;
}

.faq-accordion {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    border: 1px solid #f1f1f1;
}

.faq-item {
    border-bottom: 1px solid #f1f1f1;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: #f8f9fa;
    padding: 18px 25px;
    font-weight: 600;
    font-size: 18px;
    color: #2d3436;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f1f3f5;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #e63946;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    background: white;
    transition: max-height 0.3s ease, padding 0.3s ease;
    line-height: 1.6;
    color: #636e72;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 18px 25px;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
        padding: 15px 20px;
    }
    .faq-answer {
        font-size: 14px;
    }
}

.max-seo-text {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f1f1f1;
}

.max-seo-text h2 {
    color: #e63946;
    font-size: 26px;
    margin-bottom: 20px;
}

.max-seo-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #2d3436;
}

.max-seo-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.max-seo-text li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .max-hero {
        padding: 30px;
        text-align: center;
    }
    .max-hero-content h1 {
        font-size: 32px;
    }
    .max-buttons {
        justify-content: center;
    }
    .max-advantages {
        grid-template-columns: 1fr;
    }
    .max-channel-info {
        padding: 25px;
    }
    .max-channel-info h2 {
        font-size: 24px;
    }
    .max-cta-block {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== НОВАЯ СТРАНИЦА: ПРЯМЫЕ КОНТАКТЫ ========== */
.direct-contacts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.contact-method-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f1f1f1;
    transition: all 0.3s;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.1);
    border-color: #e63946;
}

.contact-method-card i {
    color: #e63946;
    margin-bottom: 15px;
}

.contact-method-card h3 {
    color: #e63946;
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-method-card p {
    color: #636e72;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-small {
    display: inline-block;
    background: #e63946;
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-small:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.direct-contacts-stats {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    border-left: 5px solid #e63946;
}

.direct-contacts-stats h2 {
    color: #e63946;
    margin-bottom: 20px;
}

.direct-contacts-stats ul {
    list-style: none;
    margin-bottom: 20px;
}

.direct-contacts-stats li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.direct-contacts-stats li::before {
    content: "•";
    color: #e63946;
    font-size: 18px;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    .direct-contacts-stats {
        padding: 20px;
    }
}

/* ========== ОФЛАЙН-ОВЕРЛЕЙ ДЛЯ RUSTORE ========== */
#offline-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(8px);
}
#offline-overlay > div {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    max-width: 350px;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: fadeInUp 0.3s ease;
}
#offline-overlay h2 {
    color: #e63946;
    margin-bottom: 15px;
}
#offline-overlay button {
    background: #e63946;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
#offline-overlay button:hover {
    background: #c82333;
    transform: translateY(-2px);
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== НОВЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ MAX-КАНАЛЫ ========== */
.max-channels-container {
    max-width: 1200px;
}
.channels-hero {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    margin-bottom: 40px;
}
.channels-hero h1 {
    font-size: 38px;
    color: #2d3436;
}
.max-grad {
    background: linear-gradient(145deg, #8B5CF6, #7C3AED);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}
.channels-hero .hero-sub {
    font-size: 18px;
    margin: 20px 0;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.btn-max-primary, .btn-max-secondary {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
}
.btn-max-primary {
    background: #8B5CF6;
    color: white;
}
.btn-max-primary:hover {
    background: #7C3AED;
    transform: translateY(-2px);
}
.btn-max-secondary {
    background: #e63946;
    color: white;
}
.btn-max-secondary:hover {
    background: #c82333;
}
.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.channel-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #f1f1f1;
    transition: transform 0.2s;
}
.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #8B5CF6;
}
.channel-icon {
    font-size: 48px;
    margin-bottom: 15px;
}
.channel-card h3 {
    color: #2d3436;
    margin-bottom: 15px;
}
.channel-link {
    display: inline-block;
    margin-top: 15px;
    background: #8B5CF6;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
}
.channel-stats, .channel-faq, .channels-seo-text {
    margin: 40px 0;
    background: white;
    border-radius: 20px;
    padding: 30px;
}
.channel-stats ul, .channels-seo-text ul {
    list-style: none;
    padding-left: 0;
}
.channel-stats li, .channels-seo-text li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}
.channel-stats li::before, .channels-seo-text li::before {
    content: "✅";
    position: absolute;
    left: 0;
}
.faq-item {
    border-bottom: 1px solid #e9ecef;
}
.faq-question {
    font-weight: 700;
    padding: 18px 0;
    cursor: pointer;
    position: relative;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 10px;
    font-size: 24px;
    color: #8B5CF6;
}
.faq-item.active .faq-question::after {
    content: '−';
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: all 0.3s;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 18px;
}

/* ========== НОВЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ ОДНОКЛАССНИКИ ========== */
.ok-landing-container {
    max-width: 1200px;
}
.ok-hero {
    background: linear-gradient(145deg, #fff5eb, #ffebd2);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    margin-bottom: 40px;
}
.btn-ok-primary {
    background: #ED812B;
    color: white;
}
.btn-ok-primary:hover {
    background: #e06e1a;
}
.btn-ok-secondary {
    background: #2d3436;
}
.ok-advantages, .vk-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}
.adv-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.adv-card i {
    color: #ED812B;
}
.ok-stats, .vk-stats, .board-stats {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
}
.ok-groups-list, .vk-groups-list {
    margin: 40px 0;
}
.group-item {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #ED812B;
}
.group-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

/* ========== НОВЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ ВКОНТАКТЕ ========== */
.vk-landing-container {
    max-width: 1200px;
}
.vk-hero {
    background: linear-gradient(145deg, #e9f0f9, #d9e4f0);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    margin-bottom: 40px;
}
.btn-vk-primary {
    background: #4C75A3;
    color: white;
}
.btn-vk-primary:hover {
    background: #3b5d82;
}
.btn-vk-secondary {
    background: #2d3436;
}
.vk-stats li::before {
    content: "🔹";
}
.group-item.vk-group {
    border-left-color: #4C75A3;
}

/* ========== НОВЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ ДОСКИ ОБЪЯВЛЕНИЙ ========== */
.board-contacts-container {
    max-width: 1200px;
}
.board-hero {
    background: linear-gradient(145deg, #fff0f0, #ffe5e5);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    margin-bottom: 40px;
}
.btn-board-primary {
    background: #28a745;
    color: white;
}
.btn-board-secondary {
    background: #e63946;
}
.board-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}
.board-adv {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: 0.2s;
}
.board-adv i {
    color: #28a745;
}
.board-compare {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    overflow-x: auto;
}
.compare-table {
    min-width: 600px;
}
.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 0;
}
.compare-row.header {
    font-weight: 700;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 10px;
}
.board-howto {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
}
.board-howto ol {
    margin-left: 20px;
    line-height: 1.8;
}

/* ========== НОВЫЕ СТИЛИ ДЛЯ ПОСТДЕЙТ ЛЕНДИНГА ========== */
.postdate-landing {
    max-width: 1200px;
}
.pd-hero {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    margin-bottom: 40px;
}
.btn-pd-primary {
    background: #e63946;
}
.btn-pd-max {
    background: #8B5CF6;
}
.pd-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}
.feature {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
}
.feature i {
    color: #e63946;
    margin-bottom: 15px;
}
.feature-link {
    display: inline-block;
    margin-top: 10px;
    color: #8B5CF6;
    font-weight: 600;
}
.pd-stats {
    background: #2d3436;
    color: white;
    border-radius: 30px;
    padding: 40px;
    margin: 40px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}
.stat {
    font-size: 18px;
    font-weight: 600;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 15px;
}
.pd-channel-block {
    background: #f0e6ff;
    border-radius: 30px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}
.pd-channel-block ul {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin: 20px auto;
}
.pd-channel-block li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}
.pd-channel-block li::before {
    content: "✅";
    position: absolute;
    left: 0;
}
.btn-max-channel {
    background: #8B5CF6;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 15px;
}
.pd-groups {
    text-align: center;
    margin: 40px 0;
}
.social-group {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    margin: 0 10px;
    font-weight: 700;
}
.social-group.ok {
    background: #ED812B;
    color: white;
}
.social-group.vk {
    background: #4C75A3;
    color: white;
}
.pd-faq, .pd-seo-text {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
}

/* ========== СТРАНИЦА "О ПЛАТНОМ ДОСТУПЕ" ========== */
.paid-access-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.paid-access-hero {
    background: linear-gradient(145deg, #fff0f0, #ffe5e5);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    margin-bottom: 40px;
    border: 2px solid #e63946;
}

.paid-access-hero h1 {
    font-size: 38px;
    color: #2d3436;
    margin-bottom: 20px;
}

.paid-access-hero .hero-sub {
    font-size: 18px;
    color: #636e72;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.paid-access-hero .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.paid-access-problems {
    margin: 50px 0;
}

.paid-access-problems h2 {
    text-align: center;
    color: #dc3545;
    font-size: 28px;
    margin-bottom: 30px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.problem-item {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #f1f1f1;
    transition: transform 0.2s;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
}

.problem-item .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.problem-item h3 {
    color: #dc3545;
    margin-bottom: 10px;
    font-size: 18px;
}

.problem-item p {
    color: #636e72;
    font-size: 14px;
    line-height: 1.5;
}

.paid-access-solution {
    margin: 50px 0;
    background: #f8f9fa;
    border-radius: 30px;
    padding: 40px;
}

.paid-access-solution h2 {
    text-align: center;
    color: #28a745;
    font-size: 28px;
    margin-bottom: 30px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.solution-item {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

.solution-item .num {
    font-size: 28px;
    font-weight: 800;
    color: #28a745;
    background: #e8f5e9;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.solution-item h3 {
    color: #2d3436;
    margin-bottom: 5px;
    font-size: 18px;
}

.solution-item p {
    color: #636e72;
    font-size: 14px;
    line-height: 1.5;
}

.paid-access-comparison {
    margin: 50px 0;
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #f1f1f1;
    overflow-x: auto;
}

.paid-access-comparison h2 {
    text-align: center;
    color: #2d3436;
    font-size: 28px;
    margin-bottom: 30px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #2d3436;
}

.comparison-table td:first-child {
    font-weight: 600;
}

.comparison-table tr:hover td {
    background: #f8f9fa;
}

.comparison-table td strong {
    color: #28a745;
}

.paid-access-cta {
    background: linear-gradient(145deg, #e63946, #c82333);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    color: white;
    margin: 50px 0;
}

.paid-access-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.paid-access-cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 18px;
    min-width: 200px;
}

.cta-buttons .btn-success {
    background: #28a745;
}

.cta-buttons .btn-success:hover {
    background: #218838;
}

.cta-buttons .btn-secondary {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

.paid-access-faq {
    margin: 50px 0;
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #f1f1f1;
}

.paid-access-faq h2 {
    text-align: center;
    color: #2d3436;
    font-size: 28px;
    margin-bottom: 30px;
}

.paid-access-faq .faq-item {
    border-bottom: 1px solid #e9ecef;
    padding: 15px 0;
}

.paid-access-faq .faq-item:last-child {
    border-bottom: none;
}

.paid-access-faq .faq-question {
    font-weight: 700;
    font-size: 18px;
    color: #2d3436;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
}

.paid-access-faq .faq-question::after {
    content: '+';
    position: absolute;
    right: 10px;
    font-size: 24px;
    color: #e63946;
}

.paid-access-faq .faq-item.active .faq-question::after {
    content: '−';
}

.paid-access-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #636e72;
    line-height: 1.6;
}

.paid-access-faq .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 10px 0 5px;
}

.paid-access-footer-note {
    text-align: center;
    background: #f8f9fa;
    border-radius: 30px;
    padding: 40px;
    margin: 40px 0;
}

.paid-access-footer-note p {
    font-size: 18px;
    color: #2d3436;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .solution-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .paid-access-hero {
        padding: 30px 20px;
    }
    .paid-access-hero h1 {
        font-size: 28px;
    }
    .problems-grid {
        grid-template-columns: 1fr;
    }
    .paid-access-solution {
        padding: 25px;
    }
    .paid-access-comparison {
        padding: 25px;
    }
    .paid-access-cta {
        padding: 30px 20px;
    }
    .paid-access-cta h2 {
        font-size: 26px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    .paid-access-faq {
        padding: 25px;
    }
    .paid-access-faq .faq-question {
        font-size: 16px;
    }
    .paid-access-footer-note {
        padding: 25px;
    }
}

/* ========== АДАПТИВНОСТЬ ДЛЯ НОВЫХ СТРАНИЦ ========== */
@media (max-width: 1000px) {
    .board-advantages-grid, .pd-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ok-advantages, .vk-advantages {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .channels-hero, .ok-hero, .vk-hero, .board-hero, .pd-hero {
        padding: 30px 20px;
    }
    .channels-hero h1, .ok-hero h1, .vk-hero h1, .board-hero h1, .pd-hero h1 {
        font-size: 28px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .board-advantages-grid, .pd-features, .channels-grid, .ok-advantages, .vk-advantages {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .compare-row {
        grid-template-columns: 1fr;
        text-align: center;
        border-bottom: none;
        margin-bottom: 15px;
        background: #f8f9fa;
        border-radius: 12px;
        padding: 15px;
    }
    .compare-row.header {
        display: none;
    }
    .compare-row div {
        margin-bottom: 5px;
    }
    .compare-row div:first-child {
        font-weight: 700;
        color: #e63946;
    }
}