/* _content/ClickLove_bot/Pages/Admin/Categories.razor.rz.scp.css */
/* Основной контейнер */
body[b-t4sqgwtidn] {
    background: var(--tg-theme-bg-color);
}

.categories-container[b-t4sqgwtidn] {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px;
    color: var(--tg-theme-text-color);
    background: var(--tg-theme-bg-color);
}

.add-category-section[b-t4sqgwtidn] {
    background: var(--tg-theme-secondary-bg-color);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(var(--tg-theme-button-color-rgb), 0.1);
}

.input-group[b-t4sqgwtidn] {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.input-group .form-control[b-t4sqgwtidn] {
    background: var(--tg-theme-bg-color);
    color: var(--tg-theme-text-color);
    border: 1px solid rgba(var(--tg-theme-button-color-rgb), 0.2);
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.input-group .form-control:focus[b-t4sqgwtidn] {
    background: var(--tg-theme-bg-color);
    box-shadow: 0 0 0 2px rgba(var(--tg-theme-button-color-rgb), 0.2);
    border-color: var(--tg-theme-button-color);
}

.input-group .form-control[b-t4sqgwtidn]::placeholder {
    color: var(--tg-theme-hint-color);
    font-size: 15px;
}

.input-group .btn-primary[b-t4sqgwtidn] {
    padding: 0 24px;
    background: var(--tg-theme-button-color) !important;
    color: var(--tg-theme-button-text-color) !important;
    border: none;
    transition: all 0.2s ease;
}

.input-group .btn-primary:hover[b-t4sqgwtidn] {
    opacity: 0.9;
    transform: translateY(-1px);
}

.categories-list[b-t4sqgwtidn] {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.category-card[b-t4sqgwtidn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 16px;
    background: var(--tg-theme-secondary-bg-color);
    border: 1px solid rgba(var(--tg-theme-button-color-rgb), 0.1);
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-card:hover[b-t4sqgwtidn] {
    transform: translateY(-2px);
    border-color: rgba(var(--tg-theme-button-color-rgb), 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.category-info[b-t4sqgwtidn] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.category-info h5[b-t4sqgwtidn] {
    margin: 0;
    color: var(--tg-theme-text-color);
    font-size: 17px;
    font-weight: 600;
}

.badge[b-t4sqgwtidn] {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    background: var(--tg-theme-button-color) !important;
    color: var(--tg-theme-button-text-color) !important;
    box-shadow: 0 2px 8px rgba(var(--tg-theme-button-color-rgb), 0.2);
}

.badge i[b-t4sqgwtidn] {
    font-size: 12px;
}

.btn-danger[b-t4sqgwtidn] {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: rgba(255, 59, 48, 0.1) !important;
    border: 1px solid rgba(255, 59, 48, 0.2) !important;
    color: #ff3b30 !important;
    transition: all 0.2s ease;
}

.btn-danger:hover:not(:disabled)[b-t4sqgwtidn] {
    background: linear-gradient(45deg, #ff3b30, #ff6b6b) !important;
    border-color: transparent !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.2);
}

.btn-danger:disabled[b-t4sqgwtidn] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-danger i[b-t4sqgwtidn] {
    font-size: 16px;
}

.loading-spinner[b-t4sqgwtidn] {
    display: flex;
    justify-content: center;
    padding: 40px;
    color: var(--tg-theme-button-color);
    opacity: 0.8;
}

.alert-danger[b-t4sqgwtidn] {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.2);
    color: #ff3b30;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    margin-top: 20px;
}

h3[b-t4sqgwtidn] {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--tg-theme-text-color);
    background: none;
    -webkit-text-fill-color: initial;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-muted[b-t4sqgwtidn] {
    color: var(--tg-theme-hint-color) !important;
}

.text-muted i[b-t4sqgwtidn] {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
    .categories-container[b-t4sqgwtidn] {
        padding: 12px;
    }

    .add-category-section[b-t4sqgwtidn] {
        padding: 16px;
        margin: 0 -4px;
    }

    .input-group[b-t4sqgwtidn] {
        flex-direction: column;
        gap: 8px;
    }

    .input-group .form-control[b-t4sqgwtidn],
    .input-group .btn-primary[b-t4sqgwtidn] {
        width: 100%;
        border-radius: 12px;
    }

    .input-group .btn-primary[b-t4sqgwtidn] {
        height: 44px;
    }

    .categories-list[b-t4sqgwtidn] {
        margin-top: 16px;
        gap: 8px;
    }

    .category-card[b-t4sqgwtidn] {
        padding: 12px;
        margin: 0 -4px;
    }

    .category-info[b-t4sqgwtidn] {
        gap: 12px;
        flex: 1;
    }

    .category-info h5[b-t4sqgwtidn] {
        font-size: 15px;
        /* Добавляем ограничение длины текста */
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .badge[b-t4sqgwtidn] {
        padding: 4px 8px;
        font-size: 12px;
    }

    .badge i[b-t4sqgwtidn] {
        font-size: 10px;
    }

    .btn-danger[b-t4sqgwtidn] {
        width: 36px;
        height: 36px;
        min-width: 36px; /* Предотвращает сжатие кнопки */
    }

    .btn-danger i[b-t4sqgwtidn] {
        font-size: 14px;
    }

    h3[b-t4sqgwtidn] {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 360px) {
    .categories-container[b-t4sqgwtidn] {
        padding: 8px;
    }

    .category-info h5[b-t4sqgwtidn] {
        max-width: 120px;
    }

    .badge[b-t4sqgwtidn] {
        padding: 3px 6px;
        font-size: 11px;
    }

    .btn-danger[b-t4sqgwtidn] {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .btn-danger i[b-t4sqgwtidn] {
        font-size: 12px;
    }
}

/* Для предотвращения горизонтального скролла */
@media (max-width: 320px) {
    .category-card[b-t4sqgwtidn] {
        margin: 0;
        border-radius: 12px;
    }

    .category-info h5[b-t4sqgwtidn] {
        max-width: 100px;
    }
}

/* Для устройств с высоким DPI */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .category-card[b-t4sqgwtidn],
    .add-category-section[b-t4sqgwtidn],
    .input-group .form-control[b-t4sqgwtidn],
    .btn-danger[b-t4sqgwtidn],
    .badge[b-t4sqgwtidn] {
        border-width: 0.5px;
    }
}

/* Для устройств с поддержкой hover */
@media (hover: hover) {
    .input-group .btn-primary:hover[b-t4sqgwtidn] {
        transform: translateY(-1px);
        opacity: 0.9;
    }

    .category-card:hover[b-t4sqgwtidn] {
        transform: translateY(-2px);
    }

    .btn-danger:hover:not(:disabled)[b-t4sqgwtidn] {
        transform: translateY(-1px);
    }
}

/* Для устройств без поддержки hover */
@media (hover: none) {
    .input-group .btn-primary:active[b-t4sqgwtidn] {
        opacity: 0.8;
    }

    .category-card:active[b-t4sqgwtidn] {
        transform: translateY(1px);
    }

    .btn-danger:active:not(:disabled)[b-t4sqgwtidn] {
        transform: translateY(1px);
    }
}

/* Для ландшафтной ориентации на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
    .categories-container[b-t4sqgwtidn] {
        max-width: 600px;
    }

    .categories-list[b-t4sqgwtidn] {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 12px;
    }
}

/* Для поддержки безопасной зоны на iPhone X и новее */
@supports (padding: max(0px)) {
    .categories-container[b-t4sqgwtidn] {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }
} 
/* _content/ClickLove_bot/Pages/Admin/Moderation.razor.rz.scp.css */
.moderation-container[b-gyt7mhk2qv] {
    max-width: 600px;
    margin: 0 auto;
    padding: 16px;
}

.tab-buttons[b-gyt7mhk2qv] {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.tab-button[b-gyt7mhk2qv] {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.profile-card[b-gyt7mhk2qv] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

.profile-header[b-gyt7mhk2qv] {
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.profile-name[b-gyt7mhk2qv] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.profile-info[b-gyt7mhk2qv] {
    color: #666;
    font-size: 0.9rem;
}

.photos-container[b-gyt7mhk2qv] {
    display: flex;
    gap: 8px;
    padding: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.photos-container[b-gyt7mhk2qv]::-webkit-scrollbar {
    display: none;
}

.photo-container[b-gyt7mhk2qv] {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 250px;
    max-height: 400px;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 12px;
}

.profile-photo[b-gyt7mhk2qv] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-counter[b-gyt7mhk2qv] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 2;
}

.photo-nav[b-gyt7mhk2qv] {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.photo-nav:hover[b-gyt7mhk2qv] {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.photo-nav.prev[b-gyt7mhk2qv] {
    left: 10px;
}

.photo-nav.next[b-gyt7mhk2qv] {
    right: 10px;
}

.nav-arrow[b-gyt7mhk2qv] {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    color: #333;
}

.photo-nav:disabled[b-gyt7mhk2qv] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.complaints-section[b-gyt7mhk2qv] {
    background: #fff5f5;
    margin: 16px;
    padding: 16px;
    border-radius: 12px;
}

.complaints-details[b-gyt7mhk2qv] {
    background: white;
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.complaint-item[b-gyt7mhk2qv] {
    padding: 12px 0;
}

.complaint-item:not(:last-child)[b-gyt7mhk2qv] {
    border-bottom: 1px solid #eee;
}

.action-buttons[b-gyt7mhk2qv] {
    display: flex;
    gap: 8px;
    padding: 16px;
}

.action-button[b-gyt7mhk2qv] {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    font-weight: 500;
}

.pagination[b-gyt7mhk2qv] {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 20px 0;
}
.repeat-moderation-badge[b-gyt7mhk2qv] {
    background-color: #ff9800;
    color: white;
    font-size: 0.8em;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
}

.profile-changes[b-gyt7mhk2qv] {
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 8px;
    margin-top: 8px;
}

.changes-header[b-gyt7mhk2qv] {
    font-weight: bold;
    color: #666;
    margin-bottom: 4px;
}

.changes-list[b-gyt7mhk2qv] {
    margin: 0;
    padding-left: 20px;
    color: #555;
    font-size: 0.9em;
}

.changes-list li[b-gyt7mhk2qv] {
    margin: 2px 0;
}
.page-button[b-gyt7mhk2qv] {
    min-width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.page-button.active[b-gyt7mhk2qv] {
    background: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.loading-spinner[b-gyt7mhk2qv] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

@media (max-width: 480px) {
    .photo-container[b-gyt7mhk2qv] {
        height: 45vh;
        min-height: 200px;
    }

    .photo-nav[b-gyt7mhk2qv] {
        width: 35px;
        height: 35px;
    }

    .nav-arrow[b-gyt7mhk2qv] {
        font-size: 24px;
    }

    .action-buttons[b-gyt7mhk2qv] {
        flex-direction: column;
    }
    
    .pagination[b-gyt7mhk2qv] {
        flex-wrap: wrap;
    }
} 
/* _content/ClickLove_bot/Pages/Admin/PaymentsHistory.razor.rz.scp.css */
.payments-history-container[b-47cfbkppql] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header-section[b-47cfbkppql] {
    margin-bottom: 30px;
}

.page-title[b-47cfbkppql] {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 600;
}

.filters-section[b-47cfbkppql] {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.filter-group[b-47cfbkppql] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-group label[b-47cfbkppql] {
    font-weight: 500;
    color: #495057;
    font-size: 0.9rem;
}

.filter-select[b-47cfbkppql] {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background: white;
    font-size: 0.9rem;
    min-width: 150px;
}

.filter-select:focus[b-47cfbkppql] {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.loading-spinner[b-47cfbkppql] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px;
    color: #6c757d;
}

.spinner[b-47cfbkppql] {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin-b-47cfbkppql 1s linear infinite;
}

@keyframes spin-b-47cfbkppql {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.payments-grid[b-47cfbkppql] {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.payment-card[b-47cfbkppql] {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.payment-card:hover[b-47cfbkppql] {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.payment-header[b-47cfbkppql] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.payment-id[b-47cfbkppql] {
    font-family: monospace;
    font-size: 0.9rem;
    color: #6c757d;
}

.payment-status[b-47cfbkppql] {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-success[b-47cfbkppql] {
    background: #d4edda;
    color: #155724;
}

.status-pending[b-47cfbkppql] {
    background: #fff3cd;
    color: #856404;
}

.status-error[b-47cfbkppql] {
    background: #f8d7da;
    color: #721c24;
}

.status-canceled[b-47cfbkppql] {
    background: #f1f3f4;
    color: #5f6368;
}

.status-insufficient[b-47cfbkppql] {
    background: #ffeaa7;
    color: #e17055;
}

.status-unknown[b-47cfbkppql] {
    background: #e2e3e5;
    color: #383d41;
}

.payment-content[b-47cfbkppql] {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.payment-details[b-47cfbkppql] {
    flex: 1;
    min-width: 0;
}

.payment-amount[b-47cfbkppql] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.main-amount[b-47cfbkppql] {
    margin-bottom: 5px;
}

.additional-amount[b-47cfbkppql] {
    font-size: 0.9rem;
    font-weight: normal;
    color: #6c757d;
    display: flex;
    gap: 5px;
    align-items: center;
}

.additional-label[b-47cfbkppql] {
    font-size: 0.8rem;
}

.additional-value[b-47cfbkppql] {
    font-weight: 600;
    color: #495057;
}

.additional-unit[b-47cfbkppql] {
    font-size: 0.8rem;
    background: #e9ecef;
    padding: 1px 6px;
    border-radius: 8px;
    color: #495057;
}

.additional-price[b-47cfbkppql] {
    font-size: 1rem;
    color: #6c757d;
    font-weight: normal;
}

.user-info[b-47cfbkppql] {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    min-width: 300px;
}

.user-photo[b-47cfbkppql] {
    flex-shrink: 0;
}

.profile-photo[b-47cfbkppql] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
}

.no-photo[b-47cfbkppql] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #6c757d;
    text-align: center;
}

.user-details[b-47cfbkppql] {
    flex: 1;
    min-width: 0;
}

.user-name[b-47cfbkppql] {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.user-city[b-47cfbkppql] {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.premium-badge[b-47cfbkppql] {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #7d6608;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.user-clubs[b-47cfbkppql] {
    margin-top: 8px;
}

.clubs-label[b-47cfbkppql] {
    font-size: 0.8rem;
    color: #6c757d;
    margin-right: 5px;
    display: block;
    margin-bottom: 4px;
}

.clubs-list[b-47cfbkppql] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.club-badge[b-47cfbkppql] {
    background: #007bff;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.7rem;
    display: inline-block;
}

.no-user-info[b-47cfbkppql] {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    color: #6c757d;
    font-style: italic;
    text-align: center;
    min-width: 200px;
}

.pagination[b-47cfbkppql] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
}

.pagination-info[b-47cfbkppql] {
    color: #6c757d;
    font-size: 0.9rem;
}

.pagination-controls[b-47cfbkppql] {
    display: flex;
    gap: 5px;
}

.btn[b-47cfbkppql] {
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-pagination[b-47cfbkppql] {
    padding: 8px 12px;
    background: white;
    border: 1px solid #dee2e6;
    color: #007bff;
    border-radius: 4px;
    font-size: 0.9rem;
}

.btn-pagination:hover:not(:disabled)[b-47cfbkppql] {
    background: #e9ecef;
    border-color: #adb5bd;
}

.btn-pagination:disabled[b-47cfbkppql] {
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-pagination.active[b-47cfbkppql] {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.no-data[b-47cfbkppql] {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.no-data h4[b-47cfbkppql] {
    margin-bottom: 10px;
    color: #495057;
}

@media (max-width: 768px) {
    .payments-history-container[b-47cfbkppql] {
        padding: 10px;
    }
    
    .page-title[b-47cfbkppql] {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .filters-section[b-47cfbkppql] {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .filter-group[b-47cfbkppql] {
        width: 100%;
    }
    
    .filter-select[b-47cfbkppql] {
        width: 100%;
        min-width: auto;
    }
    
    .payments-grid[b-47cfbkppql] {
        gap: 15px;
    }
    
    .payment-card[b-47cfbkppql] {
        padding: 15px;
    }
    
    .payment-header[b-47cfbkppql] {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .payment-id[b-47cfbkppql] {
        font-size: 0.8rem;
        word-break: break-all;
    }
    
    .payment-content[b-47cfbkppql] {
        flex-direction: column;
        gap: 15px;
    }
    
    .payment-amount[b-47cfbkppql] {
        font-size: 1.3rem;
    }
    
    .additional-amount[b-47cfbkppql] {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }
    
    .user-info[b-47cfbkppql] {
        min-width: auto;
        padding: 12px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .user-photo[b-47cfbkppql] {
        align-self: center;
    }
    
    .user-details[b-47cfbkppql] {
        text-align: center;
    }
    
    .user-clubs[b-47cfbkppql] {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: center;
        text-align: center;
    }
    
    .clubs-list[b-47cfbkppql] {
        justify-content: center;
    }
    
    .club-badge[b-47cfbkppql] {
        margin: 2px;
        display: inline-block;
    }
    
    .pagination[b-47cfbkppql] {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .pagination-info[b-47cfbkppql] {
        order: 2;
        font-size: 0.8rem;
    }
    
    .pagination-controls[b-47cfbkppql] {
        order: 1;
        justify-content: center;
        flex-wrap: wrap;
        gap: 3px;
    }
    
    .btn-pagination[b-47cfbkppql] {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-width: 35px;
    }
    
    .no-data[b-47cfbkppql] {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .payments-history-container[b-47cfbkppql] {
        padding: 8px;
    }
    
    .page-title[b-47cfbkppql] {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .payment-card[b-47cfbkppql] {
        padding: 12px;
    }
    
    .payment-amount[b-47cfbkppql] {
        font-size: 1.1rem;
    }
    
    .main-amount strong[b-47cfbkppql] {
        font-size: 1.2rem;
    }
    
    .additional-amount[b-47cfbkppql] {
        font-size: 0.8rem;
    }
    
    .user-info[b-47cfbkppql] {
        padding: 10px;
    }
    
    .profile-photo[b-47cfbkppql],
    .no-photo[b-47cfbkppql] {
        width: 50px;
        height: 50px;
    }
    
    .user-name[b-47cfbkppql] {
        font-size: 0.9rem;
    }
    
    .user-city[b-47cfbkppql] {
        font-size: 0.8rem;
    }
    
    .club-badge[b-47cfbkppql] {
        font-size: 0.6rem;
        padding: 1px 4px;
    }
    
    .premium-badge[b-47cfbkppql] {
        font-size: 0.6rem;
        padding: 1px 6px;
    }
    
    .pagination-controls[b-47cfbkppql] {
        gap: 2px;
    }
    
    .btn-pagination[b-47cfbkppql] {
        padding: 5px 8px;
        font-size: 0.7rem;
        min-width: 30px;
    }
    
    /* Скрываем некоторые кнопки пагинации на очень маленьких экранах */
    .pagination-controls .btn-pagination:first-child[b-47cfbkppql],
    .pagination-controls .btn-pagination:last-child[b-47cfbkppql] {
        display: none;
    }
}
/* _content/ClickLove_bot/Pages/Admin/Statistics.razor.rz.scp.css */
.statistics-container[b-yeq3c90v55] {
    padding: 20px;
}

.stat-card[b-yeq3c90v55] {
    margin-bottom: 20px;
}

.card[b-yeq3c90v55] {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover[b-yeq3c90v55] {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card-title[b-yeq3c90v55] {
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

.table[b-yeq3c90v55] {
    margin-bottom: 0;
}

.table th[b-yeq3c90v55] {
    background-color: #f8f9fa;
    font-weight: 600;
}

.table-responsive[b-yeq3c90v55] {
    max-height: 400px;
    overflow-y: auto;
}

.statistics-page[b-yeq3c90v55] {
    padding: 16px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f5f7fa;
}

.header[b-yeq3c90v55] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.header h1[b-yeq3c90v55] {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
}

.refresh-btn[b-yeq3c90v55] {
    background: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    line-height: 1;
}

.refresh-btn:hover[b-yeq3c90v55] {
    background-color: #f8f9fa;
    transform: rotate(180deg);
}

.stats-grid[b-yeq3c90v55] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card[b-yeq3c90v55] {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover[b-yeq3c90v55] {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.card-icon[b-yeq3c90v55] {
    font-size: 2.5rem;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: none;
}

.users-card .card-icon[b-yeq3c90v55],
.matches-card .card-icon[b-yeq3c90v55],
.complaints-card .card-icon[b-yeq3c90v55] {
    background: none;
    color: inherit;
}

.registrations-card .card-icon[b-yeq3c90v55] {
    background: none;
    color: inherit;
}

.card-content[b-yeq3c90v55] {
    flex: 1;
}

.card-content h3[b-yeq3c90v55] {
    margin: 0 0 16px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.stat-item[b-yeq3c90v55] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.stat-item .label[b-yeq3c90v55] {
    color: #7f8c8d;
}

.stat-item .value[b-yeq3c90v55] {
    font-weight: 600;
    color: #2c3e50;
}

.cities-section[b-yeq3c90v55] {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.cities-section h2[b-yeq3c90v55] {
    margin: 0 0 24px 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
}

.cities-grid[b-yeq3c90v55] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.city-card[b-yeq3c90v55] {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.city-card:hover[b-yeq3c90v55] {
    transform: translateY(-3px);
    background-color: #fff;
    border-color: #3498db;
}

.city-card h4[b-yeq3c90v55] {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.city-stats[b-yeq3c90v55] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.city-stat[b-yeq3c90v55] {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.city-stat .label[b-yeq3c90v55] {
    color: #7f8c8d;
}

.city-stat .value[b-yeq3c90v55] {
    font-weight: 600;
    color: #2c3e50;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
    .statistics-page[b-yeq3c90v55] {
        padding: 12px;
    }

    .header h1[b-yeq3c90v55] {
        font-size: 1.5rem;
    }

    .stats-grid[b-yeq3c90v55] {
        grid-template-columns: 1fr;
    }

    .stat-card[b-yeq3c90v55] {
        padding: 16px;
    }

    .card-icon[b-yeq3c90v55] {
        font-size: 2rem;
        width: 45px;
        height: 45px;
    }

    .cities-section[b-yeq3c90v55] {
        padding: 16px;
    }

    .cities-grid[b-yeq3c90v55] {
        grid-template-columns: 1fr;
    }
} 
/* _content/ClickLove_bot/Pages/Dating/AddStoryToTelegram.razor.rz.scp.css */
.stories-gallery[b-1zmukx792e] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}
.story-item[b-1zmukx792e] {
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: border 0.2s;
    padding: 4px;
}
.story-item.selected[b-1zmukx792e] {
    border: 2px solid #800080;
    box-shadow: 0 0 8px #ac18f0;
}
.story-item img[b-1zmukx792e] {
    width: 120px;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}
.story-actions[b-1zmukx792e] {
    margin-top: 24px;
    text-align: center;
}
.download-btn[b-1zmukx792e] {
    display: inline-block;
    margin-bottom: 12px;
    padding: 10px 24px;
    background: linear-gradient(90deg, #AC18F0 0%, #260DFF 100%);
    color: #fff;
    border-radius: 20px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(172, 24, 240, 0.3);
}
.slider-container[b-1zmukx792e] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}
.slider-btn[b-1zmukx792e] {
    font-size: 2rem;
    background: #eee;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: background 0.2s;
}
.slider-btn:disabled[b-1zmukx792e] {
    background: #ccc;
    cursor: not-allowed;
}
.slider-btn.nav-btn[b-1zmukx792e] {
    background: none;
    border: none;
    padding: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow 0.2s;
    box-shadow: none;
}
.slider-btn.nav-btn:disabled svg circle[b-1zmukx792e] {
    fill: #e0e0e0;
}
.slider-btn.nav-btn svg circle[b-1zmukx792e] {
    transition: fill 0.2s;
}
.slider-btn.nav-btn:not(:disabled):hover svg circle[b-1zmukx792e] {
    fill: #d1b3ff;
}
.slider-btn.nav-btn:active svg circle[b-1zmukx792e] {
    fill: #c084fc;
}
.slider-image img[b-1zmukx792e] {
    width: 160px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(172,24,240,0.12);
}
.guide-block[b-1zmukx792e] {
    background: #f8f6ff;
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 12px rgba(172,24,240,0.08);
    font-size: 1rem;
}
.guide-block h3[b-1zmukx792e] {
    margin-top: 0;
    color: #800080;
    font-size: 1.2rem;
}
.guide-block ol[b-1zmukx792e] {
    margin: 0;
    padding-left: 1.2em;
}
/* _content/ClickLove_bot/Pages/Dating/LikedByUsers.razor.rz.scp.css */
.profiles-container[b-4retsqij22] {
    max-width: 600px;
    margin: 0 auto;
    padding: 16px;
}

.profile-card[b-4retsqij22] {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.profile-card:hover[b-4retsqij22] {
    transform: translateY(-2px);
}

.profile-photo[b-4retsqij22] {
    width: 100%;
    height: 300px;
    position: relative;
}

.profile-photo img[b-4retsqij22] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-photo[b-4retsqij22] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
    color: #9ca3af;
}

.no-photo i[b-4retsqij22] {
    font-size: 48px;
}

.profile-content[b-4retsqij22] {
    padding: 16px;
}

.profile-info[b-4retsqij22] {
    margin-bottom: 16px;
}

.profile-info h4[b-4retsqij22] {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.location[b-4retsqij22] {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.about-me[b-4retsqij22] {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 8px 0;
}

.user-tags[b-4retsqij22] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.tag[b-4retsqij22] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border: 1px solid #d1d5db;
    border-radius: 16px;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: #374151;
    transition: all 0.2s ease;
}

.tag:hover[b-4retsqij22] {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.tag-emoji[b-4retsqij22] {
    font-size: 1rem;
    line-height: 1;
}

.tag-text[b-4retsqij22] {
    font-weight: 500;
    white-space: nowrap;
}

.profile-actions[b-4retsqij22] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 16px;
}

.btn[b-4retsqij22] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.95rem;
    min-width: 120px;
    height: 40px;
    justify-content: center;
    border: none;
    white-space: nowrap;
}

.btn i[b-4retsqij22] {
    font-size: 1.1rem;
}

.btn:disabled[b-4retsqij22] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-success[b-4retsqij22] {
    background-color: #10b981;
    color: white;
}

.btn-success:hover:not(:disabled)[b-4retsqij22] {
    background-color: #059669;
    transform: scale(1.05);
}

.btn-danger[b-4retsqij22] {
    background-color: #ef4444;
    color: white;
}

.btn-danger:hover:not(:disabled)[b-4retsqij22] {
    background-color: #dc2626;
    transform: scale(1.05);
}

/* Медиа-запросы для адаптивности */
@media (min-width: 768px) {
    .profile-card[b-4retsqij22] {
        display: flex;
        max-height: 300px;
    }

    .profile-photo[b-4retsqij22] {
        width: 300px;
        flex-shrink: 0;
    }

    .profile-content[b-4retsqij22] {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .profiles-container[b-4retsqij22] {
        padding: 8px;
    }

    .profile-photo[b-4retsqij22] {
        height: 250px;
    }

    .profile-info h4[b-4retsqij22] {
        font-size: 1.1rem;
    }

    .page-header h3[b-4retsqij22] {
        font-size: 1.25rem;
    }
    
    .profile-actions[b-4retsqij22] {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
        margin-top: 12px;
    }
    
    .btn[b-4retsqij22] {
        flex: 1;
        min-width: 0;
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .btn i[b-4retsqij22] {
        font-size: 1rem;
    }

    .user-tags[b-4retsqij22] {
        gap: 6px;
        margin: 10px 0;
    }

    .tag[b-4retsqij22] {
        padding: 4px 8px;
        font-size: 0.8rem;
        border-radius: 12px;
    }

    .tag-emoji[b-4retsqij22] {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .btn[b-4retsqij22] {
        padding: 8px;
    }
    
    .btn i[b-4retsqij22] {
        font-size: 0.9rem;
    }

    .tag[b-4retsqij22] {
        padding: 3px 6px;
        font-size: 0.75rem;
    }

    .tag-emoji[b-4retsqij22] {
        font-size: 0.85rem;
    }
}

.page-header[b-4retsqij22] {
    text-align: center;
    margin-bottom: 24px;
    padding: 0 16px;
}

.page-header h3[b-4retsqij22] {
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.subtitle[b-4retsqij22] {
    color: #6b7280;
    font-size: 0.95rem;
}

.empty-state[b-4retsqij22] {
    text-align: center;
    padding: 48px 16px;
    color: #6b7280;
}

.empty-state i[b-4retsqij22] {
    font-size: 48px;
    margin-bottom: 16px;
    color: #d1d5db;
}

.empty-state p[b-4retsqij22] {
    margin: 8px 0;
    font-size: 1.1rem;
}

.empty-state .empty-subtitle[b-4retsqij22] {
    font-size: 0.9rem;
    color: #9ca3af;
}

.message-container[b-4retsqij22] {
    margin-top: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #3390EC;
}

.message-header[b-4retsqij22] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3390EC;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.message-header i[b-4retsqij22] {
    font-size: 1rem;
}

.message-text[b-4retsqij22] {
    margin: 0;
    color: #1f2937;
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}

@media (max-width: 767px) {
    .message-container[b-4retsqij22] {
        margin-top: 10px;
        padding: 10px;
    }

    .message-text[b-4retsqij22] {
        font-size: 0.9rem;
    }
} 
} 
/* _content/ClickLove_bot/Pages/Dating/LikesHistory.razor.rz.scp.css */
/* Основные стили для страницы истории лайков */
:root[b-qpng9pqrug] {
    --purple-primary: #8000FF;
    --purple-dark: #6600CC;
    --purple-light: #A64DFF;
    --purple-light-transparent: rgba(128, 0, 255, 0.1);
    --purple-glow: rgba(128, 0, 255, 0.4);
    --background-light: #F5F5F5;
    --text-primary: #333;
    --text-secondary: #666;
    --text-light: #999;
    --white: #FFF;
    --button-gradient: linear-gradient(to right, #8000FF, #A64DFF);
    --red: #FF3B30;
    --green: #34C759;
    --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --border-radius: 16px;
}

/* Контейнер истории лайков */
.likes-history-container[b-qpng9pqrug] {
    min-height: 100vh;
    background: var(--background-light);
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Заголовок страницы */
.page-header[b-qpng9pqrug] {
    background: var(--white);
    background-color: #FFFFFF; /* Принудительно белый фон */
    padding: 12px 16px;
    border-bottom: 1px solid #E5E5E7;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15); /* Увеличиваем тень для лучшего разделения */
    backdrop-filter: blur(10px); /* Размытие фона для дополнительного эффекта */
    -webkit-backdrop-filter: blur(10px); /* Поддержка Safari */
}

.header-content[b-qpng9pqrug] {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.btn-back[b-qpng9pqrug] {
    background: var(--purple-light-transparent);
    border: none;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-back:hover[b-qpng9pqrug] {
    background: var(--purple-primary);
    color: var(--white);
    transform: translateX(-2px);
}

.page-header h1[b-qpng9pqrug] {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

/* Кнопка "Показать все" в заголовке */
.btn-show-all-header[b-qpng9pqrug] {
    background: var(--button-gradient);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-show-all-header:hover[b-qpng9pqrug] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--purple-glow);
}

/* Секция фильтров */
.filters-section[b-qpng9pqrug] {
    background: var(--white);
    padding: 12px 16px;
    border-bottom: 1px solid #E5E5E7;
}

.filter-tabs[b-qpng9pqrug] {
    display: flex;
    gap: 8px;
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filter-tabs[b-qpng9pqrug]::-webkit-scrollbar {
    display: none;
}

.filter-tab[b-qpng9pqrug] {
    background: var(--background-light);
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-tab:hover[b-qpng9pqrug] {
    background: var(--purple-light-transparent);
    color: var(--purple-primary);
}

.filter-tab.active[b-qpng9pqrug] {
    background: var(--button-gradient);
    color: var(--white);
    box-shadow: 0 4px 12px var(--purple-glow);
}

/* Секция статистики */
.stats-section[b-qpng9pqrug] {
    padding: 16px;
    padding-top: 24px;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 0; /* Убираем дополнительный отступ */
}

.stat-card[b-qpng9pqrug] {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 16px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition-fast);
    cursor: pointer;
}

.stat-card:hover[b-qpng9pqrug] {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.stat-card.active[b-qpng9pqrug] {
    background: var(--button-gradient);
    color: var(--white);
    box-shadow: 0 8px 20px var(--purple-glow);
}

.stat-card.active .stat-number[b-qpng9pqrug] {
    color: var(--white);
}

.stat-card.active .stat-label[b-qpng9pqrug] {
    color: var(--white);
    opacity: 0.9;
}

.stat-number[b-qpng9pqrug] {
    font-size: 32px;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 8px;
}

.stat-label[b-qpng9pqrug] {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Список лайков */
.likes-list[b-qpng9pqrug] {
    padding: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.like-item[b-qpng9pqrug] {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.like-item[b-qpng9pqrug]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--purple-primary);
    opacity: 0;
    transition: var(--transition-fast);
}

.like-item:hover[b-qpng9pqrug] {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.like-item:hover[b-qpng9pqrug]::before {
    opacity: 1;
}

.like-item.mutual[b-qpng9pqrug]::before {
    background: var(--green);
    opacity: 1;
}

.like-item.turbo[b-qpng9pqrug]::before {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    opacity: 1;
}

/* Фото в элементе лайка */
.like-photo[b-qpng9pqrug] {
    position: relative;
    flex-shrink: 0;
}

.like-photo img[b-qpng9pqrug] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--background-light);
}

.photo-placeholder[b-qpng9pqrug] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--purple-light-transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--purple-primary);
    border: 3px solid var(--background-light);
}

.turbo-badge[b-qpng9pqrug] {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid var(--white);
    animation: turboGlow-b-qpng9pqrug 2s ease-in-out infinite alternate;
}

@keyframes turboGlow-b-qpng9pqrug {
    from {
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    }
}

/* Информация о лайке */
.like-info[b-qpng9pqrug] {
    flex-grow: 1;
    min-width: 0;
}

.like-header[b-qpng9pqrug] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.like-header h3[b-qpng9pqrug] {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.like-age[b-qpng9pqrug] {
    font-size: 14px;
    color: var(--text-secondary);
    background: var(--background-light);
    padding: 4px 8px;
    border-radius: 8px;
    flex-shrink: 0;
}

.like-details[b-qpng9pqrug] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.like-city[b-qpng9pqrug] {
    font-size: 14px;
    color: var(--text-secondary);
}

.like-date[b-qpng9pqrug] {
    font-size: 12px;
    color: var(--text-light);
}

.like-message[b-qpng9pqrug] {
    background: var(--purple-light-transparent);
    border-radius: 10px;
    padding: 10px;
    margin: 6px 0;
    font-size: 13px;
    color: var(--text-primary);
    border-left: 3px solid var(--purple-primary);
}

.like-status[b-qpng9pqrug] {
    margin-top: 6px;
}

.status-mutual[b-qpng9pqrug] {
    color: var(--green);
    font-weight: 600;
    font-size: 14px;
}

.status-sent[b-qpng9pqrug] {
    color: var(--purple-primary);
    font-weight: 600;
    font-size: 14px;
}

.status-received[b-qpng9pqrug] {
    color: #FF69B4;
    font-weight: 600;
    font-size: 14px;
}

/* Действия с лайком */
.like-actions[b-qpng9pqrug] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.btn-chat[b-qpng9pqrug],
.btn-profile[b-qpng9pqrug] {
    background: var(--background-light);
    border: none;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-chat:hover[b-qpng9pqrug] {
    background: var(--green);
    color: var(--white);
    transform: scale(1.1);
}

.btn-profile:hover[b-qpng9pqrug] {
    background: var(--purple-primary);
    color: var(--white);
    transform: scale(1.1);
}

/* Состояние "нет лайков" */
.no-likes[b-qpng9pqrug] {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.no-likes-icon[b-qpng9pqrug] {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.7;
}

.no-likes h3[b-qpng9pqrug] {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.no-likes p[b-qpng9pqrug] {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-show-all[b-qpng9pqrug],
.btn-start-dating[b-qpng9pqrug] {
    background: var(--button-gradient);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-show-all[b-qpng9pqrug]::before,
.btn-start-dating[b-qpng9pqrug]::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: var(--transition-normal);
}

.btn-show-all:hover[b-qpng9pqrug]::before,
.btn-start-dating:hover[b-qpng9pqrug]::before {
    left: 100%;
}

.btn-show-all:hover[b-qpng9pqrug],
.btn-start-dating:hover[b-qpng9pqrug] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--purple-glow);
}

/* Загрузка */
.loading[b-qpng9pqrug] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.loading-spinner[b-qpng9pqrug] {
    width: 40px;
    height: 40px;
    border: 4px solid var(--purple-light-transparent);
    border-top: 4px solid var(--purple-primary);
    border-radius: 50%;
    animation: spin-b-qpng9pqrug 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin-b-qpng9pqrug {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading p[b-qpng9pqrug] {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* Адаптивность для планшетов */
@media (max-width: 768px) {
    .page-header[b-qpng9pqrug] {
        padding: 10px 14px;
    }
    
    .header-content[b-qpng9pqrug] {
        gap: 10px;
    }
    
    .page-header h1[b-qpng9pqrug] {
        font-size: 18px;
    }
    
    .filters-section[b-qpng9pqrug] {
        padding: 10px 14px;
    }
    
    .stats-section[b-qpng9pqrug] {
        padding: 14px;
        gap: 10px;
    }
    
    .stat-card[b-qpng9pqrug] {
        padding: 14px;
    }
    
    .stat-number[b-qpng9pqrug] {
        font-size: 26px;
    }
    
    .likes-list[b-qpng9pqrug] {
        padding: 14px;
    }
    
    .like-item[b-qpng9pqrug] {
        padding: 14px;
        margin-bottom: 10px;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 600px) {
    .likes-history-container[b-qpng9pqrug] {
        padding: 0;
    }
    
    .page-header[b-qpng9pqrug] {
        padding: 8px 12px;
    }
    
    .header-content[b-qpng9pqrug] {
        gap: 8px;
    }
    
    .page-header h1[b-qpng9pqrug] {
        font-size: 16px;
    }
    
    .btn-back[b-qpng9pqrug] {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
    
    .btn-show-all-header[b-qpng9pqrug] {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .filters-section[b-qpng9pqrug] {
        padding: 8px 12px;
    }
    
    .filter-tab[b-qpng9pqrug] {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .stats-section[b-qpng9pqrug] {
        padding: 12px;
        gap: 8px;
    }
    
    .stat-card[b-qpng9pqrug] {
        padding: 12px;
    }
    
    .stat-number[b-qpng9pqrug] {
        font-size: 22px;
        margin-bottom: 4px;
    }
    
    .stat-label[b-qpng9pqrug] {
        font-size: 11px;
    }
    
    .likes-list[b-qpng9pqrug] {
        padding: 12px;
    }
    
    .like-item[b-qpng9pqrug] {
        padding: 12px;
        margin-bottom: 8px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .like-photo img[b-qpng9pqrug],
    .photo-placeholder[b-qpng9pqrug] {
        width: 48px;
        height: 48px;
    }
    
    .turbo-badge[b-qpng9pqrug] {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
    
    .like-header[b-qpng9pqrug] {
        width: 100%;
        justify-content: space-between;
    }
    
    .like-header h3[b-qpng9pqrug] {
        font-size: 15px;
    }
    
    .like-details[b-qpng9pqrug] {
        gap: 10px;
        margin-bottom: 4px;
    }
    
    .like-city[b-qpng9pqrug],
    .like-date[b-qpng9pqrug] {
        font-size: 11px;
    }
    
    .like-message[b-qpng9pqrug] {
        padding: 8px;
        font-size: 12px;
        margin: 4px 0;
    }
    
    .like-actions[b-qpng9pqrug] {
        flex-direction: column;
        align-self: center;
        gap: 6px;
    }
    
    .btn-chat[b-qpng9pqrug],
    .btn-profile[b-qpng9pqrug] {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
    
    .no-likes[b-qpng9pqrug] {
        padding: 32px 16px;
    }
    
    .no-likes-icon[b-qpng9pqrug] {
        font-size: 48px;
        margin-bottom: 12px;
    }
    
    .no-likes h3[b-qpng9pqrug] {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .no-likes p[b-qpng9pqrug] {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .btn-show-all[b-qpng9pqrug],
    .btn-start-dating[b-qpng9pqrug] {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* Дополнительные стили для улучшения touch-интерфейса */
@media (pointer: coarse) {
    .filter-tab[b-qpng9pqrug] {
        min-height: 44px;
    }
    
    .btn-back[b-qpng9pqrug],
    .btn-chat[b-qpng9pqrug],
    .btn-profile[b-qpng9pqrug] {
        min-width: 44px;
        min-height: 44px;
    }
    
    .like-item[b-qpng9pqrug] {
        min-height: 80px;
    }
}
/* _content/ClickLove_bot/Pages/Dating/NewDating.razor.rz.scp.css */
/* Основные стили для страницы профиля */
:root[b-fd9aml3wt4] {
    /* Переменные для цветов, соответствующих дизайну */
    --purple-primary: #8000FF;
    --purple-dark: #6600CC;
    --purple-light: #A64DFF;
    --purple-light-transparent: rgba(128, 0, 255, 0.1);
    --purple-glow: rgba(128, 0, 255, 0.4);
    --background-light: #F5F5F5;
    --text-primary: #333;
    --text-secondary: #666;
    --text-light: #999;
    --white: #FFF;
    --button-gradient: linear-gradient(to right, #8000FF, #A64DFF);
    --red: #FF3B30;
    --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Для поддержки мобильных устройств */
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0);
}

body[b-fd9aml3wt4] {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-light);
    color: var(--text-primary);
    line-height: 1.5;
}

/* Контейнер профиля */
.profile-container[b-fd9aml3wt4] {
    max-width: 800px; 
    background-color: var(--white);
    box-shadow: var(--card-shadow);
    border-radius: 12px; /* Было 16px */
    overflow: hidden;
    position: relative;
    transition: var(--transition-slow);
    animation: fadeIn-b-fd9aml3wt4 0.8s ease-in-out;
    font-family: 'Montserrat', sans-serif;
    padding: 0; /* Убираем внутренний отступ */
    width: calc(100% - 8px); /* Адаптивная ширина */
    box-sizing: border-box;
}

@keyframes fadeIn-b-fd9aml3wt4 {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Стили для верхней панели */
.profile-header[b-fd9aml3wt4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8px; /* Было 15px 16px */
    z-index: 10;
    color: var(--text-primary);
    background-color: var(--white);
}

/* Добавляем стили для контейнера с тегами в профиле-хедере */
.profile-header .tag-emoji-circles[b-fd9aml3wt4] {
    display: flex;
    gap: 6px;
    margin: 0 auto 0 10px; /* центрируем блок, если нет турбо-бейджа */
}

.turbo-badge[b-fd9aml3wt4] {
    background-color: var(--purple-primary);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(128, 0, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.turbo-badge[b-fd9aml3wt4]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transform: scale(1.5);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    pointer-events: none;
}

.turbo-badge:hover[b-fd9aml3wt4] {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 0, 255, 0.6);
}

.turbo-badge:hover[b-fd9aml3wt4]::before {
    opacity: 1;
    transform: scale(1);
}

/* Турбо-метка в описании */
.turbo-badge-description[b-fd9aml3wt4] {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    cursor: default;
    animation: turboGlowDescription-b-fd9aml3wt4 3s ease-in-out infinite alternate;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: calc(100% - 20px);
    word-wrap: break-word;
}

@keyframes turboGlowDescription-b-fd9aml3wt4 {
    0% { 
        box-shadow: 0 3px 12px rgba(255, 107, 53, 0.4);
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 5px 20px rgba(255, 107, 53, 0.6);
        transform: scale(1.02);
    }
}

.turbo-badge-description[b-fd9aml3wt4]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.8s ease;
}

.turbo-badge-description:hover[b-fd9aml3wt4]::before {
    opacity: 1;
    transform: translateX(100%);
}

.profile-actions[b-fd9aml3wt4] {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.video-button[b-fd9aml3wt4] {
    margin-left: 14px;
}

.btn-video[b-fd9aml3wt4] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ff4d4d;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    padding: 0;
    box-shadow: 0 3px 8px rgba(255, 77, 77, 0.4);
    transition: all 0.3s ease;
}

.btn-video:hover[b-fd9aml3wt4] {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.6);
}

.btn-video:active[b-fd9aml3wt4] {
    transform: scale(0.95);
}

.btn-circle[b-fd9aml3wt4] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-circle:hover[b-fd9aml3wt4] {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-circle:active[b-fd9aml3wt4] {
    transform: translateY(0);
}

/* Стили для кнопки жалобы */
.report-button[b-fd9aml3wt4] {
    margin-left: auto;
}

.btn-report[b-fd9aml3wt4] {
    width: 32px;
    height: 32px;
    border-radius: 0;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #FF3B30;
    padding: 0;
    transition: all 0.3s ease;
}

.btn-report:hover[b-fd9aml3wt4] {
    transform: scale(1.2);
}

.btn-report:active[b-fd9aml3wt4] {
    transform: scale(0.95);
}

/* Стили для основного фото */
.profile-photo-container[b-fd9aml3wt4] {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 4px; /* Было 16px */
    width: calc(100% - 8px); /* Было 32px */
    min-height: 300px; /* Минимальная высота для очень маленьких экранов */
    max-height: 80vh; /* Максимальная высота относительно viewport */
}

.profile-photo-placeholder[b-fd9aml3wt4] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222;
    background-size: cover;
    background-position: center;
    position: relative;
}

.profile-photo-placeholder[b-fd9aml3wt4]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.3) 100%);
    z-index: 1;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.profile-photo-container:hover .profile-photo-placeholder[b-fd9aml3wt4]::before {
    opacity: 0.75;
}

.emoji-photo[b-fd9aml3wt4] {
    font-size: 120px;
    color: var(--white);
    z-index: 2;
}

.photo-counter[b-fd9aml3wt4] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 2;
}

.profile-info[b-fd9aml3wt4] {
    color: var(--text-primary);
    width: 100%;
    z-index: 2;
    padding: 0 !important;
    margin: 0 !important;
}

.name-container[b-fd9aml3wt4] {
    display: flex;
    align-items: baseline;
    justify-content: space-between; /* Распределяем элементы по краям */
    gap: 12px;
    padding: 0; /* Убираем padding */
    margin: 0; /* Убираем margin */
    transition: transform 0.3s ease;
    width: 100%; /* Занимаем всю ширину */
}

.name-container:hover[b-fd9aml3wt4] {
    transform: translateY(-2px);
}

.profile-name[b-fd9aml3wt4] {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    margin: 0; /* Убираем стандартные отступы h1 */
    padding: 0;
}

.profile-name[b-fd9aml3wt4]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--purple-primary), rgba(128, 0, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.name-container:hover .profile-name[b-fd9aml3wt4]::after {
    opacity: 1;
}

.profile-age[b-fd9aml3wt4] {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-secondary);
    font-family: 'Montserrat', sans-serif;
    margin: 0; /* Убираем стандартные отступы p */
    padding: 0;
}

.profile-line[b-fd9aml3wt4]{
    background-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 1), transparent);
    border: 0;
    height: 1px;
    margin: 22px 0 22px 0;
    box-sizing: content-box;
    display: block;
}

.profile-location[b-fd9aml3wt4] {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    z-index: 2;
    margin-bottom: 15px;
    margin-top: 5px;
    transition: transform 0.3s ease;
}

/* Круги эмодзи тегов перед флагом */
.tag-emoji-circles[b-fd9aml3wt4] {
    display: flex;
    margin-right: 8px;
    gap: 6px; /* Добавляем отступ между кругами эмодзи */
}

.tag-emoji-circle[b-fd9aml3wt4] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--purple-light-transparent);
    color: var(--purple-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid rgba(128, 0, 255, 0.2);
    box-shadow: 0 2px 4px rgba(128, 0, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Увеличиваем z-index для каждого следующего круга */
.tag-emoji-circle:nth-child(1)[b-fd9aml3wt4] {
    z-index: 3;
}

.tag-emoji-circle:nth-child(2)[b-fd9aml3wt4] {
    z-index: 2;
}

.tag-emoji-circle:nth-child(3)[b-fd9aml3wt4] {
    z-index: 1;
}

.tag-emoji-circle:hover[b-fd9aml3wt4] {
    transform: scale(1.2);
    background-color: var(--purple-primary);
    color: var(--white);
    border-color: var(--purple-primary);
    z-index: 10;
}

.profile-location:hover[b-fd9aml3wt4] {
    transform: translateY(-2px);
}

/* Местоположение в верхней части профиля */
.profile-location-top[b-fd9aml3wt4] {
    padding: 0 !important; /* Убираем padding полностью */
    margin: 0 !important;
    margin-top: 2px !important;
    margin-bottom: 10px !important;
    margin-left: 0 !important;
    justify-content: flex-start !important;
    text-align: left !important;
    font-size: 16px;
    color: var(--text-secondary);
    gap: 4px !important; /* Уменьшаем отступ между иконкой и текстом */
}

.location-icon-wrapper[b-fd9aml3wt4] {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Выравниваем по левому краю */
    margin: 0 !important;
    padding: 0 !important;
}

.location-icon-wrapper svg[b-fd9aml3wt4] {
    fill: var(--text-secondary);
}

@keyframes pulse-b-fd9aml3wt4 {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Информационные сообщения */
.profile-messages[b-fd9aml3wt4] {
    position: absolute;
    bottom: 110px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 16px;
    z-index: 15;
}

.profile-message[b-fd9aml3wt4] {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 10px 18px;
    border-radius: 22px;
    font-size: 11px;
    display: inline-block;
    max-width: 95%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn-b-fd9aml3wt4 0.5s ease-in-out;
}

.profile-message span[b-fd9aml3wt4] {
    color: #333;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.profile-message a[b-fd9aml3wt4] {
    color: var(--purple-primary);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    padding-bottom: 1px;
    transition: color 0.3s ease;
}

.profile-message a[b-fd9aml3wt4]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--purple-primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.profile-message a:hover[b-fd9aml3wt4] {
    color: var(--purple-dark);
}

.profile-message a:hover[b-fd9aml3wt4]::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Навигация по фото */
.photo-navigation[b-fd9aml3wt4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    margin: 0 16px;
    box-shadow: none;
}

.btn-nav[b-fd9aml3wt4] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Добавляем эффект ripple при клике */
.btn-nav[b-fd9aml3wt4]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(128, 0, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.btn-nav.clicked[b-fd9aml3wt4]::before {
    width: 60px;
    height: 60px;
    opacity: 1;
    animation: rippleEffect-b-fd9aml3wt4 0.6s ease-out forwards;
}

@keyframes rippleEffect-b-fd9aml3wt4 {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    50% {
        width: 60px;
        height: 60px;
        opacity: 0.8;
    }
    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

.btn-nav:hover[b-fd9aml3wt4] {
    background-color: #f8f8f8;
    border-color: #d0d0d0;
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: navButtonPulse-b-fd9aml3wt4 0.3s ease-out;
}

@keyframes navButtonPulse-b-fd9aml3wt4 {
    0% {
        transform: translateY(-1px) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.08);
    }
    100% {
        transform: translateY(-1px) scale(1.05);
    }
}

.btn-nav:active[b-fd9aml3wt4] {
    transform: translateY(0) scale(0.95);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease;
}

.btn-nav:disabled[b-fd9aml3wt4] {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    background-color: #f5f5f5;
    border-color: #e8e8e8;
    animation: none;
}

/* Анимация покачивания для disabled кнопки при попытке клика */
.btn-nav:disabled.shake[b-fd9aml3wt4] {
    animation: disabledShake-b-fd9aml3wt4 0.5s ease-in-out;
}

@keyframes disabledShake-b-fd9aml3wt4 {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.btn-prev svg[b-fd9aml3wt4], .btn-next svg[b-fd9aml3wt4] {
    width: 24px;
    height: 24px;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.btn-prev:hover svg[b-fd9aml3wt4], .btn-next:hover svg[b-fd9aml3wt4] {
    transform: scale(1.1);
    animation: arrowBounce-b-fd9aml3wt4 0.4s ease-in-out;
}

@keyframes arrowBounce-b-fd9aml3wt4 {
    0%, 100% {
        transform: scale(1.1);
    }
    25% {
        transform: scale(1.2) translateX(-1px);
    }
    75% {
        transform: scale(1.15) translateX(1px);
    }
}

.btn-prev:active svg[b-fd9aml3wt4], .btn-next:active svg[b-fd9aml3wt4] {
    transform: scale(1);
    transition: transform 0.1s ease;
}

/* Специальные анимации для стрелок влево и вправо */
.btn-prev:hover svg[b-fd9aml3wt4] {
    animation: arrowLeftBounce-b-fd9aml3wt4 0.4s ease-in-out;
}

.btn-next:hover svg[b-fd9aml3wt4] {
    animation: arrowRightBounce-b-fd9aml3wt4 0.4s ease-in-out;
}

@keyframes arrowLeftBounce-b-fd9aml3wt4 {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2) translateX(-2px);
    }
}

@keyframes arrowRightBounce-b-fd9aml3wt4 {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2) translateX(2px);
    }
}

/* Стили для кнопки лайка */
.btn-like[b-fd9aml3wt4] {
    background: white;
    border: none;
    border-radius: 30px;
    color: purple;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(128, 0, 255, 0.3);
    letter-spacing: 1px;
    min-width: 100px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    position: relative;
    overflow: hidden;
    animation: likePulse-b-fd9aml3wt4 3s ease-in-out infinite;
}

/* Тонкая анимация пульсации для кнопки лайка */
@keyframes likePulse-b-fd9aml3wt4 {
    0%, 70%, 100% {
        box-shadow: 0 4px 10px rgba(128, 0, 255, 0.3);
        transform: scale(1);
    }
    35% {
        box-shadow: 0 4px 15px rgba(128, 0, 255, 0.4);
        transform: scale(1.02);
    }
}

/* Дополнительная анимация для сердечка */
.btn-like .heart-icon[b-fd9aml3wt4] {
    transition: transform 0.3s ease;
    animation: heartBeat-b-fd9aml3wt4 2.5s ease-in-out infinite;
}

@keyframes heartBeat-b-fd9aml3wt4 {
    0%, 50%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
}

.btn-like:hover[b-fd9aml3wt4] {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 15px rgba(128, 0, 255, 0.4);
    animation: none; /* Останавливаем анимацию при ховере */
}

.btn-like:hover .heart-icon[b-fd9aml3wt4] {
    transform: scale(1.15);
    animation: none; /* Останавливаем анимацию сердечка при ховере */
}

.btn-like:active[b-fd9aml3wt4] {
    transform: scale(0.95);
    box-shadow: 0 3px 8px rgba(128, 0, 255, 0.3);
}

/* Анимация при клике - эффект взрыва сердечек */
.btn-like[b-fd9aml3wt4]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.8) 0%, rgba(255, 105, 180, 0.6) 30%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 1s ease-out, height 1s ease-out, opacity 1s ease-out;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.btn-like.clicked[b-fd9aml3wt4]::before {
    width: 200px;
    height: 200px;
    opacity: 1;
    animation: heartExplosion-b-fd9aml3wt4 1.5s ease-out forwards;
}

@keyframes heartExplosion-b-fd9aml3wt4 {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    30% {
        width: 80px;
        height: 80px;
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.1);
    }
    60% {
        width: 150px;
        height: 150px;
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.3);
    }
    100% {
        width: 250px;
        height: 250px;
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.6);
    }
}

/* Анимация сердечек после клика */
.btn-like[b-fd9aml3wt4]::after {
    content: '💖 💕 💗 💘 💝';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    white-space: nowrap;
    animation: none;
}

.btn-like.clicked[b-fd9aml3wt4]::after {
    animation: heartsFloat-b-fd9aml3wt4 2s ease-out forwards;
}

@keyframes heartsFloat-b-fd9aml3wt4 {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -70px) scale(0.8);
    }
    40% {
        opacity: 1;
        transform: translate(-50%, -100px) scale(1.1);
    }
    70% {
        opacity: 0.8;
        transform: translate(-50%, -140px) scale(1.3);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -200px) scale(0.9);
    }
}

/* Убираем анимацию успешного лайка с розовым цветом */
.btn-like.liked[b-fd9aml3wt4] {
    animation: likeSuccess-b-fd9aml3wt4 0.8s ease-out forwards;
}

@keyframes likeSuccess-b-fd9aml3wt4 {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.15);
        box-shadow: 0 8px 25px rgba(128, 0, 255, 0.6);
    }
    70% {
        transform: scale(0.95);
        box-shadow: 0 6px 20px rgba(128, 0, 255, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(128, 0, 255, 0.3);
    }
}

.btn-like:disabled[b-fd9aml3wt4] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    background: #e8e8e8;
    color: #888;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: none; /* Отключаем анимацию для заблокированной кнопки */
}

.btn-like:disabled .heart-icon[b-fd9aml3wt4] {
    fill: #888 !important;
    animation: none; /* Отключаем анимацию сердечка для заблокированной кнопки */
}

.btn-like:disabled:hover[b-fd9aml3wt4] {
    transform: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background: #e8e8e8;
}

/* Дополнительные стили для лайкнутого состояния */
.btn-like:disabled span[b-fd9aml3wt4] {
    color: #888;
}

/* Анимация встряхивания для заблокированной кнопки при клике */
.btn-like:disabled.clicked[b-fd9aml3wt4] {
    animation: shakeLimit-b-fd9aml3wt4 0.6s ease-in-out;
}

@keyframes shakeLimit-b-fd9aml3wt4 {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-3px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(3px);
    }
}

/* ТурбоЛайк баннер */
.turbolike-banner[b-fd9aml3wt4] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #AC18F0 0%, #260DFF 100%);
    color: var(--white);
    padding: 10px 8px; /* Было 15px 20px */
    margin: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(128, 0, 255, 0.3);
    border-radius: 20px;
}

.turbolike-banner[b-fd9aml3wt4]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.15) 100%);
    opacity: 0;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.turbolike-banner:hover[b-fd9aml3wt4] {
    background: linear-gradient(90deg, #9213C7 0%, #1E0BCC 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(172, 24, 240, 0.4);
}

.turbolike-banner:hover[b-fd9aml3wt4]::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.turbolike-content[b-fd9aml3wt4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.turbolike-title[b-fd9aml3wt4] {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: white;
}

.turbolike-subtitle[b-fd9aml3wt4] {
    font-size: 14px;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: white;
}

/* Удаляем старые стили турболайка */
.turbolike-icon[b-fd9aml3wt4],
.turbolike-text[b-fd9aml3wt4],
.turbolike-arrow[b-fd9aml3wt4] {
    display: none;
}

/* Описание профиля */
.profile-description[b-fd9aml3wt4] {
    padding: 12px; /* Было 20px */
    border: 1px solid #f0f0f0;
    border-radius: 30px;
    margin-bottom: 20px;
}

.description-header[b-fd9aml3wt4] {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.description-text[b-fd9aml3wt4] {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 20px;
    white-space: pre-wrap;
}

.btn-message[b-fd9aml3wt4] {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Центрируем содержимое */
    gap: 10px;
    background: linear-gradient(90deg, #AC18F0 0%, #260DFF 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(128, 0, 255, 0.3);
    width: 100%; /* Растягиваем на всю доступную ширину */
}

.btn-message[b-fd9aml3wt4]::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;
}

.btn-message span[b-fd9aml3wt4], .btn-message svg[b-fd9aml3wt4] {
    position: relative;
    z-index: 1;
}

.btn-message:hover[b-fd9aml3wt4] {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(172, 24, 240, 0.4);
    background: linear-gradient(90deg, #9213C7 0%, #1E0BCC 100%);
}

.btn-message:hover[b-fd9aml3wt4]::before {
    left: 100%;
}

.btn-message:active[b-fd9aml3wt4] {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(128, 0, 255, 0.3);
}

.btn-message:disabled[b-fd9aml3wt4] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Стили для контейнера кнопки "Написать" */
.message-button-container[b-fd9aml3wt4] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 4px 8px 4px; /* Верх - 20px, остальные стороны - 4px как у фото */
    align-items: stretch; /* Растягиваем кнопки на всю ширину */
}

/* Теги интересов */
.interest-tags[b-fd9aml3wt4] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag[b-fd9aml3wt4] {
    background: var(--purple-light-transparent);
    color: var(--purple-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(128, 0, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tag[b-fd9aml3wt4]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(128, 0, 255, 0.1), transparent);
    transition: left 0.3s ease;
}

.tag:hover[b-fd9aml3wt4] {
    background: var(--purple-primary);
    color: var(--white);
    border-color: var(--purple-primary);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(128, 0, 255, 0.3);
}

.tag:hover[b-fd9aml3wt4]::before {
    left: 100%;
}

/* Тарифная информация */
.tariff-info[b-fd9aml3wt4] {
    padding: 28px; /* Увеличен еще больше для комфортного восприятия */
    border: 1px solid #e9ecef;
    border-radius: 30px;
    margin-bottom: 20px;
}

.tariff-row[b-fd9aml3wt4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0; /* Увеличен еще больше для лучшего восприятия */
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.tariff-row:hover[b-fd9aml3wt4] {
    color: var(--text-primary);
}

/* Жирный шрифт только для строки с тарифом */
.tariff-row:first-child[b-fd9aml3wt4] {
    font-weight: 600;
}

/* Полоска под каждым элементом кроме первого (тариф) и последнего */
.tariff-row:not(:first-child):not(:last-child)[b-fd9aml3wt4] {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 18px; /* Увеличен для большего пространства */
    margin-bottom: 14px; /* Увеличен для лучшего разделения */
}

/* Градиентный текст "Премиум" в тарифе */
.premium-text-gradient[b-fd9aml3wt4] {
    background: linear-gradient(90deg, #AC18F0 0%, #260DFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Кнопка премиум в блоке тарифа */
.tariff-premium-button[b-fd9aml3wt4] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #AC18F0 0%, #260DFF 100%);
    color: #FFFFFF !important;
    padding: 12px 16px;
    margin-top: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(128, 0, 255, 0.3);
    border-radius: 20px;
    border: none;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    gap: 8px;
}

.tariff-premium-button span[b-fd9aml3wt4],
.tariff-premium-button svg[b-fd9aml3wt4] {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
    z-index: 2;
    position: relative;
}

.tariff-premium-button[b-fd9aml3wt4]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.15) 100%);
    opacity: 0;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.tariff-premium-button:hover[b-fd9aml3wt4] {
    background: linear-gradient(90deg, #9213C7 0%, #1E0BCC 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(172, 24, 240, 0.4);
}

.tariff-premium-button:hover[b-fd9aml3wt4]::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

/* Текст под кнопкой премиум в тарифе */
.tariff-premium-features[b-fd9aml3wt4] {
    background: linear-gradient(90deg, #081AE5 0%, #A60DFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
    padding: 0 4px;
}

.link-accent[b-fd9aml3wt4] {
    color: var(--purple-primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.link-accent[b-fd9aml3wt4]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--purple-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.link-accent:hover[b-fd9aml3wt4] {
    color: var(--purple-dark);
}

.link-accent:hover[b-fd9aml3wt4]::after {
    transform: scaleX(1);
}

/* Премиум кнопка */
.premium-button-container[b-fd9aml3wt4] {
    padding: 12px; /* Было 20px */
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
}

.btn-premium[b-fd9aml3wt4] {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(128, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-premium[b-fd9aml3wt4]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-premium:hover[b-fd9aml3wt4] {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(128, 0, 255, 0.4);
    background: linear-gradient(135deg, #9500FF, var(--purple-primary));
}

.btn-premium:hover[b-fd9aml3wt4]::after {
    left: 100%;
}

.btn-premium:active[b-fd9aml3wt4] {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(128, 0, 255, 0.3);
}

.premium-features[b-fd9aml3wt4] {
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    font-style: italic;
}

/* Справочная информация */
.reference-info[b-fd9aml3wt4] {
    padding: 12px; /* Было 20px */
    border: 1px solid #f0f0f0;
    border-radius: 30px 30px 0 0;
}

.reference-info h3[b-fd9aml3wt4] {
    color: var(--text-primary);
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.reference-info h3:hover[b-fd9aml3wt4] {
    color: #DD00FF;
}

.reference-info h3[b-fd9aml3wt4]::before {
    content: '▼';
    font-size: 14px;
    color: #DD00FF;
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.reference-info h3.collapsed[b-fd9aml3wt4]::before {
    transform: rotate(-90deg);
}

.reference-info h3[b-fd9aml3wt4]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--purple-primary);
    border-radius: 1px;
}

.reference-links[b-fd9aml3wt4] {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.reference-links.expanded[b-fd9aml3wt4] {
    max-height: 500px; /* Достаточно большая высота для всех ссылок */
}

.reference-links li[b-fd9aml3wt4] {
    margin: 8px 0;
    transition: transform 0.2s ease;
}

.reference-links li:hover[b-fd9aml3wt4] {
    transform: translateX(5px);
}

.reference-links a[b-fd9aml3wt4] {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.reference-links a[b-fd9aml3wt4]::before {
    content: '»';
    margin-right: 8px;
    color: #DD00FF;
    opacity: 1; /* Всегда видимый */
    transform: translateX(0); /* Убираем сдвиг */
    transition: none; /* Убираем анимацию */
}

.reference-links a:hover[b-fd9aml3wt4] {
    color: #DD00FF; /* Используем тот же цвет при наведении */
}

/* Убираем hover анимацию для ::before, так как символ всегда видим */

/* Телеграм-баннер */
.telegram-banner[b-fd9aml3wt4] {
    background: linear-gradient(135deg, #0088cc, #229ed9);
    color: white;
    padding: 10px 8px; /* Было 15px 20px */
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 16px 16px; /* Добавлено закругление только снизу */
}

.telegram-banner[b-fd9aml3wt4]::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -100%;
    width: 100%;
    height: calc(100% + 4px);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.telegram-banner:hover[b-fd9aml3wt4] {
    background: linear-gradient(135deg, #0099dd, #33aaee);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.telegram-banner:hover[b-fd9aml3wt4]::before {
    left: 100%;
}

.telegram-icon[b-fd9aml3wt4] {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: telegramPulse-b-fd9aml3wt4 2s ease-in-out infinite;
}

@keyframes telegramPulse-b-fd9aml3wt4 {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Загрузка */
.loading[b-fd9aml3wt4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 8px; /* Было 50px 20px */
    color: var(--text-secondary);
}

.loading-spinner[b-fd9aml3wt4] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--purple-primary);
    border-radius: 50%;
    animation: spin-b-fd9aml3wt4 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin-b-fd9aml3wt4 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Нет профилей */
.no-profiles[b-fd9aml3wt4] {
    text-align: center;
    padding: 20px 8px; /* Было 30px 20px */
    color: #666;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: auto;
    width: 100%;
}

.no-profiles-icon[b-fd9aml3wt4] {
    font-size: 40px;
    color: #999;
    margin-bottom: 15px;
}

/* Диалоги */
.report-dialog[b-fd9aml3wt4] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 15px;
    box-sizing: border-box;
}

.report-content[b-fd9aml3wt4] {
    background: white;
    padding: 12px; /* Было 20px */
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.report-content h3[b-fd9aml3wt4] {
    margin-top: 0;
    color: #333;
    font-size: 20px;
}

.complaint-reasons[b-fd9aml3wt4] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.reason-group[b-fd9aml3wt4] {
    display: flex;
    gap: 10px;
}

.reason-btn[b-fd9aml3wt4] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reason-btn i[b-fd9aml3wt4] {
    font-size: 24px;
    color: #666;
}

.reason-btn span[b-fd9aml3wt4] {
    font-size: 14px;
    color: #333;
    text-align: center;
}

.reason-btn:hover[b-fd9aml3wt4] {
    border-color: #ff9800;
    background: #fff9f0;
}

.reason-btn.selected[b-fd9aml3wt4] {
    border-color: #ff9800;
    background: #ff9800;
}

.reason-btn.selected i[b-fd9aml3wt4],
.reason-btn.selected span[b-fd9aml3wt4] {
    color: white;
}

.other-reason-text[b-fd9aml3wt4] {
    width: 100%;
    height: 100px;
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.report-actions[b-fd9aml3wt4] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.submit-btn[b-fd9aml3wt4], .cancel-btn[b-fd9aml3wt4] {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

.submit-btn[b-fd9aml3wt4] {
    background: #4CAF50;
    color: white;
}

.submit-btn:disabled[b-fd9aml3wt4] {
    background: #ccc;
    cursor: not-allowed;
}

.cancel-btn[b-fd9aml3wt4] {
    background: #f44336;
    color: white;
}

.submit-btn:hover:not(:disabled)[b-fd9aml3wt4],
.cancel-btn:hover[b-fd9aml3wt4] {
    opacity: 0.9;
}

/* Всплывающее окно для сообщения */
.message-dialog[b-fd9aml3wt4] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 15px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-sizing: border-box;
}

.message-content[b-fd9aml3wt4] {
    background: white;
    padding: 12px; /* Было 20px */
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
    animation: popup-appear-b-fd9aml3wt4 0.3s ease-out;
    box-sizing: border-box;
}

.message-content h3[b-fd9aml3wt4] {
    margin-top: 0;
    color: #333;
    font-size: 20px;
    margin-bottom: 5px;
}

.message-content p[b-fd9aml3wt4] {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.message-text[b-fd9aml3wt4] {
    width: 100%;
    height: 120px;
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: border 0.3s ease;
}

.message-text:focus[b-fd9aml3wt4] {
    outline: none;
    border: 1px solid var(--purple-primary);
    box-shadow: 0 0 0 2px var(--purple-light-transparent);
}

.message-actions[b-fd9aml3wt4] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
}

/* Слайдер фото (стрелки) */
.photo-slider-arrows[b-fd9aml3wt4] {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
    pointer-events: none;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 8px;
}

.photo-arrow[b-fd9aml3wt4] {
    background: rgba(0,0,0,0.45);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.photo-arrow:disabled[b-fd9aml3wt4] {
    opacity: 0.5;
    cursor: not-allowed;
}

.photo-arrow:hover:not(:disabled)[b-fd9aml3wt4] {
    background: rgba(128,0,255,0.7);
    transform: scale(1.08);
}

.photo-arrow svg[b-fd9aml3wt4] {
    display: block;
}

.photo-arrow.left[b-fd9aml3wt4] {
    margin-right: auto;
}

.photo-arrow.right[b-fd9aml3wt4] {
    margin-left: auto;
}

/* Стили для стрелок навигации */
.arrow-icon[b-fd9aml3wt4] {
    width: 24px;
    height: 24px;
    transition: fill 0.3s ease;
}

.arrow-left-svg[b-fd9aml3wt4] {
    fill: #666;
    transition: fill 0.2s ease, transform 0.2s ease;
}

.arrow-right-svg[b-fd9aml3wt4] {
    fill: #666;
    transition: fill 0.2s ease, transform 0.2s ease;
}

.btn-nav:hover .arrow-left-svg[b-fd9aml3wt4], 
.btn-nav:hover .arrow-right-svg[b-fd9aml3wt4] {
    fill: #333;
}

.btn-nav:disabled .arrow-left-svg[b-fd9aml3wt4], 
.btn-nav:disabled .arrow-right-svg[b-fd9aml3wt4] {
    fill: #ccc;
}

/* Селектор количества турболайков */
.turbo-count-selector[b-fd9aml3wt4] {
    margin: 20px 0;
}

.turbo-count-selector label[b-fd9aml3wt4] {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
    text-align: center;
}

/* Контейнер ползунка */
.turbo-slider-container[b-fd9aml3wt4] {
    margin: 15px 0;
    position: relative;
    padding: 15px 0; /* Увеличиваем отступы для лучшей видимости ползунка */
}

/* Стили для ползунка */
.turbo-slider[b-fd9aml3wt4] {
    width: 100%;
    height: 20px;
    border-radius: 10px;
    background: linear-gradient(to right, #e0e0e0 0%, var(--purple-light) 100%);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #ddd;
    overflow: visible;
    background-clip: content-box;
}

.turbo-slider[b-fd9aml3wt4]::-webkit-slider-runnable-track {
    height: 20px;
    border-radius: 10px;
    background: linear-gradient(to right, #e0e0e0 0%, var(--purple-light) 100%);
    border: 2px solid #ddd;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

/* Убираем просвечивание для WebKit */
.turbo-slider[b-fd9aml3wt4]::-webkit-slider-thumb {
    -webkit-box-shadow: 0 3px 10px rgba(128, 0, 255, 0.4), 0 0 0 1px rgba(128, 0, 255, 0.2);
    box-shadow: 0 3px 10px rgba(128, 0, 255, 0.4), 0 0 0 1px rgba(128, 0, 255, 0.2);
    background-color: var(--purple-primary);
    border: 4px solid #ffffff;
    border-radius: 50%;
    opacity: 1 !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
}

/* Стили для ползунка Firefox */
.turbo-slider[b-fd9aml3wt4]::-moz-range-thumb {
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: var(--purple-primary);
    cursor: pointer;
    border: 4px solid white;
    box-shadow: 0 3px 10px rgba(128, 0, 255, 0.4), 0 0 0 1px rgba(128, 0, 255, 0.2);
    transition: all 0.3s ease;
    -moz-appearance: none;
    appearance: none;
    opacity: 1;
    position: relative;
    z-index: 10;
}

.turbo-slider[b-fd9aml3wt4]::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(128, 0, 255, 0.6);
    background: var(--purple-dark);
}

.turbo-slider[b-fd9aml3wt4]::-moz-range-track {
    height: 20px;
    border-radius: 10px;
    background: linear-gradient(to right, #e0e0e0 0%, var(--purple-light) 100%);
    border: 2px solid #ddd;
    position: relative;
    z-index: 1;
}

/* Анимация для активного ползунка */
.turbo-slider:active[b-fd9aml3wt4]::-webkit-slider-thumb {
    transform: scale(1.3);
    box-shadow: 0 6px 18px rgba(128, 0, 255, 0.7);
    background: var(--purple-dark);
}

.turbo-slider:active[b-fd9aml3wt4]::-moz-range-thumb {
    transform: scale(1.3);
    box-shadow: 0 6px 18px rgba(128, 0, 255, 0.7);
    background: var(--purple-dark);
}

/* Дополнительные стили для улучшения видимости ползунка */
.turbo-slider:focus[b-fd9aml3wt4] {
    outline: none;
    border: 2px solid var(--purple-primary);
}

.turbo-slider:focus[b-fd9aml3wt4]::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px rgba(128, 0, 255, 0.3);
}

.turbo-slider:focus[b-fd9aml3wt4]::-moz-range-thumb {
    box-shadow: 0 0 0 3px rgba(128, 0, 255, 0.3);
}

/* Стили для Internet Explorer и Edge Legacy */
.turbo-slider[b-fd9aml3wt4]::-ms-track {
    width: 100%;
    height: 20px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.turbo-slider[b-fd9aml3wt4]::-ms-fill-lower {
    background: var(--purple-light);
    border-radius: 10px;
}

.turbo-slider[b-fd9aml3wt4]::-ms-fill-upper {
    background: #e0e0e0;
    border-radius: 10px;
}

.turbo-slider[b-fd9aml3wt4]::-ms-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--purple-primary);
    cursor: pointer;
    border: 4px solid white;
    box-shadow: 0 3px 10px rgba(128, 0, 255, 0.4);
}

/* Подписи к ползунку */
.slider-labels[b-fd9aml3wt4] {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Отображение стоимости */
.turbo-cost-display[b-fd9aml3wt4] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    padding: 15px;
    background: var(--purple-light-transparent);
    border-radius: 10px;
    border: 2px solid rgba(128, 0, 255, 0.2);
    box-shadow: 0 2px 8px rgba(128, 0, 255, 0.1);
}

.cost-label[b-fd9aml3wt4] {
    font-size: 18px;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 5px;
}

.balance-remaining[b-fd9aml3wt4] {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
}

.cost-label strong[b-fd9aml3wt4] {
    color: var(--purple-primary);
    font-weight: 700;
    font-size: 20px;
}

/* Стили для информации о турболайке */
.turbolike-info[b-fd9aml3wt4] {
    margin-bottom: 15px;
    line-height: 1.5;
    color: var(--text-primary);
    font-size: 14px;
}

.turbolike-info strong[b-fd9aml3wt4] {
    color: var(--purple-primary);
    font-weight: 700;
}

.error-message[b-fd9aml3wt4] {
    background: #ffebee;
    color: #c62828;
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid #ffcdd2;
}

.error-message a[b-fd9aml3wt4] {
    color: var(--purple-primary);
    text-decoration: none;
    font-weight: 600;
}

.error-message a:hover[b-fd9aml3wt4] {
    text-decoration: underline;
}

/* Анимация появления модального окна */
@keyframes popup-appear-b-fd9aml3wt4 {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Стили для всплывающего окна лимита */
.limit-popup[b-fd9aml3wt4] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 15px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.limit-popup-content[b-fd9aml3wt4] {
    background: white;
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
    animation: popup-appear-b-fd9aml3wt4 0.3s ease-out;
    text-align: center;
}

.limit-popup-header[b-fd9aml3wt4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.limit-popup-icon[b-fd9aml3wt4] {
    font-size: 48px;
    margin-bottom: 10px;
}

.limit-popup-header h3[b-fd9aml3wt4] {
    margin: 0;
    color: #333;
    font-size: 20px;
}

.limit-popup-body[b-fd9aml3wt4] {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

.premium-suggestion[b-fd9aml3wt4] {
    background: var(--purple-light-transparent);
    color: var(--purple-primary);
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 600;
    border: 1px solid rgba(128, 0, 255, 0.2);
}

.limit-popup-close[b-fd9aml3wt4] {
    background: var(--purple-primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.limit-popup-close:hover[b-fd9aml3wt4] {
    background: var(--purple-dark);
    transform: translateY(-1px);
}

/* Специальные стили для непрозрачности ползунка */
.turbo-slider[b-fd9aml3wt4] {
    background-clip: content-box;
}

.turbo-slider[b-fd9aml3wt4]::-webkit-slider-thumb {
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
}

.turbo-slider[b-fd9aml3wt4]::-moz-range-thumb {
    background-clip: border-box !important;
}

/* Убираем любые эффекты прозрачности */
.turbo-slider[b-fd9aml3wt4]::-webkit-slider-thumb:after,
.turbo-slider[b-fd9aml3wt4]::-webkit-slider-thumb:before {
    display: none;
}

/* Адаптивность для больших планшетов и маленьких десктопов */
@media (max-width: 1024px) {
    .profile-container[b-fd9aml3wt4] {
        max-width: 90%;
        margin: 8px auto;
    }

    .profile-photo-container[b-fd9aml3wt4] {
        height: 600px;
    }

    .turbolike-banner[b-fd9aml3wt4] {
        margin: 12px;
    }
}

/* Адаптивность для планшетов */
@media (max-width: 768px) {
    .profile-container[b-fd9aml3wt4] {
        max-width: 95%;
        margin: 6px auto;
        border-radius: 8px;
    }

    .profile-photo-container[b-fd9aml3wt4] {
        height: 500px;
        margin: 0 2px;
        width: calc(100% - 4px);
    }

    .profile-header[b-fd9aml3wt4] {
        padding: 8px 6px;
    }

    .profile-description[b-fd9aml3wt4],
    .tariff-info[b-fd9aml3wt4],
    .premium-button-container[b-fd9aml3wt4],
    .reference-info[b-fd9aml3wt4] {
        padding: 24px; /* Увеличен еще больше для планшетов */
    }

    .profile-name[b-fd9aml3wt4] {
        font-size: 24px;
    }

    .profile-age[b-fd9aml3wt4] {
        font-size: 20px;
    }

    .turbolike-banner[b-fd9aml3wt4] {
        margin: 10px;
        padding: 8px 6px;
    }

    .turbolike-title[b-fd9aml3wt4] {
        font-size: 16px;
    }

    .btn-like[b-fd9aml3wt4] {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-message[b-fd9aml3wt4] {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-premium[b-fd9aml3wt4] {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 600px) {
    .profile-container[b-fd9aml3wt4] {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        margin: 0;
        padding: 0 0 env(safe-area-inset-bottom, 20px) 0;
        box-sizing: border-box;
    }

    .profile-header[b-fd9aml3wt4] {
        padding: 6px 4px;
    }

    .profile-photo-container[b-fd9aml3wt4] {
        margin: 0;
        width: 100%;
        height: 400px;
        border-radius: 10;
    }

    .profile-photo-container[b-fd9aml3wt4],
    .profile-info[b-fd9aml3wt4],
    .profile-location[b-fd9aml3wt4],
    .profile-description[b-fd9aml3wt4],
    .tariff-info[b-fd9aml3wt4],
    .premium-button-container[b-fd9aml3wt4],
    .reference-info[b-fd9aml3wt4],
    .telegram-banner[b-fd9aml3wt4],
    .no-profiles[b-fd9aml3wt4],
    .loading[b-fd9aml3wt4] {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .profile-info[b-fd9aml3wt4] {
        margin-top: 2px;
    }

    .profile-name[b-fd9aml3wt4] {
        font-size: 22px;
    }

    .profile-age[b-fd9aml3wt4] {
        font-size: 18px;
    }

    .profile-location[b-fd9aml3wt4],
    .profile-description[b-fd9aml3wt4],
    .tariff-info[b-fd9aml3wt4],
    .premium-button-container[b-fd9aml3wt4],
    .reference-info[b-fd9aml3wt4] {
        padding: 18px; /* Увеличен для большего комфорта на мобильных */
    }

    .telegram-banner[b-fd9aml3wt4],
    .no-profiles[b-fd9aml3wt4],
    .loading[b-fd9aml3wt4] {
        padding: 8px;
    }

    .turbolike-banner[b-fd9aml3wt4] {
        margin: 8px;
        padding: 8px 4px;
        border-radius: 12px;
    }

    .turbolike-title[b-fd9aml3wt4] {
        font-size: 14px;
    }

    .btn-like[b-fd9aml3wt4] {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 80px;
    }

    .btn-message[b-fd9aml3wt4] {
        padding: 8px 16px;
        font-size: 13px;
    }

    .btn-premium[b-fd9aml3wt4] {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Дополнительные адаптивные стили для турбо-ползунка */
    .turbo-slider-container[b-fd9aml3wt4] {
        padding: 10px 0;
        margin: 10px 0;
    }

    .turbo-slider[b-fd9aml3wt4] {
        height: 18px;
    }

    .turbo-slider[b-fd9aml3wt4]::-webkit-slider-runnable-track {
        height: 18px;
    }

    .turbo-slider[b-fd9aml3wt4]::-moz-range-track {
        height: 18px;
    }

    .turbo-slider[b-fd9aml3wt4]::-ms-track {
        height: 18px;
    }

    .turbo-slider[b-fd9aml3wt4]::-webkit-slider-thumb {
        width: 24px;
        height: 24px;
    }

    .turbo-slider[b-fd9aml3wt4]::-moz-range-thumb {
        width: 24px;
        height: 24px;
    }

    .turbo-slider[b-fd9aml3wt4]::-ms-thumb {
        width: 24px;
        height: 24px;
    }
}

/* Дополнительные стили для улучшения touch-интерфейса */
@media (pointer: coarse) {
    .btn-nav[b-fd9aml3wt4],
    .btn-like[b-fd9aml3wt4],
    .btn-message[b-fd9aml3wt4],
    .btn-premium[b-fd9aml3wt4],
    .photo-arrow[b-fd9aml3wt4] {
        min-height: 44px; /* Минимальный размер для touch */
        min-width: 44px;
    }

    .tag-emoji-circle[b-fd9aml3wt4] {
        min-width: 32px;
        min-height: 32px;
    }

    .turbo-slider[b-fd9aml3wt4] {
        height: 24px;
    }

    .turbo-slider[b-fd9aml3wt4]::-webkit-slider-thumb {
        width: 32px;
        height: 32px;
    }

    .turbo-slider[b-fd9aml3wt4]::-moz-range-thumb {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 600px) and (min-height: 900px) {
    .profile-photo-container[b-fd9aml3wt4] {
        height: 450px;
    }
}

/* Стили для кнопки модерации */
.btn-admin-moderate[b-fd9aml3wt4] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(to right, #dc3545, #e55363);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-admin-moderate[b-fd9aml3wt4]::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: var(--transition-fast);
}

.btn-admin-moderate span[b-fd9aml3wt4], .btn-admin-moderate svg[b-fd9aml3wt4] {
    position: relative;
    z-index: 1;
}

.btn-admin-moderate:hover[b-fd9aml3wt4] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-admin-moderate:hover[b-fd9aml3wt4]::before {
    left: 100%;
}

.btn-admin-moderate:active[b-fd9aml3wt4] {
    transform: translateY(0);
}

/* Модальное окно модерации */
.moderation-dialog[b-fd9aml3wt4] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    animation: popup-appear-b-fd9aml3wt4 0.3s ease-out;
}

.moderation-content[b-fd9aml3wt4] {
    background-color: var(--white);
    padding: 24px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.moderation-content h3[b-fd9aml3wt4] {
    margin: 0 0 16px 0;
    color: var(--text-primary);
    text-align: center;
    font-size: 20px;
}

.moderation-content p[b-fd9aml3wt4] {
    margin: 0 0 20px 0;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
}

.moderation-message[b-fd9aml3wt4] {
    margin-bottom: 24px;
}

.moderation-message label[b-fd9aml3wt4] {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.moderation-text[b-fd9aml3wt4] {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.moderation-text:focus[b-fd9aml3wt4] {
    outline: none;
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 3px rgba(128, 0, 255, 0.1);
}

.moderation-actions[b-fd9aml3wt4] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-hide-profile[b-fd9aml3wt4], .btn-delete-profile[b-fd9aml3wt4], .btn-cancel-moderation[b-fd9aml3wt4] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-hide-profile[b-fd9aml3wt4] {
    background-color: #ffc107;
    color: #212529;
}

.btn-hide-profile:hover[b-fd9aml3wt4] {
    background-color: #e0a800;
}

.btn-delete-profile[b-fd9aml3wt4] {
    background-color: #dc3545;
    color: var(--white);
}

.btn-delete-profile:hover[b-fd9aml3wt4] {
    background-color: #bb2d3b;
}

.btn-cancel-moderation[b-fd9aml3wt4] {
    background-color: #6c757d;
    color: var(--white);
}

.btn-cancel-moderation:hover[b-fd9aml3wt4] {
    background-color: #5a6268;
}

.btn-hide-profile:disabled[b-fd9aml3wt4], 
.btn-delete-profile:disabled[b-fd9aml3wt4], 
.btn-cancel-moderation:disabled[b-fd9aml3wt4] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Адаптивные стили для модерации */
@media (max-width: 600px) {
    .moderation-content[b-fd9aml3wt4] {
        padding: 20px;
        margin: 10px;
        width: calc(100% - 20px);
    }
    
    .moderation-actions[b-fd9aml3wt4] {
        gap: 8px;
    }
    
    .btn-hide-profile[b-fd9aml3wt4], .btn-delete-profile[b-fd9aml3wt4], .btn-cancel-moderation[b-fd9aml3wt4] {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* _content/ClickLove_bot/Pages/Dating/Premium.razor.rz.scp.css */
/* Сброс отступов для полноэкранного режима */
html[b-j2gfuuropx], body[b-j2gfuuropx] {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Общие стили */
.premium-container[b-j2gfuuropx] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    padding: 20px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
}

.premium-container[b-j2gfuuropx]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.premium-container > *[b-j2gfuuropx] {
    position: relative;
    z-index: 2;
}

/* Загрузка */
.loading[b-j2gfuuropx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    text-align: center;
}

.loading-spinner[b-j2gfuuropx] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin-b-j2gfuuropx 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin-b-j2gfuuropx {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Заголовок */
.premium-header[b-j2gfuuropx] {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.main-title[b-j2gfuuropx] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    letter-spacing: -0.02em;
}

.subtitle[b-j2gfuuropx] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Преимущества */
.benefits-section[b-j2gfuuropx] {
    margin-bottom: 40px;
}

.benefit-item[b-j2gfuuropx] {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item:hover[b-j2gfuuropx] {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon[b-j2gfuuropx] {
    font-size: 2rem;
    margin-right: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.benefit-text[b-j2gfuuropx] {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Условия тарифа */
.terms-section[b-j2gfuuropx] {
    margin-bottom: 40px;
}

.section-title[b-j2gfuuropx] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    opacity: 0.95;
}

.terms-item[b-j2gfuuropx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.terms-label[b-j2gfuuropx] {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.terms-value[b-j2gfuuropx] {
    font-size: 1rem;
    font-weight: 600;
}

.terms-value.highlight[b-j2gfuuropx] {
    font-size: 1.2rem;
    color: #ffd700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* Кнопки оплаты */
.payment-section[b-j2gfuuropx] {
    margin-bottom: 40px;
}

.payment-button[b-j2gfuuropx] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-button[b-j2gfuuropx]::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 ease;
}

.payment-button:hover[b-j2gfuuropx] {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.payment-button:hover[b-j2gfuuropx]::before {
    left: 100%;
}

.payment-button:active[b-j2gfuuropx] {
    transform: translateY(0);
}

.payment-button:disabled[b-j2gfuuropx] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.payment-button:disabled:hover[b-j2gfuuropx] {
    transform: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.payment-icon[b-j2gfuuropx] {
    margin-right: 12px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sbp-button[b-j2gfuuropx] {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(16, 185, 129, 0.3));
    border-color: rgba(34, 197, 94, 0.5);
}

.sbp-button:hover[b-j2gfuuropx] {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.4), rgba(16, 185, 129, 0.4));
    border-color: rgba(34, 197, 94, 0.7);
}

.ton-button[b-j2gfuuropx]{
    background: linear-gradient(135deg, rgba(38, 133, 234, 0.4),
    rgba(78, 183, 239, 0.3));
    border-color: rgba(38, 133, 234, 0.4);
}

.ton-button:hover[b-j2gfuuropx] {
    background: linear-gradient(135deg, rgba(38, 133, 234, 0.4),
    rgba(78, 183, 239, 0.3));
    border-color: rgba(38, 133, 234, 0.4);
}

.stars-button[b-j2gfuuropx]{
    background: linear-gradient(135deg, rgba(243, 226, 40, 0.4),
    rgba(78, 183, 239, 0.3));
    border-color: rgba(243, 226, 40, 0.4);
}

.stars-button:hover[b-j2gfuuropx] {
    background: linear-gradient(135deg, rgba(243, 226, 40, 0.4),
    rgba(78, 183, 239, 0.3));
    border-color: rgba(243, 226, 40, 0.4);
}

.fpi-button[b-j2gfuuropx]{
    background: linear-gradient(135deg, rgba(33, 244, 36, 0.4),
    rgba(178, 16, 241, 0.3));
    border-color: rgba(203, 236, 204, 0.4);
}

.fpi-button:hover[b-j2gfuuropx] {
    background: linear-gradient(135deg, rgba(33, 244, 36, 0.4),
    rgba(178, 16, 241, 0.3));
    border-color: rgba(203, 236, 204, 0.4);
}

.turbo-button[b-j2gfuuropx] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(251, 191, 36, 0.3));
    border-color: rgba(245, 158, 11, 0.5);
}

.turbo-button:hover[b-j2gfuuropx] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.4), rgba(251, 191, 36, 0.4));
    border-color: rgba(245, 158, 11, 0.7);
}

.balance-info[b-j2gfuuropx] {
    margin-left: auto;
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 400;
}

.payment-spinner[b-j2gfuuropx] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin-b-j2gfuuropx 1s linear infinite;
    margin-left: 12px;
}

/* Сообщения */
.error-message[b-j2gfuuropx], .success-message[b-j2gfuuropx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid;
}

.error-message[b-j2gfuuropx] {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #fecaca;
}

.success-message[b-j2gfuuropx] {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
    color: #bbf7d0;
}

.close-error[b-j2gfuuropx] {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.close-error:hover[b-j2gfuuropx] {
    background: rgba(255, 255, 255, 0.1);
}

/* Кнопка закрыть */
.close-section[b-j2gfuuropx] {
    text-align: center;
    padding-top: 20px;
}

.close-button[b-j2gfuuropx] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 16px 32px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-button:hover[b-j2gfuuropx] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.close-button:active[b-j2gfuuropx] {
    transform: translateY(0);
}

/* Адаптивность */
@media (max-width: 768px) {
    .premium-container[b-j2gfuuropx] {
        padding: 16px;
    }

    .main-title[b-j2gfuuropx] {
        font-size: 2rem;
    }

    .subtitle[b-j2gfuuropx] {
        font-size: 1rem;
    }

    .benefit-item[b-j2gfuuropx] {
        padding: 16px;
    }

    .benefit-icon[b-j2gfuuropx] {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }

    .benefit-text[b-j2gfuuropx] {
        font-size: 0.95rem;
    }

    .payment-button[b-j2gfuuropx] {
        padding: 18px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .premium-container[b-j2gfuuropx] {
        padding: 12px;
    }

    .main-title[b-j2gfuuropx] {
        font-size: 1.8rem;
    }

    .premium-header[b-j2gfuuropx] {
        margin-bottom: 30px;
    }

    .benefit-item[b-j2gfuuropx] {
        padding: 14px;
        margin-bottom: 12px;
    }

    .payment-button[b-j2gfuuropx] {
        padding: 16px;
        font-size: 0.95rem;
    }

    .balance-info[b-j2gfuuropx] {
        font-size: 0.8rem;
    }
}

/* Анимации */
@keyframes fadeInUp-b-j2gfuuropx {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-header[b-j2gfuuropx],
.benefits-section .benefit-item[b-j2gfuuropx],
.terms-section[b-j2gfuuropx],
.payment-section[b-j2gfuuropx],
.close-section[b-j2gfuuropx] {
    animation: fadeInUp-b-j2gfuuropx 0.6s ease-out;
}

.benefits-section .benefit-item:nth-child(1)[b-j2gfuuropx] { animation-delay: 0.1s; }
.benefits-section .benefit-item:nth-child(2)[b-j2gfuuropx] { animation-delay: 0.2s; }
.benefits-section .benefit-item:nth-child(3)[b-j2gfuuropx] { animation-delay: 0.3s; }
.benefits-section .benefit-item:nth-child(4)[b-j2gfuuropx] { animation-delay: 0.4s; }

.terms-section[b-j2gfuuropx] { animation-delay: 0.5s; }
.payment-section[b-j2gfuuropx] { animation-delay: 0.6s; }
.close-section[b-j2gfuuropx] { animation-delay: 0.7s; }
/* _content/ClickLove_bot/Pages/Dating/Profile.razor.rz.scp.css */
.profile-container[b-ucf55zakwq] {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.profile-header[b-ucf55zakwq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.profile-header h1[b-ucf55zakwq] {
    margin: 0;
    font-size: 1.5rem;
    color: #212529;
    font-weight: 600;
}

.edit-button[b-ucf55zakwq] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.edit-button:hover[b-ucf55zakwq] {
    background-color: #0056b3;
}

.loading[b-ucf55zakwq] {
    text-align: center;
    padding: 20px;
    font-size: 1.2em;
    color: #6c757d;
}

.error[b-ucf55zakwq] {
    text-align: center;
    padding: 16px;
    font-size: 1rem;
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 12px;
    margin-bottom: 20px;
}

.profile-photos[b-ucf55zakwq] {
    margin-bottom: 24px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.photo-grid[b-ucf55zakwq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

/* Стили для случая с одной фотографией */
.photo-grid:only-child[b-ucf55zakwq],
.photo-grid:has(> :only-child)[b-ucf55zakwq] {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.photo-item[b-ucf55zakwq] {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
}

/* Изменяем соотношение сторон для одиночной фотографии */
.photo-grid:has(> :only-child) .photo-item[b-ucf55zakwq] {
    aspect-ratio: 4/5;
}

.photo-item img[b-ucf55zakwq] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img[b-ucf55zakwq] {
    transform: scale(1.05);
}

.main-photo[b-ucf55zakwq] {
    grid-column: span 2;
    grid-row: span 2;
}

.no-photos[b-ucf55zakwq] {
    text-align: center;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 12px;
    color: #6c757d;
}

.profile-info[b-ucf55zakwq] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-group[b-ucf55zakwq] {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.info-group h2[b-ucf55zakwq] {
    margin: 0 0 16px 0;
    font-size: 1.2rem;
    color: #212529;
    font-weight: 600;
}

.info-item[b-ucf55zakwq] {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f5;
}

.info-item:last-child[b-ucf55zakwq] {
    border-bottom: none;
}

.info-item .label[b-ucf55zakwq] {
    color: #6c757d;
    font-size: 0.9rem;
}

.info-item .value[b-ucf55zakwq] {
    color: #212529;
    font-weight: 500;
}

.about-me[b-ucf55zakwq] {
    color: #495057;
    line-height: 1.6;
    white-space: pre-wrap;
}

.social-links[b-ucf55zakwq] {
    display: flex;
    gap: 12px;
}

.social-links a[b-ucf55zakwq] {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #4a76a8;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.social-links a:hover[b-ucf55zakwq] {
    background-color: #3d6393;
}

/* Стили для отображения тегов в профиле */
.tags-display[b-ucf55zakwq] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tag-item[b-ucf55zakwq] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
    transition: transform 0.2s ease;
}

.tag-item:hover[b-ucf55zakwq] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
}

.tag-emoji[b-ucf55zakwq] {
    font-size: 1rem;
    line-height: 1;
}

.tag-text[b-ucf55zakwq] {
    line-height: 1;
    font-weight: 500;
}

/* Стили для кнопки турбо-тегов */
.turbo-tag-button-container[b-ucf55zakwq] {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.turbo-tag-button[b-ucf55zakwq] {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.turbo-tag-button:hover[b-ucf55zakwq] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, #9333ea 0%, #db2777 100%);
}

.turbo-tag-button:active[b-ucf55zakwq] {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(168, 85, 247, 0.3);
}

@media (max-width: 768px) {
    .tags-display[b-ucf55zakwq] {
        gap: 6px;
    }
    
    .tag-item[b-ucf55zakwq] {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .tag-emoji[b-ucf55zakwq] {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .profile-container[b-ucf55zakwq] {
        padding: 12px;
    }

    .profile-header h1[b-ucf55zakwq] {
        font-size: 1.25rem;
    }

    .photo-grid[b-ucf55zakwq] {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }

    .info-group[b-ucf55zakwq] {
        padding: 16px;
    }

    .info-item[b-ucf55zakwq] {
        flex-direction: column;
        gap: 4px;
    }

    .info-item .value[b-ucf55zakwq] {
        font-size: 1rem;
    }

    .photo-grid:has(> :only-child)[b-ucf55zakwq] {
        max-width: 300px;
    }

    .photo-grid:has(> :only-child) .photo-item[b-ucf55zakwq] {
        aspect-ratio: 3/4;
    }
}

.carousel[b-ucf55zakwq] {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-item[b-ucf55zakwq] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.carousel-item img[b-ucf55zakwq] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item.active[b-ucf55zakwq] {
    opacity: 1;
    z-index: 2;
}

.carousel-control[b-ucf55zakwq] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 18px;
    z-index: 3;
    transition: background-color 0.2s;
}

.carousel-control:hover[b-ucf55zakwq] {
    background: rgba(0, 0, 0, 0.7);
}

.prev[b-ucf55zakwq] {
    left: 10px;
}

.next[b-ucf55zakwq] {
    right: 10px;
}

.single-photo img[b-ucf55zakwq] {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
}
/* _content/ClickLove_bot/Pages/Dating/ProfileEdit.razor.rz.scp.css */
.registration-form[b-18jaxlvu26] {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.registration-form h3[b-18jaxlvu26] {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.edit-header[b-18jaxlvu26] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.edit-header h1[b-18jaxlvu26] {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.visibility-toggle[b-18jaxlvu26] {
    display: flex;
    align-items: center;
}

.visibility-toggle label[b-18jaxlvu26] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #34495e;
    font-weight: 500;
}

.form-group[b-18jaxlvu26] {
    margin-bottom: 1.5rem;
}

.form-group label[b-18jaxlvu26] {
    display: block;
    margin-bottom: 0.5rem;
    color: #34495e;
    font-weight: 500;
    font-size: 0.95rem;
}

[b-18jaxlvu26] .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

[b-18jaxlvu26] .form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.25);
    outline: none;
}

[b-18jaxlvu26] .form-control:hover {
    border-color: #bdc3c7;
}

[b-18jaxlvu26] .form-control.invalid {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

[b-18jaxlvu26] .form-control.invalid:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.25);
}

.text-muted[b-18jaxlvu26] {
    color: #6c757d;
    font-size: 14px;
    margin-top: 4px;
}

.upload-info[b-18jaxlvu26] {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.photo-preview[b-18jaxlvu26] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    min-height: 150px;
}

.photo-item[b-18jaxlvu26] {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-item:hover[b-18jaxlvu26] {
    transform: translateY(-2px);
}

.photo-item img[b-18jaxlvu26] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-actions[b-18jaxlvu26] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.2s;
}

.photo-item:hover .photo-actions[b-18jaxlvu26] {
    opacity: 1;
}

.delete-button[b-18jaxlvu26] {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #e74c3c;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.delete-button:hover[b-18jaxlvu26] {
    background: #fff;
    color: #c0392b;
    transform: scale(1.15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.btn-main[b-18jaxlvu26] {
    background: #2ecc71;
    border: none;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-main:disabled[b-18jaxlvu26] {
    background: #4b5563;
    border: none;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-main:hover[b-18jaxlvu26] {
    background: #27ae60;
    transform: scale(1.05);
}

.btn-main:hover:disabled[b-18jaxlvu26] {
    background: #4b5563;
}

.form-actions[b-18jaxlvu26] {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

[b-18jaxlvu26] .btn-primary {
    background: #3498db;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

[b-18jaxlvu26] .btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

[b-18jaxlvu26] .btn-secondary {
    background: #95a5a6;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

[b-18jaxlvu26] .btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(149, 165, 166, 0.4);
}

.error[b-18jaxlvu26] {
    background-color: #fff5f5;
    color: #e74c3c;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #fed7d7;
}

.loading[b-18jaxlvu26] {
    text-align: center;
    padding: 40px;
    color: #6c757d;
    font-size: 1.2rem;
}

[b-18jaxlvu26] .validation-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    display: block;
}

[b-18jaxlvu26] .validation-summary {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff5f5;
    border-radius: 8px;
    border: 1px solid #fed7d7;
}

.photo-limit-warning[b-18jaxlvu26] {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #fff5f5;
    border-radius: 8px;
    border: 1px solid #fed7d7;
}

[b-18jaxlvu26] input[type="file"]:disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
    opacity: 0.7;
}

.upload-progress[b-18jaxlvu26] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    color: #3498db;
    font-size: 0.9rem;
}

.spinner[b-18jaxlvu26] {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin-b-18jaxlvu26 1s linear infinite;
}

.spinner-small[b-18jaxlvu26] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin-b-18jaxlvu26 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

@keyframes spin-b-18jaxlvu26 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .registration-form[b-18jaxlvu26] {
        margin: 1rem;
        padding: 1.5rem;
    }

    .photo-preview[b-18jaxlvu26] {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .form-actions[b-18jaxlvu26] {
        flex-direction: column;
    }

    [b-18jaxlvu26] .btn-primary,
    [b-18jaxlvu26] .btn-secondary {
        width: 100%;
    }
}

/* Стили для селектора тегов */
.tags-selector[b-18jaxlvu26] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.tag-item[b-18jaxlvu26] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    user-select: none;
    position: relative;
}

.tag-item:hover[b-18jaxlvu26] {
    background: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-2px);
}

.tag-item.selected[b-18jaxlvu26] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.tag-item.selected:hover[b-18jaxlvu26] {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
}

.tag-emoji[b-18jaxlvu26] {
    font-size: 1.2rem;
}

.tag-text[b-18jaxlvu26] {
    font-weight: 500;
    font-size: 0.9rem;
}

.tag-check[b-18jaxlvu26] {
    font-size: 1rem;
    color: #4ade80;
    font-weight: bold;
}

.tag-item.selected .tag-check[b-18jaxlvu26] {
    color: white;
}

/* Адаптивные стили для тегов */
@media (max-width: 768px) {
    .tags-selector[b-18jaxlvu26] {
        gap: 8px;
    }
    
    .tag-item[b-18jaxlvu26] {
        padding: 8px 12px;
        gap: 6px;
    }
    
    .tag-emoji[b-18jaxlvu26] {
        font-size: 1rem;
    }
    
    .tag-text[b-18jaxlvu26] {
        font-size: 0.8rem;
    }
}
/* _content/ClickLove_bot/Pages/Dating/Registration.razor.rz.scp.css */
.registration-form[b-olzzd87z3z] {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.registration-form h3[b-olzzd87z3z] {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.form-group[b-olzzd87z3z] {
    margin-bottom: 1.5rem;
}

.form-group label[b-olzzd87z3z] {
    display: block;
    margin-bottom: 0.5rem;
    color: #34495e;
    font-weight: 500;
    font-size: 0.95rem;
}

[b-olzzd87z3z] .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

[b-olzzd87z3z] .form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.25);
    outline: none;
}

[b-olzzd87z3z] .form-control:hover {
    border-color: #bdc3c7;
}

[b-olzzd87z3z] .form-control.invalid {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

[b-olzzd87z3z] .form-control.invalid:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.25);
}

.upload-info[b-olzzd87z3z] {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.photo-preview[b-olzzd87z3z] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    min-height: 150px;
}

.photo-item[b-olzzd87z3z] {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-item:hover[b-olzzd87z3z] {
    transform: translateY(-2px);
}

.photo-item img[b-olzzd87z3z] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.delete-button[b-olzzd87z3z] {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #e74c3c;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.delete-button:hover[b-olzzd87z3z] {
    background: #fff;
    color: #c0392b;
    transform: scale(1.15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

[b-olzzd87z3z] .btn-primary {
    background: #3498db;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

[b-olzzd87z3z] .btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

[b-olzzd87z3z] .validation-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    display: block;
}

[b-olzzd87z3z] .validation-summary {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff5f5;
    border-radius: 8px;
    border: 1px solid #fed7d7;
}

.checkbox-group[b-olzzd87z3z] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.checkbox-group:hover[b-olzzd87z3z] {
    background: #e9ecef;
}

.checkbox-group label[b-olzzd87z3z] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #495057;
    flex-wrap: wrap;
}

[b-olzzd87z3z] .checkbox-group input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 4px;
    border: 2px solid #3498db;
    cursor: pointer;
    margin-top: 0.2rem;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    background: white;
    transition: all 0.2s ease;
}

[b-olzzd87z3z] .checkbox-group input[type="checkbox"]:checked {
    background: #3498db;
    border-color: #3498db;
}

[b-olzzd87z3z] .checkbox-group input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

[b-olzzd87z3z] .checkbox-group input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.25);
}

.photo-limit-warning[b-olzzd87z3z] {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #fff5f5;
    border-radius: 8px;
    border: 1px solid #fed7d7;
}

.photo-count[b-olzzd87z3z] {
    color: #2c3e50;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

[b-olzzd87z3z] input[type="file"]:disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .registration-form[b-olzzd87z3z] {
        margin: 1rem;
        padding: 1.5rem;
    }

    .photo-preview[b-olzzd87z3z] {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .checkbox-group[b-olzzd87z3z] {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .checkbox-group label[b-olzzd87z3z] {
        font-size: 0.85rem;
        line-height: 1.3;
        gap: 0.5rem;
        align-items: center;
    }

    .terms-link[b-olzzd87z3z] {
        display: inline;
        white-space: normal;
        word-break: break-word;
        hyphens: auto;
    }

    .terms-group[b-olzzd87z3z], .age-confirmation[b-olzzd87z3z] {
        border-left-width: 3px;
    }
}

@media (max-width: 480px) {
    .checkbox-group[b-olzzd87z3z] {
        padding: 0.6rem;
    }

    .checkbox-group label[b-olzzd87z3z] {
        font-size: 0.8rem;
        line-height: 1.2;
        width: 100%;
    }

    [b-olzzd87z3z] .checkbox-group input[type="checkbox"] {
        margin-top: 0.1rem;
    }

    .terms-link[b-olzzd87z3z] {
        display: inline;
    }
}

.loading-container[b-olzzd87z3z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
}

.loading-container p[b-olzzd87z3z] {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #3498db;
}

.photo-placeholder[b-olzzd87z3z] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    color: #666;
    font-size: 0.8rem;
    text-align: center;
    padding: 1rem;
}

/* Стили для заглушки ошибки внутри photo-item */
.photo-item .photo-placeholder[b-olzzd87z3z] {
    position: absolute;
    top: 0;
    left: 0;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.upload-progress[b-olzzd87z3z] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    color: #3498db;
    font-size: 0.9rem;
}

.spinner[b-olzzd87z3z] {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin-b-olzzd87z3z 1s linear infinite;
}

@keyframes spin-b-olzzd87z3z {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.upload-error[b-olzzd87z3z] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    color: #e74c3c;
    font-size: 0.9rem;
}

.close-error[b-olzzd87z3z] {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.close-error:hover[b-olzzd87z3z] {
    opacity: 0.8;
}

.spinner-small[b-olzzd87z3z] {
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin-b-olzzd87z3z 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

.terms-group[b-olzzd87z3z] {
    background: #e8f4f8;
    border-left: 4px solid #3498db;
    margin-bottom: 1rem;
}

.terms-link[b-olzzd87z3z] {
    color: #2980b9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline;
    word-break: break-word;
    hyphens: auto;
}

.terms-link:hover[b-olzzd87z3z] {
    color: #3498db;
    text-decoration: underline;
}

.age-confirmation[b-olzzd87z3z] {
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
}

.age-confirmation label[b-olzzd87z3z] {
    color: #c0392b;
    font-weight: 500;
}

[b-olzzd87z3z] .age-confirmation input[type="checkbox"] {
    border-color: #e74c3c;
}

[b-olzzd87z3z] .age-confirmation input[type="checkbox"]:checked {
    background: #e74c3c;
    border-color: #e74c3c;
}

[b-olzzd87z3z] .age-confirmation input[type="checkbox"]:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.25);
} 
/* Стили для тегов */
.tags-selector[b-olzzd87z3z] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.tag-item[b-olzzd87z3z] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    user-select: none;
    position: relative;
}

.tag-item:hover[b-olzzd87z3z] {
    background: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-2px);
}

.tag-item.selected[b-olzzd87z3z] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.tag-item.selected:hover[b-olzzd87z3z] {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
}

.tag-emoji[b-olzzd87z3z] {
    font-size: 1.2rem;
}

.tag-text[b-olzzd87z3z] {
    font-weight: 500;
    font-size: 0.9rem;
}

.tag-check[b-olzzd87z3z] {
    font-size: 1rem;
    color: #4ade80;
    font-weight: bold;
}

.tag-item.selected .tag-check[b-olzzd87z3z] {
    color: white;
}

@media (max-width: 768px) {
    .tags-selector[b-olzzd87z3z] {
        gap: 8px;
    }
    
    .tag-item[b-olzzd87z3z] {
        padding: 8px 12px;
    }
}

/* Стили для индикатора загрузки */
.loading-container[b-olzzd87z3z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
}

.loading-container p[b-olzzd87z3z] {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #3498db;
}
/* _content/ClickLove_bot/Pages/Dating/TurboRepka.razor.rz.scp.css */
.turbo-repka-container[b-5a0qjsbld3] {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.header[b-5a0qjsbld3] {
    text-align: center;
    margin-bottom: 10px;
}

.header-icon[b-5a0qjsbld3] {
    font-size: 48px;
    margin-bottom: 10px;
}

.header h2[b-5a0qjsbld3] {
    color: #1f2937;
    font-weight: 700;
    margin: 0 0 8px 0;
    font-size: 28px;
}

.header .subtitle[b-5a0qjsbld3] {
    color: #6b7280;
    font-size: 16px;
    margin: 0;
}

/* Загрузка */
.loading-container[b-5a0qjsbld3] {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner[b-5a0qjsbld3] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin-b-5a0qjsbld3 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin-b-5a0qjsbld3 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-container p[b-5a0qjsbld3] {
    color: #6b7280;
    font-size: 16px;
}

/* Ошибка */
.error-card[b-5a0qjsbld3] {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.error-icon[b-5a0qjsbld3] {
    font-size: 48px;
    margin-bottom: 16px;
}

.error-card h3[b-5a0qjsbld3] {
    color: #dc2626;
    margin: 0 0 12px 0;
    font-size: 20px;
}

.error-card p[b-5a0qjsbld3] {
    color: #7f1d1d;
    margin: 0 0 24px 0;
}

.retry-btn[b-5a0qjsbld3] {
    background: #dc2626;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.retry-btn:hover[b-5a0qjsbld3] {
    background: #b91c1c;
}

/* Карточка баланса */
.balance-card[b-5a0qjsbld3] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    padding: 24px;
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.balance-header[b-5a0qjsbld3] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.balance-icon[b-5a0qjsbld3] {
    font-size: 36px;
}

.balance-info h3[b-5a0qjsbld3] {
    margin: 0 0 8px 0;
    font-size: 18px;
    opacity: 0.9;
}

.balance-amount[b-5a0qjsbld3] {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

/* Карточка статистики */
.stats-card[b-5a0qjsbld3] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-item[b-5a0qjsbld3] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon[b-5a0qjsbld3] {
    font-size: 32px;
}

.stat-value[b-5a0qjsbld3] {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.stat-label[b-5a0qjsbld3] {
    color: #6b7280;
    font-size: 14px;
}

/* Карточка ссылки */
.link-card[b-5a0qjsbld3] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.link-header[b-5a0qjsbld3] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.link-icon[b-5a0qjsbld3] {
    font-size: 24px;
}

.link-header h3[b-5a0qjsbld3] {
    margin: 0;
    color: #1f2937;
    font-size: 18px;
}

.link-url[b-5a0qjsbld3] {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    font-family: monospace;
    font-size: 14px;
    color: #374151;
    margin-bottom: 16px;
    word-break: break-all;
}

.share-btn[b-5a0qjsbld3] {
    width: 100%;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.share-btn:hover[b-5a0qjsbld3] {
    background: #2563eb;
}

.share-icon[b-5a0qjsbld3] {
    font-size: 18px;
}

/* Карточка вознаграждений */
.rewards-card[b-5a0qjsbld3] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.rewards-header[b-5a0qjsbld3] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.rewards-icon[b-5a0qjsbld3] {
    font-size: 24px;
}

.rewards-header h3[b-5a0qjsbld3] {
    margin: 0;
    color: #1f2937;
    font-size: 18px;
}

.rewards-table[b-5a0qjsbld3] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reward-row[b-5a0qjsbld3] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
}

.level[b-5a0qjsbld3] {
    font-size: 20px;
    min-width: 32px;
}

.reward-info[b-5a0qjsbld3] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    flex: 1;
    text-align: center;
}

.reward-amount[b-5a0qjsbld3] {
    font-weight: 700;
    color: #059669;
    font-size: 16px;
}

.reward-count[b-5a0qjsbld3] {
    color: #6b7280;
    font-size: 14px;
}

.reward-total[b-5a0qjsbld3] {
    font-weight: 600;
    color: #1f2937;
    font-size: 16px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .turbo-repka-container[b-5a0qjsbld3] {
        padding: 16px;
        gap: 16px;
    }
    
    .balance-card[b-5a0qjsbld3], .stats-card[b-5a0qjsbld3], .link-card[b-5a0qjsbld3], .rewards-card[b-5a0qjsbld3] {
        padding: 20px;
    }
    
    .balance-amount[b-5a0qjsbld3] {
        font-size: 28px;
    }
    
    .reward-info[b-5a0qjsbld3] {
        grid-template-columns: 1fr;
        gap: 4px;
        text-align: left;
    }
    
    .reward-row[b-5a0qjsbld3] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
/* _content/ClickLove_bot/Pages/Dating/TurboTag.razor.rz.scp.css */
/* Сброс отступов для полноэкранного режима */
html[b-i9ak4tok1l], body[b-i9ak4tok1l] {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Общие стили */
.turbo-tag-container[b-i9ak4tok1l] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    padding: 20px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
}

.turbo-tag-container[b-i9ak4tok1l]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.turbo-tag-container > *[b-i9ak4tok1l] {
    position: relative;
    z-index: 2;
}

/* Загрузка */
.loading[b-i9ak4tok1l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    text-align: center;
}

.loading-spinner[b-i9ak4tok1l] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin-b-i9ak4tok1l 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin-b-i9ak4tok1l {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Заголовок */
.turbo-header[b-i9ak4tok1l] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    gap: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.back-btn[b-i9ak4tok1l] {
    position: static;
    margin-right: 16px;
    flex-shrink: 0;
    align-self: flex-start;
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.back-btn:hover[b-i9ak4tok1l] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.header-content[b-i9ak4tok1l] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    text-align: center;
}

.main-title[b-i9ak4tok1l] {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subtitle[b-i9ak4tok1l] {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 300;
}

/* Секции */
.tag-selection-section[b-i9ak4tok1l],
.info-section[b-i9ak4tok1l],
.terms-section[b-i9ak4tok1l],
.payment-section[b-i9ak4tok1l] {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title[b-i9ak4tok1l] {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-align: center;
}

/* Сетка ТурбоМеток */
.turbo-tags-grid[b-i9ak4tok1l] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 15px;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Кастомный скроллбар для сетки */
.turbo-tags-grid[b-i9ak4tok1l]::-webkit-scrollbar {
    width: 6px;
}

.turbo-tags-grid[b-i9ak4tok1l]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.turbo-tags-grid[b-i9ak4tok1l]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.turbo-tags-grid[b-i9ak4tok1l]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.turbo-tag-item[b-i9ak4tok1l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    min-height: 100px;
    justify-content: center;
}

.turbo-tag-item:hover[b-i9ak4tok1l] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.turbo-tag-item.selected[b-i9ak4tok1l] {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-color: white;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.tag-emoji[b-i9ak4tok1l] {
    font-size: 2rem;
    margin-bottom: 8px;
    line-height: 1;
}

.tag-name[b-i9ak4tok1l] {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

.tag-check[b-i9ak4tok1l] {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: white;
    color: #8B5CF6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

/* Информационные элементы */
.info-items[b-i9ak4tok1l] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item[b-i9ak4tok1l] {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.info-icon[b-i9ak4tok1l] {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-text[b-i9ak4tok1l] {
    font-size: 1rem;
    line-height: 1.4;
}

/* Условия тарифа */
.terms-item[b-i9ak4tok1l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.terms-item:last-child[b-i9ak4tok1l] {
    border-bottom: none;
}

.terms-label[b-i9ak4tok1l] {
    font-size: 1rem;
    font-weight: 500;
}

.terms-value[b-i9ak4tok1l] {
    font-size: 1.1rem;
    font-weight: 600;
}

.terms-value.highlight[b-i9ak4tok1l] {
    color: #FFD93D;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 217, 61, 0.5);
}

/* Кнопки оплаты */
.payment-button[b-i9ak4tok1l] {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: white;
    font-size: 1rem !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-button:hover:not(:disabled)[b-i9ak4tok1l] {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.payment-button:disabled[b-i9ak4tok1l] {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-button.sbp-button:hover:not(:disabled)[b-i9ak4tok1l] {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.payment-button.turbo-button:hover:not(:disabled)[b-i9ak4tok1l] {
    background: linear-gradient(135deg, #FF6B6B 0%, #ff5252 100%);
}

.payment-icon[b-i9ak4tok1l] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.balance-info[b-i9ak4tok1l] {
    margin-left: auto;
    font-size: 0.9rem;
    opacity: 0.8;
}

.payment-spinner[b-i9ak4tok1l] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin-b-i9ak4tok1l 1s linear infinite;
    margin-left: auto;
}

/* Сообщения */
.error-message[b-i9ak4tok1l],
.success-message[b-i9ak4tok1l] {
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
    position: relative;
    font-weight: 500;
    text-align: center;
}

.error-message[b-i9ak4tok1l] {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #ffebee;
}

.success-message[b-i9ak4tok1l] {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #e8f5e8;
}

.close-error[b-i9ak4tok1l] {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #ffebee;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Кнопка закрыть */
.close-section[b-i9ak4tok1l] {
    margin-top: 30px;
    text-align: center;
}

.close-button[b-i9ak4tok1l] {
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-button:hover[b-i9ak4tok1l] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .turbo-tag-container[b-i9ak4tok1l] {
        padding: 15px;
    }
    
    .main-title[b-i9ak4tok1l] {
        font-size: 2rem;
    }
    
    .turbo-tags-grid[b-i9ak4tok1l] {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 10px;
    }
    
    .turbo-tag-item[b-i9ak4tok1l] {
        padding: 15px 10px;
        min-height: 100px;
    }
    
    .tag-emoji[b-i9ak4tok1l] {
        font-size: 2rem;
    }
    
    .tag-name[b-i9ak4tok1l] {
        font-size: 0.85rem;
    }
    
    .info-item[b-i9ak4tok1l] {
        padding: 12px;
    }
    
    .payment-button[b-i9ak4tok1l] {
        padding: 15px 18px;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 576px) {
    .turbo-tags-grid[b-i9ak4tok1l] {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-height: 250px;
    }
    
    .turbo-tag-item[b-i9ak4tok1l] {
        min-height: 85px;
        padding: 12px 8px;
    }
    
    .tag-emoji[b-i9ak4tok1l] {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }
    
    .tag-name[b-i9ak4tok1l] {
        font-size: 0.75rem;
    }
    
    .terms-item[b-i9ak4tok1l] {
        padding: 12px 0;
    }
    
    .terms-label[b-i9ak4tok1l],
    .terms-value[b-i9ak4tok1l] {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .turbo-tags-grid[b-i9ak4tok1l] {
        grid-template-columns: repeat(1, 1fr);
        max-height: 200px;
    }
    
    .turbo-tag-item[b-i9ak4tok1l] {
        min-height: 70px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 10px 15px;
    }
    
    .tag-emoji[b-i9ak4tok1l] {
        font-size: 1.4rem;
        margin-bottom: 0;
        margin-right: 10px;
    }
    
    .tag-name[b-i9ak4tok1l] {
        font-size: 0.8rem;
        text-align: left;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }
    
    .tag-check[b-i9ak4tok1l] {
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
    }
}
    
    .terms-value.highlight[b-i9ak4tok1l] {
        font-size: 1.1rem;
    }
}
/* _content/ClickLove_bot/Pages/Layout/BottomNavigation.razor.rz.scp.css */
.bottom-navigation[b-f3wqloo1ji] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 9999;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.bottom-navigation .nav-item[b-f3wqloo1ji] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #757575;
    transition: color 0.2s ease;
    padding: 4px 8px;
    min-width: 60px;
}

.bottom-navigation .nav-item:hover[b-f3wqloo1ji] {
    color: #2196F3;
    text-decoration: none;
}

.bottom-navigation .nav-item.active[b-f3wqloo1ji] {
    color: #2196F3;
}

.bottom-navigation .nav-item i[b-f3wqloo1ji] {
    font-size: 20px;
    margin-bottom: 4px;
}

.bottom-navigation .nav-item span[b-f3wqloo1ji] {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
}

/* Добавляем отступ снизу для контента */
.page .content[b-f3wqloo1ji] {
    padding-bottom: 80px !important;
}

/* Скрываем меню на странице регистрации */
.registration-page .bottom-navigation[b-f3wqloo1ji] {
    display: none;
}
/* _content/ClickLove_bot/Pages/Layout/MainLayout.razor.rz.scp.css */
.page[b-md19xmwrqx] {
    position: relative;
    display: flex;
    flex-direction: column;
}
*[b-md19xmwrqx] {
    font-family: 'Montserrat Alternates', sans-serif;
}
main[b-md19xmwrqx] {
    flex: 1;
}

.sidebar[b-md19xmwrqx] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-md19xmwrqx] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-md19xmwrqx]  a, .top-row[b-md19xmwrqx]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-md19xmwrqx]  a:hover, .top-row[b-md19xmwrqx]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-md19xmwrqx]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-md19xmwrqx] {
        justify-content: space-between;
    }

    .top-row[b-md19xmwrqx]  a, .top-row[b-md19xmwrqx]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-md19xmwrqx] {
        flex-direction: row;
    }

    .sidebar[b-md19xmwrqx] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-md19xmwrqx] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-md19xmwrqx]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-md19xmwrqx], article[b-md19xmwrqx] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-md19xmwrqx] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-md19xmwrqx] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/ClickLove_bot/Pages/Payment.razor.rz.scp.css */
/* Сброс отступов для полноэкранного режима */
html[b-erz2gvjx9v], body[b-erz2gvjx9v] {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Общие стили */
.payment-page[b-erz2gvjx9v] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    padding: 20px 20px 60px 20px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
}

.payment-page[b-erz2gvjx9v]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.payment-page > *[b-erz2gvjx9v] {
    position: relative;
    z-index: 2;
}

.payment-container[b-erz2gvjx9v] {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Заголовок */
.payment-header[b-erz2gvjx9v] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    gap: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.back-btn[b-erz2gvjx9v] {
    position: static;
    margin-right: 16px;
    flex-shrink: 0;
    align-self: flex-start;
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.back-btn:hover[b-erz2gvjx9v] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.header-content[b-erz2gvjx9v] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.payment-title[b-erz2gvjx9v] {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    word-break: break-word;
}

.subtitle[b-erz2gvjx9v] {
    font-size: 1rem;
    margin: 10px 0 0 0;
    opacity: 0.9;
    font-weight: 300;
    text-align: center;
    word-break: break-word;
}

/* Сообщения об ошибках */
.error-message[b-erz2gvjx9v] {
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #ffebee;
    font-weight: 500;
    text-align: center;
}

/* Информация о продукте */
.product-info[b-erz2gvjx9v] {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card[b-erz2gvjx9v] {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-icon[b-erz2gvjx9v] {
    font-size: 3.5rem;
    flex-shrink: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-details h3[b-erz2gvjx9v] {
    margin: 0 0 8px 0;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.product-description[b-erz2gvjx9v] {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 10px 0;
    line-height: 1.4;
    font-size: 1rem;
}

.product-price[b-erz2gvjx9v] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD93D;
    text-shadow: 0 0 10px rgba(255, 217, 61, 0.5);
}

/* Секции оплаты */
.payment-section[b-erz2gvjx9v] {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-section h3[b-erz2gvjx9v] {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-align: center;
}

/* Сетка методов оплаты */
.methods-grid[b-erz2gvjx9v] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method[b-erz2gvjx9v] {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-method:hover:not(.disabled)[b-erz2gvjx9v] {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.payment-method.disabled[b-erz2gvjx9v] {
    opacity: 0.5;
    cursor: not-allowed;
}

.method-icon[b-erz2gvjx9v] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    font-size: 1.5rem;
    font-size: 2rem;
    flex-shrink: 0;
}

.method-info[b-erz2gvjx9v] {
    flex: 1;
}

.method-name[b-erz2gvjx9v] {
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.method-description[b-erz2gvjx9v] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.method-additional[b-erz2gvjx9v] {
    color: #FFD93D;
    font-size: 0.8rem;
    font-weight: 500;
}

.method-arrow[b-erz2gvjx9v] {
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.method-disabled[b-erz2gvjx9v] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Оверлей обработки */
.processing-overlay[b-erz2gvjx9v] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.processing-content[b-erz2gvjx9v] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.spinner[b-erz2gvjx9v] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin-b-erz2gvjx9v 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin-b-erz2gvjx9v {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.processing-content p[b-erz2gvjx9v] {
    margin: 0;
    color: white;
    font-weight: 500;
}

/* Детали оплаты */
.payment-details-section[b-erz2gvjx9v] {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Криптоплатежи */
.crypto-payment-details[b-erz2gvjx9v],
.regular-payment-details[b-erz2gvjx9v] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.payment-info-card[b-erz2gvjx9v] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.crypto-icon[b-erz2gvjx9v],
.method-icon-large[b-erz2gvjx9v] {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.crypto-amount[b-erz2gvjx9v] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFD93D;
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(255, 217, 61, 0.5);
}

.payment-method-name[b-erz2gvjx9v] {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 10px 0;
}

.payment-status-badge[b-erz2gvjx9v] {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

.status-pending[b-erz2gvjx9v] {
    background: rgba(255, 193, 7, 0.2);
    color: #FFD93D;
    border: 1px solid rgba(255, 193, 7, 0.5);
}

/* Инструкции по оплате */
.payment-instructions[b-erz2gvjx9v] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-instructions h4[b-erz2gvjx9v] {
    margin: 0 0 15px 0;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.payment-instructions ol[b-erz2gvjx9v] {
    margin: 0 0 20px 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.payment-instructions ol li[b-erz2gvjx9v] {
    margin-bottom: 8px;
    line-height: 1.4;
}

.payment-instructions p[b-erz2gvjx9v] {
    margin: 0 0 20px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* Адрес для отправки */
.address-section[b-erz2gvjx9v] {
    margin: 20px 0;
}

.address-section label[b-erz2gvjx9v] {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}

.address-container[b-erz2gvjx9v] {
    display: flex;
    gap: 10px;
}

.address-input[b-erz2gvjx9v] {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: monospace;
    font-size: 0.9rem;
}

.address-input[b-erz2gvjx9v]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.copy-btn[b-erz2gvjx9v] {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover[b-erz2gvjx9v] {
    background: rgba(255, 255, 255, 0.3);
}

/* Обновление статуса */
.refresh-section[b-erz2gvjx9v] {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.refresh-btn[b-erz2gvjx9v] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.refresh-btn:hover:not(:disabled)[b-erz2gvjx9v] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.refresh-btn:disabled[b-erz2gvjx9v] {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner-small[b-erz2gvjx9v] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin-b-erz2gvjx9v 1s linear infinite;
}

/* Успешная оплата */
.success-payment-details[b-erz2gvjx9v] {
    text-align: center;
    padding: 30px 20px;
}

.success-animation[b-erz2gvjx9v] {
    margin-bottom: 20px;
}

.checkmark[b-erz2gvjx9v] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: checkmarkPulse-b-erz2gvjx9v 0.6s ease-out;
}

@keyframes checkmarkPulse-b-erz2gvjx9v {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-payment-details h2[b-erz2gvjx9v] {
    color: white;
    font-size: 2rem;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.success-details[b-erz2gvjx9v] {
    margin: 20px 0;
}

.detail-item[b-erz2gvjx9v] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-item:last-child[b-erz2gvjx9v] {
    border-bottom: none;
}

.label[b-erz2gvjx9v] {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.value[b-erz2gvjx9v] {
    color: white;
    font-weight: 600;
}

.success-message[b-erz2gvjx9v] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.success-message p[b-erz2gvjx9v] {
    margin: 0;
    color: white;
    line-height: 1.5;
}

.action-buttons[b-erz2gvjx9v] {
    margin-top: 25px;
}

.primary-btn[b-erz2gvjx9v] {
    padding: 15px 30px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn:hover[b-erz2gvjx9v] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

/* Ошибка оплаты */
.error-payment-details[b-erz2gvjx9v] {
    text-align: center;
    padding: 30px 20px;
}

.error-icon[b-erz2gvjx9v] {
    font-size: 4rem;
    margin-bottom: 20px;
}

.error-payment-details h3[b-erz2gvjx9v] {
    color: white;
    font-size: 1.5rem;
    margin: 0 0 15px 0;
}

.error-payment-details p[b-erz2gvjx9v] {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.retry-btn[b-erz2gvjx9v] {
    padding: 12px 25px;
    background: rgba(244, 67, 54, 0.8);
    border: 1px solid rgba(244, 67, 54, 0.9);
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.retry-btn:hover[b-erz2gvjx9v] {
    background: rgba(244, 67, 54, 0.9);
    transform: translateY(-2px);
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .payment-page[b-erz2gvjx9v] {
        padding: 15px 15px 100px 15px;
    }
    
    .payment-title[b-erz2gvjx9v] {
        font-size: 1.5rem;
    }
    
    .subtitle[b-erz2gvjx9v] {
        font-size: 0.9rem;
    }
    
    .product-card[b-erz2gvjx9v] {
        gap: 15px;
        padding: 15px;
    }
    
    .product-icon[b-erz2gvjx9v] {
        font-size: 3rem;
    }
    
    .product-details h3[b-erz2gvjx9v] {
        font-size: 1.3rem;
    }
    
    .product-price[b-erz2gvjx9v] {
        font-size: 1.6rem;
    }
    
    .payment-method[b-erz2gvjx9v] {
        padding: 15px 18px;
    }
    
    .method-name[b-erz2gvjx9v] {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .payment-page[b-erz2gvjx9v] {
        padding: 10px 10px 120px 10px;
    }
    
    .payment-header[b-erz2gvjx9v] {
        padding: 15px;
    }
    
    .back-btn[b-erz2gvjx9v] {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .payment-title[b-erz2gvjx9v] {
        font-size: 1.3rem;
    }
    
    .subtitle[b-erz2gvjx9v] {
        font-size: 0.85rem;
    }
    
    .product-card[b-erz2gvjx9v] {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .product-icon[b-erz2gvjx9v] {
        font-size: 2.5rem;
    }
    
    .payment-method[b-erz2gvjx9v] {
        padding: 12px 15px;
    }
    
    .method-icon[b-erz2gvjx9v] {
        font-size: 1.3rem;
    }
    
    .method-name[b-erz2gvjx9v] {
        font-size: 0.95rem;
    }
    
    .method-description[b-erz2gvjx9v] {
        font-size: 0.85rem;
    }
    
    .crypto-icon[b-erz2gvjx9v],
    .method-icon-large[b-erz2gvjx9v] {
        font-size: 2.5rem;
    }
    
    .success-payment-details h2[b-erz2gvjx9v] {
        font-size: 1.6rem;
    }
    
    .checkmark[b-erz2gvjx9v] {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
}

@media (max-width: 400px) {
    .payment-page[b-erz2gvjx9v] {
        padding: 10px 10px 140px 10px;
    }
    
    .payment-header[b-erz2gvjx9v] {
        padding: 12px;
    }
    
    .back-btn[b-erz2gvjx9v] {
        position: static;
        margin-bottom: 10px;
        transform: none;
    }
    
    .payment-title[b-erz2gvjx9v] {
        font-size: 1.2rem;
    }
    
    .subtitle[b-erz2gvjx9v] {
        font-size: 0.8rem;
    }
    
    .product-price[b-erz2gvjx9v] {
        font-size: 1.4rem;
    }
    
    .payment-section[b-erz2gvjx9v] {
        padding: 15px;
    }
    
    .payment-method[b-erz2gvjx9v] {
        padding: 10px 12px;
    }
    
    .detail-item[b-erz2gvjx9v] {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}
