

.hero {
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Заголовок */
h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}

/* Підзаголовок */
.hero-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 48px;
    font-weight: 500;
}

/* Пошуковий контейнер */
.search-container {
    background: white;
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 20px 25px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.search-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
}

/* Форма пошуку */
.search-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Поле вводу */
.search-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: #fafbfc;
    font-family: inherit;
    font-weight: 500;
}

.search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.search-input:valid {
    border-color: #10b981;
}

/* Блок згоди */
.consent-block {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.consent-block:hover {
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}

.consent-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #2563eb;
}

.consent-checkbox:checked {
    animation: checkPulse 0.3s ease;
}

@keyframes checkPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.consent-label {
    font-size: 14px;
    color: #475569;
    cursor: pointer;
    line-height: 1.5;
    font-weight: 500;
    flex: 1;
    text-align: left;
}

.consent-label:hover {
    color: #2563eb;
}

/* Кнопка пошуку */
.search-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.search-btn::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;
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.search-btn:active {
    transform: translateY(0);
}

.search-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.search-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Описовий текст */
.hero-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-weight: 500;
    position: relative;
}

.hero-description::before {
    content: '🔒';
    position: absolute;
    left: -10px;
    top: -10px;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Додаткові функції */
.features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 16px;
}

/* Статистика */
.stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 40px auto;
    padding: 32px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
    max-width: 600px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Анімація для статистики */
@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.stat-number {
    animation: countUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 24px 16px;
    }

    h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .search-container {
        padding: 32px 24px;
    }

    .search-input {
        padding: 16px 20px;
        font-size: 15px;
    }

    .search-btn {
        padding: 16px 32px;
        font-size: 15px;
    }

    .features {
        gap: 24px;
    }

    .feature-item {
        flex: 1 1 100%;
    }

    .stats {
        gap: 32px;
        padding: 24px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 16px);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }

    .consent-block {
        padding: 16px;
    }

    .consent-label {
        font-size: 13px;
    }
}





/* Results Header */
.results-header {
    text-align: center;
    margin-bottom: 48px;
    background: white;
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.results-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
}

.results-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    letter-spacing: -0.75px;
}

.results-subtitle {
    font-size: 1.125rem;
    color: #059669;
    font-weight: 500;
    margin-bottom: 20px;
}

.results-suggestion {
    font-size: 0.9375rem;
    color: #475569;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px 20px 12px 44px;
    margin-top: 20px;
    position: relative;
    display: inline-block;
    font-weight: 500;
}

.results-suggestion::before {
    content: '💡';
    position: absolute;
    left: 16px;
    top: 12px;
    font-size: 16px;
}

/* Search Form */
.search-form-container {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.search-input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
    background: #fafbfc;
    font-family: inherit;
    font-weight: 500;
}

