* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #212121;
    background: #ffffff;
    font-weight: 400;
}

/* Хедер */
.site-header {
    background: #2c2c2c;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-top {
    background: #2c2c2c;
    border-bottom: 1px solid #3a3a3a;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top-content {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px;
    flex-wrap: wrap;
}

.menu-toggle {
    background: #3a3a3a;
    border: none;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: background 0.2s;
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: #4a4a4a;
}

.logo {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.9;
    color: #ffffff;
}

.logo-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.header-search {
    flex: 1;
    display: flex;
    gap: 0;
    min-width: 200px;
    max-width: 400px;
}

.search-input {
    flex: 1;
    background: #3a3a3a;
    border: none;
    border-radius: 6px 0 0 6px;
    padding: 10px 16px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.search-input::placeholder {
    color: #9e9e9e;
}

.search-input:focus {
    background: #424242;
}

.search-btn {
    background: #3a3a3a;
    border: none;
    border-radius: 0 6px 6px 0;
    padding: 10px 16px;
    cursor: pointer;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.search-btn:hover {
    background: #4a4a4a;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.map-btn {
    background: #3a3a3a;
    color: #ffffff;
}

.map-btn:hover {
    background: #4a4a4a;
}


.verified-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e91e63;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    cursor: help;
    position: relative;
    flex-shrink: 0;
}

.verified-badge:hover::after {
    content: 'Все анкеты проходят проверку на подлинность и соответствие требованиям';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    padding: 8px 12px;
    background: #212121;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    pointer-events: none;
}

.verified-badge:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 2px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #212121;
    z-index: 1001;
    pointer-events: none;
}

.badge-icon {
    width: 16px;
    height: 16px;
    background: #ffffff;
    color: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 2px;
    box-sizing: border-box;
}

.badge-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.header-nav-bar {
    background: #252525;
    border-bottom: 1px solid #3a3a3a;
}

.mobile-verified-badge {
    display: none;
    padding: 8px 0 0 0;
    border-top: 1px solid #3a3a3a;
    margin-top: 8px;
}

.mobile-verified-badge .verified-badge {
    margin: 0;
    padding: 4px 10px;
    font-size: 10px;
    gap: 5px;
}

.mobile-verified-badge .verified-badge span {
    display: inline;
}

.mobile-verified-badge .badge-icon {
    width: 12px;
    height: 12px;
}

.mobile-only {
    display: none;
}

.nav-categories {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 0;
    overflow-x: auto;
}

.nav-category {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
}

.nav-category:hover {
    color: #e91e63;
}

.nav-category::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e91e63;
    transition: width 0.2s;
}