.search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-btn {
    width: 100%;
    padding: 14px 32px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.search-btn:active {
    transform: translateY(0);
}

/* Age Filters */
.age-filters-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

.age-filters-title {
    text-align: center;
    font-size: 1.375rem;
    color: #1a202c;
    margin-bottom: 28px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.age-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.age-filter {
    width: 120px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.age-filter:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.age-filter.active {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.age-filter.viewed {
    background: #f1f5f9;
    color: #94a3b8;
    border-color: #cbd5e1;
}

/* Results Content */
.results-content-container {
    margin-top: 40px;
    animation: fadeInUp 0.4s ease-out;
}

.results-content-container.show {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Header */
.profile-header {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
    position: relative;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: -0.5px;
}

.profile-meta {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.profile-age {
    font-size: 1.1rem;
    color: #34495e;
}

.profile-age-number {
    font-weight: 600;
    color: #3498db;
    font-size: 1.2rem;
}

.profile-zodiac {
    font-size: 1.1rem;
    color: #34495e;
}

.profile-zodiac span {
    font-weight: 500;
    color: #8e44ad;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.meta-item i {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 11px;
}

.records-count {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

/* Records Section */
.records-section {
    background: white;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.3px;
}

.section-title i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}


.records-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* Records List */
.records-list  h1{
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: -0.5px;
}

.record-item {
    background: linear-gradient(135deg, #fafbfc, #f8fafc);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 28px 32px 28px 72px;
    transition: all 0.2s ease;
    position: relative;
    min-height: 100px;
    display: flex;
    align-items: stretch;
}

.record-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6, #2563eb);
    border-radius: 10px 0 0 10px;
}

.record-item:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-color: #d1d5db;
}

.record-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 16px;
}

.record-number {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.record-text {
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Action Buttons Container */
.action-buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 36px 0;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
}

.pdf-btn {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.pdf-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.analysis-btn {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.analysis-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

.action-btn i {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 24px 16px;
    }

    .results-title {
        font-size: 1.875rem;
    }

    .results-header,
    .search-form-container,
    .age-filters-container {
        padding: 28px 24px;
        margin-bottom: 32px;
    }

    .age-filter {
        width: 75px;
        height: 75px;
        font-size: 1.25rem;
    }

    .profile-meta {
        gap: 20px;
    }

    .record-item {
        padding: 24px 20px 24px 60px;
        min-height: auto;
    }

    .record-number {
        left: 16px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .action-buttons-container {
        flex-direction: column;
        gap: 16px;
        padding: 28px 0;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }
}


.results-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}





@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
}

/* Заголовок */
.results-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 36px;
    letter-spacing: -0.75px;
    line-height: 1.2;
}

/* Блок "немає результатів" */
.no-results-block {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 40px 32px;
    margin-bottom: 32px;
    position: relative;
}

/* Іконка */
.no-results-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    animation: checkPulse 0.6s ease-out;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

@keyframes checkPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Основний текст */
.no-results-main {
    font-size: 1.125rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.5;
    padding: 0 20px;
}

/* Підказка */
.no-results-suggestion {
    font-size: 0.9375rem;
    color: #475569;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px 20px 12px 44px;
    margin-top: 20px;
    position: relative;
    display: inline-block;
    font-weight: 500;
    text-align: left;
}

.no-results-suggestion::before {
    content: '💡';
    position: absolute;
    left: 16px;
    top: 12px;
    font-size: 16px;
}

/* Додаткова інформація */
.additional-info {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 32px;
    text-align: left;
    position: relative;
}

.additional-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #2563eb, #3b82f6);
    border-radius: 12px 0 0 12px;
}

.info-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.2px;
}

.info-title i {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 14px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 10px 0 10px 28px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    font-weight: 500;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border: 2px solid #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-list li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 13px;
    color: #10b981;
    font-weight: bold;
    font-size: 10px;
}

/* Статистика */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 32px 0;
    padding: 24px;
    background: linear-gradient(135deg, #fafbfc, #f8fafc);
    border-radius: 10px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Кнопки дій */
.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Декоративні елементи */
.decorative-circles {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    opacity: 0.05;
}

.decorative-circles::before,
.decorative-circles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: #2563eb;
}

.decorative-circles::before {
    width: 100px;
    height: 100px;
    top: 0;
    right: 0;
}

.decorative-circles::after {
    width: 60px;
    height: 60px;
    bottom: 0;
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 24px 16px;
    }

    .results-section {
        padding: 36px 28px;
    }

    .results-title {
        font-size: 1.875rem;
        margin-bottom: 28px;
    }

    .no-results-block {
        padding: 32px 24px;
    }

    .no-results-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 24px;
    }

    .no-results-main {
        font-size: 1rem;
        padding: 0 10px;
    }

    .no-results-suggestion {
        font-size: 0.875rem;
        padding: 10px 16px 10px 40px;
    }

    .additional-info {
        padding: 24px;
    }

    .stats-row {
        gap: 24px;
        padding: 20px;
    }

    .stat-value {
        font-size: 20px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .results-title {
        font-size: 1.625rem;
    }

    .info-list li {
        font-size: 13px;
        padding-left: 24px;
    }
}

.loading-state{
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}