.nav-category:hover::after {
    width: 100%;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .header-top-content {
        gap: 12px;
    }
    
    .header-search {
        min-width: 140px;
        max-width: 220px;
    }
    
    .verified-badge span {
        display: none;
    }
    
    .verified-badge {
        padding: 6px 10px;
    }
    
    .verified-badge:hover::after {
        white-space: normal;
        max-width: 200px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }
    
    .header-top-content {
        height: 56px;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .menu-toggle {
        width: 36px;
        height: 36px;
    }
    
    .logo {
        font-size: 20px;
        gap: 8px;
    }
    
    .header-search {
        flex: 1;
        min-width: 0;
        max-width: none;
        order: 3;
        margin: 0;
    }
    
    .search-input {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .search-input::placeholder {
        font-size: 12px;
    }
    
    .search-btn {
        padding: 8px 10px;
        flex-shrink: 0;
    }
    
    .search-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .map-btn {
        display: none;
    }
    
    .verified-badge {
        display: none;
    }
    
    .mobile-only {
        display: flex;
    }
    
    .header-nav-bar.mobile-menu-open .mobile-verified-badge .verified-badge {
        padding: 6px 12px;
        font-size: 11px;
        gap: 6px;
    }
    
    .header-nav-bar.mobile-menu-open .mobile-verified-badge .verified-badge span {
        display: inline;
    }
    
    .header-nav-bar.mobile-menu-open .mobile-verified-badge .badge-icon {
        width: 13px;
        height: 13px;
    }
    
    .header-nav-bar.mobile-menu-open .mobile-verified-badge .verified-badge:hover::after {
        white-space: normal;
        max-width: 200px;
        text-align: center;
        font-size: 10px;
        padding: 6px 10px;
    }
    
    .header-nav-bar {
        position: relative;
    }
    
    .header-nav-bar .header-container {
        position: relative;
    }
    
    .mobile-menu-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #252525;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        z-index: 10;
    }
    
    .header-nav-bar.mobile-menu-open .mobile-menu-wrapper {
        max-height: 500px;
    }
    
    .nav-categories {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    .header-nav-bar.mobile-menu-open .nav-categories {
        padding: 8px 0;
    }
    
    .mobile-verified-badge {
        display: none;
        padding: 0;
        margin: 0;
        border-top: 1px solid #3a3a3a;
    }
    
    .header-nav-bar.mobile-menu-open .mobile-verified-badge {
        display: block;
        padding: 8px 16px;
    }
    
    .header-nav-bar.mobile-menu-open .mobile-verified-badge .verified-badge {
        margin: 0;
    }
    
    .nav-category {
        padding: 12px 20px;
        border-bottom: 1px solid #3a3a3a;
        display: block;
    }
    
    .nav-category:last-child {
        border-bottom: none;
    }
    
    .nav-category::after {
        display: none;
    }
    
    .menu-toggle.active {
        background: #4a4a4a;
    }
}

@media (max-width: 480px) {
    .header-top-content {
        height: 52px;
        gap: 4px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .header-search {
        order: 2;
        max-width: none;
        margin: 0;
    }
    
    .search-input {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .search-input::placeholder {
        font-size: 11px;
    }
    
    .search-btn {
        padding: 6px 8px;
        flex-shrink: 0;
    }
    
    .search-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .header-nav-bar.mobile-menu-open .mobile-verified-badge {
        padding: 6px 16px;
    }
    
    .header-nav-bar.mobile-menu-open .mobile-verified-badge .verified-badge {
        padding: 5px 10px;
        font-size: 10px;
        gap: 5px;
    }
    
    .header-nav-bar.mobile-menu-open .mobile-verified-badge .verified-badge span {
        display: inline;
        font-size: 10px;
    }
    
    .header-nav-bar.mobile-menu-open .mobile-verified-badge .badge-icon {
        width: 11px;
        height: 11px;
    }
    
    .header-nav-bar.mobile-menu-open .mobile-verified-badge .verified-badge:hover::after {
        white-space: normal;
        max-width: 180px;
        text-align: center;
        font-size: 9px;
        padding: 5px 8px;
    }
    
    .container {
        padding: 20px 16px;
    }
    
    .profiles-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .profile-detail {
        grid-template-columns: 1fr;
        padding: 24px 16px;
        gap: 24px;
    }
}

/* Футер */
.site-footer {
    background: #2c2c2c;
    margin-top: 60px;
    padding: 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-copyright p {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.footer-center {
    display: flex;
    justify-content: center;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-column a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.footer-links-column a:hover {
    opacity: 0.8;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.age-restriction {
    width: 48px;
    height: 48px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-center {
        justify-content: center;
    }
    
    .footer-right {
        justify-content: center;
    }
    
    .footer-logo {
        font-size: 28px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    margin-bottom: 30px;
    color: #212121;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #424242;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.back-link:hover {
    color: #212121;
    text-decoration: none;
}

/* Каталог анкет */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.catalog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 20px 0;
}

.catalog-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: #212121;
    margin: 0;
}

.online-count {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.online-count:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.online-indicator {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.online-number {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.online-text {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.95;
}

.profile-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.profile-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.profile-card:hover .profile-image img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.badge-premium {
    background: #ffd700;
    color: #212121;
    border: 1px solid #000000;
}

.badge-elite {
    background: #e1bee7;
    color: #212121;
    border: 1px solid #ce93d8;
}

.profile-details {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.profile-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.profile-name {
    font-size: 18px;
    font-weight: 700;
    color: #212121;
    line-height: 1.2;
    flex: 1;
    min-width: 0;
    letter-spacing: -0.3px;
}

.profile-age {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    padding: 4px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.25);
    position: relative;
    overflow: hidden;
}

.profile-age::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.profile-card:hover .profile-age::before {
    left: 100%;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
}

.service-tag {
    background: #e91e63;
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s;
}

.service-tag:hover {
    background: #c2185b;
}

.profile-price-section {
    margin-top: auto;
}

.profile-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
}

.price-from {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.price-amount {
    font-size: 22px;
    font-weight: 700;
    color: #212121;
    letter-spacing: -0.5px;
}

.btn-details {
    display: block;
    width: 100%;
    text-align: center;
    background: #212121;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-details:hover {
    background: #424242;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}


/* Страница анкеты */
.profile-detail {
    background: white;
    border-radius: 2px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border: 1px solid #e0e0e0;
}

.profile-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-photo {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
}

.photo-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.photo-thumbnails img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.3s;
    max-width: 100px;
    max-height: 100px;
    flex-shrink: 0;
}

.photo-thumbnails img:hover {
    opacity: 0.7;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.profile-content h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.profile-content .category-badge {
    position: static;
    display: inline-block;
    margin: 0;
}

.profile-content .age {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.profile-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.profile-service-tags .service-tag {
    background: #e91e63;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s;
}

.profile-service-tags .service-tag:hover {
    background: #c2185b;
}

.description {
    margin: 30px 0;
}

.description h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #212121;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.description p {
    line-height: 1.8;
    color: #555;
}

.pricing {
    margin: 30px 0;
}

.pricing h2 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #212121;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid #e0e0e0;
    position: relative;
}

.price-item:hover {
    border-color: #bdbdbd;
    background: #fafafa;
}

.price-item.selected {
    border-color: #212121;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.price-item-day.selected {
    border-left: 4px solid #f9a825;
}

.price-item-night.selected {
    border-left: 4px solid #1976d2;
}

.price-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    margin-right: 16px;
}

.price-item.selected .price-icon {
    color: #212121;
}

.price-item-day .price-icon {
    color: #f9a825;
}

.price-item-day.selected .price-icon {
    color: #f9a825;
}

.price-item-night .price-icon {
    color: #1976d2;
}

.price-item-night.selected .price-icon {
    color: #1976d2;
}

.price-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 15px;
    font-weight: 500;
    color: #424242;
    letter-spacing: 0.3px;
}

.price-value {
    font-size: 20px;
    font-weight: 600;
    color: #212121;
    letter-spacing: 0.5px;
}

.price-item.selected .price-label {
    color: #212121;
    font-weight: 600;
}

.price-item.selected .price-value {
    color: #212121;
}

.payment-section {
    margin-top: 30px;
}

.price-hint {
    margin-top: 12px;
    font-size: 13px;
    color: #757575;
    text-align: center;
    font-weight: 400;
}

.selected-duration {
    font-size: 16px;
    font-weight: 500;
    color: #424242;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: 0.3px;
}

.selected-price {
    font-size: 15px;
    color: #212121;
    font-weight: 500;
    margin-top: 16px;
    text-align: center;
    letter-spacing: 0.3px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: #212121;
    color: white;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: #424242;
}

.btn-primary:disabled {
    background: #bdbdbd;
    cursor: not-allowed;
}

.btn-telegram {
    background: #0088cc;
    color: white;
    width: 100%;
    margin-top: 15px;
}

.btn-telegram:hover {
    background: #006ba3;
}

/* Модальное окно оплаты */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: #ffffff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: slideDown 0.3s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #212121;
    margin: 0;
    padding: 24px 24px 20px;
    border-bottom: 1px solid #e0e0e0;
    letter-spacing: -0.5px;
}

.close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 300;
    color: #757575;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
    background: transparent;
    border: none;
    line-height: 1;
}

.close:hover {
    color: #212121;
    background: #f5f5f5;
}

.payment-info {
    padding: 0;
}

.payment-section {
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.payment-section:last-of-type {
    border-bottom: none;
}

.payment-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #212121;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.3px;
}

.payment-section-title svg {
    color: #212121;
    flex-shrink: 0;
}

.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.card-number-display {
    flex: 1;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 16px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-number-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #212121;
    font-family: 'Courier New', monospace;
    margin: 0 0 4px 0;
    word-break: break-all;
    line-height: 1.3;
}

.card-bank {
    font-size: 12px;
    color: #757575;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

.btn-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 16px;
    background: #212121;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 140px;
}

.btn-copy:hover {
    background: #424242;
    transform: translateY(-1px);
}

.btn-copy.copied {
    background: #4caf50;
}

.btn-copy svg {
    flex-shrink: 0;
}

.payment-instructions {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.payment-instructions li {
    counter-increment: step-counter;
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.payment-instructions li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: #212121;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

.payment-instructions li:last-child {
    margin-bottom: 0;
}

.payment-amount {
    color: #212121;
    font-weight: 600;
}

.telegram-link {
    color: #0088cc;
    font-weight: 500;
}

.btn-telegram {
    background: #0088cc;
    color: white;
    width: calc(100% - 48px);
    margin: 20px 24px 24px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-telegram:hover {
    background: #006ba3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

/* Адаптивность для контента */
@media (max-width: 768px) {
    .catalog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .catalog-header h1 {
        font-size: 24px;
    }
    
    .online-count {
        padding: 6px 14px;
        font-size: 13px;
        align-self: flex-start;
    }
    
    .online-indicator {
        width: 7px;
        height: 7px;
    }
    
    .online-number {
        font-size: 15px;
    }
    
    .online-text {
        font-size: 12px;
    }
    
    .profile-card {
        border-radius: 6px;
    }
    
    .profile-image {
        height: 280px;
    }
    
    .profile-details {
        padding: 12px;
        gap: 12px;
    }
    
    .profile-info {
        gap: 10px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    
    .profile-name {
        font-size: 17px;
    }
    
    .profile-age {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .service-tag {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .price-amount {
        font-size: 20px;
    }
    
    .price-from {
        font-size: 13px;
    }
    
    .btn-details {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .profile-detail {
        grid-template-columns: 1fr;
        padding: 24px 16px;
        gap: 24px;
    }
    
    .profiles-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 16px;
    }
    
    .main-photo {
        height: 300px;
    }
    
    .photo-thumbnails {
        gap: 8px;
    }
    
    .photo-thumbnails img {
        width: 80px;
        height: 80px;
    }
    
    .price-list {
        gap: 12px;
    }
    
    .price-item {
        padding: 14px 18px;
    }
    
    .modal-content {
        margin: 10% auto;
        max-width: 90%;
    }
    
    .modal-content h2 {
        padding: 24px 20px 20px;
        font-size: 20px;
    }
    
    .modal-content {
        margin: 5% auto;
        max-width: 95%;
    }
    
    .modal-content h2 {
        padding: 20px 16px 16px;
        font-size: 20px;
    }
    
    .close {
        right: 12px;
        top: 12px;
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
    
    .payment-section {
        padding: 16px;
    }
    
    .payment-section-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .payment-section-title svg {
        width: 16px;
        height: 16px;
    }
    
    .card-number-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-copy {
        width: 100%;
        min-width: auto;
        padding: 12px 16px;
    }
    
    .card-number-display {
        padding: 12px 14px;
    }
    
    .card-number-text {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .card-bank {
        font-size: 11px;
    }
    
    .payment-instructions li {
        padding-left: 28px;
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    
    .payment-instructions li:before {
        width: 20px;
        height: 20px;
        font-size: 10px;
        top: 0;
    }
    
    .btn-telegram {
        width: calc(100% - 32px);
        margin: 16px auto 20px;
        padding: 12px 18px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .btn-telegram svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .profile-content h1 {
        font-size: 24px;
    }
}

/* Health+ Page */
.health-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.health-header {
    text-align: center;
    margin-bottom: 40px;
}

.health-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.health-icon {
    color: #4caf50;
    width: 48px;
    height: 48px;
}

.health-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #212121;
    margin: 0;
    letter-spacing: -0.5px;
}

.health-tagline {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.health-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.section-icon {
    color: #4caf50;
    flex-shrink: 0;
}

.section-icon.warning-icon {
    color: #ff9800;
}

.health-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #212121;
    margin: 0;
}

.health-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.health-highlight {
    color: #4caf50;
    font-weight: 600;
}

.health-warning {
    background: #fff3e0;
    border-color: #ff9800;
}

.health-warning .section-header h2 {
    color: #e65100;
}

.warning-highlight {
    color: #e65100;
    font-weight: 600;
}

.health-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.feature-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-mandatory {
    background: #e8f5e9;
    color: #4caf50;
}

.feature-anonymous {
    background: #e3f2fd;
    color: #1976d2;
}

.feature-free {
    background: #fff9c4;
    color: #f9a825;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #212121;
    margin: 0 0 8px 0;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.health-period {
    text-align: center;
}

.period-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.period-number {
    font-size: 48px;
    font-weight: 700;
    color: #212121;
    line-height: 1;
}

.period-text {
    font-size: 24px;
    font-weight: 600;
    color: #212121;
}

.period-label {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

.period-description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    text-align: left;
}

.health-badge {
    text-align: center;
}

.badge-preview {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.health-badge-preview {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4caf50;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.health-badge-preview svg {
    width: 16px;
    height: 16px;
}

/* Guarantees Page */
.guarantees-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guarantees-title {
    font-size: 32px;
    font-weight: 600;
    color: #212121;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.guarantee-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.guarantee-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.guarantee-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212121;
    flex-shrink: 0;
}

.guarantee-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #212121;
    margin: 0;
    letter-spacing: -0.3px;
}

.guarantee-intro {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.guarantee-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guarantee-list li {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.guarantee-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #212121;
    font-size: 16px;
    font-weight: 600;
}

.guarantee-list li:last-child {
    margin-bottom: 0;
}

/* Privacy Policy Page */
.privacy-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.privacy-title {
    font-size: 32px;
    font-weight: 600;
    color: #212121;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.privacy-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.privacy-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #212121;
    margin: 0 0 16px 0;
    letter-spacing: -0.3px;
}

.privacy-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.privacy-section ul li {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.privacy-section ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #212121;
    font-size: 16px;
    font-weight: 600;
}

.privacy-section ul li:last-child {
    margin-bottom: 0;
}

.privacy-section strong {
    color: #212121;
    font-weight: 600;
}

.privacy-update {
    font-size: 13px;
    color: #757575;
    font-style: italic;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .privacy-page {
        padding: 24px 16px;
    }
    
    .privacy-title {
        font-size: 24px;
    }
    
    .privacy-section {
        padding: 20px;
    }
    
    .privacy-section h2 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .guarantees-page {
        padding: 24px 16px;
    }
    
    .guarantees-title {
        font-size: 24px;
    }
    
    .guarantee-section {
        padding: 20px;
    }
    
    .guarantee-header h2 {
        font-size: 18px;
    }
    
    .guarantee-icon {
        width: 36px;
        height: 36px;
    }
    
    .guarantee-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .health-page {
        padding: 24px 16px;
    }
    
    .health-header h1 {
        font-size: 28px;
    }
    
    .health-tagline {
        font-size: 14px;
    }
    
    .health-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .health-section {
        padding: 20px;
    }
    
    .period-number {
        font-size: 36px;
    }
    
    .period-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .profiles-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }
    
    .profile-image {
        height: 200px;
    }
    
    .profile-info {
        padding: 12px;
    }
    
    .profile-info h3 {
        font-size: 16px;
    }
    
    .main-photo {
        height: 250px;
    }
    
    .photo-thumbnails img {
        width: 60px;
        height: 60px;
    }
    
    .price-item {
        padding: 12px 16px;
    }
    
    .price-value {
        font-size: 18px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 20px;
    }
    
    .card-number {
        font-size: 18px;
        padding: 20px;
        letter-spacing: 2px;
    }
}

