/* Стили для рейтинга хостингов */

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --background: #f8fafc;
    --surface: #ffffff;
    --surface-hover: #f1f5f9;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header::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="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
    z-index: 1;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brand-info h1 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 4px 0 0 0;
    font-weight: 400;
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-primary);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn:hover {
    background: var(--surface-hover);
    border-color: var(--secondary-color);
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline {
    background: transparent;
    border-color: var(--border);
}

.btn-outline[aria-pressed="true"] {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Header specific buttons */
.header .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.header .btn-outline[aria-pressed="true"] {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

/* Layout */
.main-layout {
    padding: 24px 0;
}

.layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 1024px) {
    .layout {
        grid-template-columns: 320px 1fr;
    }
}

/* Sidebar */
.sidebar {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.filter-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-box {
    display: flex;
    gap: 8px;
}

.search-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    font-size: 14px;
    transition: border-color 0.2s ease;
    color: #ffffff;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgb(37 99 235 / 0.1);
}

.range-input {
    width: 100%;
    height: 6px;
    background: var(--border-light);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.range-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow);
}

.select-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    font-size: 14px;
    cursor: pointer;
}

/* Chips */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chip {
    padding: 6px 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.chip:hover {
    background: var(--surface-hover);
    border-color: var(--secondary-color);
}

.chip[aria-pressed="true"] {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Switches */
.switches {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.switch {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.switch input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.switch-label {
    color: var(--text-primary);
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.results-info {
    font-size: 14px;
    color: var(--text-primary);
}

/* Minimal Disclaimer */
.disclaimer-minimal {
    display: flex;
    align-items: center;
    justify-content: center; 
    border-radius: 6px; 
}

.mini-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mini-btn i {
    font-size: 11px;
}

.mini-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.mini-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.disclaimer-text {
    color: #6366f1;
    font-weight: 600;
    white-space: nowrap;
}

.disclaimer-stats {
    color: #64748b;
    font-weight: 500;
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.disclaimer-stats span {
    color: #6366f1;
    font-weight: 700;
}

.disclaimer-affiliate {
    color: #8b5cf6;
    font-weight: 500;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.card-subtitle {
    font-size: 11px;
    color: var(--text-secondary);
    margin: 4px 0 0 0;
}

.tariff-name {
    font-size: 10px;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(37, 99, 235, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 2px;
}

.card-price {
    text-align: right;
}

.price {
    font-size: 18px;
    font-weight: 800;
    color: #00d4aa;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.3);
}

.price-period {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 14px;
    height: 14px;
    fill: #e5e7eb;
}

.star.filled {
    fill: #fbbf24;
}

.rating-text {
    font-size: 12px;
    color: var(--text-secondary);
    margin-left: 4px;
}

.card-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 16px 0;
}

.spec-badge {
    padding: 6px 10px;
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 12px;
    text-align: center;
}

.spec-badge-full {
    grid-column: 1 / -1;
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.spec-badge-full strong {
    color: white;
}

.spec-badge strong {
    color: var(--text-primary);
}

 

.feature-badge {
    padding: 4px 8px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    display: inline-block; 
    white-space: nowrap;
    line-height: 1.2;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* Адаптивные бейджи для таблицы */
@media (max-width: 768px) {
    .feature-badge {
        font-size: 10px;
        padding: 3px 6px;
        margin: 1px 1px 1px 0;
    }
}

@media (max-width: 480px) {
    .feature-badge {
        font-size: 9px;
        padding: 2px 4px;
        margin: 1px 1px 1px 0;
        border-radius: 8px;
    }
}

.feature-badge.secondary {
    background: var(--secondary-color);
}

.feature-badge.success {
    background: var(--success-color);
}

.feature-badge.warning {
    background: var(--warning-color);
}

.card-notes {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 12px 0;
    line-height: 1.4;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.clicks-info {
    font-size: 10px;
    color: var(--text-muted);
}

.clicks-count {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 11px;
}

/* Table */
.table-container {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}



.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    table-layout: fixed;
}

.data-table th {
    background: var(--background);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: sticky;
    top: 0;
    z-index: 10;
    white-space: nowrap;
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    vertical-align: middle;
    white-space: nowrap;
    overflow: visible;
}

.data-table tr:hover {
    background: var(--surface-hover);
}

.text-right {
    text-align: right;
}

/* Table column widths - увеличенные размеры для читаемости */
.data-table th:nth-child(1), .data-table td:nth-child(1) { /* Провайдер */
    width: 22%;
}

.data-table th:nth-child(2), .data-table td:nth-child(2) { /* Локация */
    width: 30%;
}

.data-table th:nth-child(3), .data-table td:nth-child(3) { /* Тип - скрыта */
    display: none;
}

.data-table th:nth-child(4), .data-table td:nth-child(4) { /* Виртуализация */
    width: 12%;
}

.data-table th:nth-child(5), .data-table td:nth-child(5) { /* Панель - скрыта */
    display: none;
}

.data-table th:nth-child(6), .data-table td:nth-child(6) { /* Цена */
    width: 15%;
}

.data-table th:nth-child(7), .data-table td:nth-child(7) { /* CPU */
    width: 18%;
}

.data-table th:nth-child(8), .data-table td:nth-child(8) { /* RAM */
    width: 12%;
}

.data-table th:nth-child(9), .data-table td:nth-child(9) { /* Диск */
    width: 22%;
}

.data-table th:nth-child(10), .data-table td:nth-child(10) { /* Трафик */
    width: 12%;
}

.data-table th:nth-child(11), .data-table td:nth-child(11) { /* Рейтинг */
    width: 8%;
}

.data-table th:nth-child(12), .data-table td:nth-child(12) { /* Действия */
    width: 10%;
}

/* Специальные стили для отдельных колонок */
.data-table td:nth-child(4) { /* ВИРТУАЛИЗАЦИЯ */
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 13px;
}

.data-table td:nth-child(6) { /* ЦЕНА */
    font-weight: 700;
    color: var(--success-color);
    font-size: 16px;
}

.data-table td:nth-child(7) { /* CPU */
    font-weight: 500;
    color: var(--text-primary);
}

.data-table td:nth-child(8) { /* RAM */
    font-weight: 500;
    color: var(--text-primary);
}

.data-table td:nth-child(11) { /* РЕЙТИНГ */
    font-weight: 600;
    color: var(--warning-color);
    font-size: 15px;
}

/* Стили для предотвращения наложения элементов */
.data-table td {
    position: relative;
    overflow: visible;
}

.data-table td .feature-badge {
    position: relative;
    z-index: 1;
    margin-right: 8px;
    margin-bottom: 2px;
    display: inline-block;
}

/* Дополнительные стили для предотвращения наложений */
.data-table td * {
    position: relative;
    z-index: auto;
}

/* Стили для кнопок в таблице */
.data-table td .btn {
    position: relative;
    z-index: 2;
    margin: 0;
    white-space: nowrap;
    padding: 6px 10px;
    min-width: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.data-table td .btn i {
    font-size: 14px;
}

/* Дополнительные отступы для разделения колонок */
.data-table td:nth-child(9) { /* ДИСК */
    padding-right: 24px;
}

.data-table td:nth-child(10) { /* ТРАФИК */
    padding-left: 24px;
}

/* SEO Content */
.seo-content {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.seo-content::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.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.seo-card-full {
    grid-column: 1 / -1;
    max-width: none;
}

.seo-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* .seo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 20px 20px 0 0;
} */

/* .seo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
} */

.seo-card h2 {
    color: #1a202c;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative; 
}

/* .seo-card h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
} */

.seo-card h3 {
    color: #2d3748;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seo-card h3::before {
    content: '▶';
    color: #667eea;
    font-size: 0.8rem;
}

.seo-card h4 {
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seo-card h4::before {
    content: '●';
    color: #667eea;
    font-size: 0.6rem;
}

.seo-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.seo-card ul, .seo-card ol {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    padding-left: 0;
    list-style: none;
}

.seo-card li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.seo-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 0.9rem;
}

.seo-card ol {
    counter-reset: item;
}

.seo-card ol li {
    counter-increment: item;
}

.seo-card ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.seo-card strong {
    color: #1a202c;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hosting-types {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.type-item {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.type-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateX(8px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.05) 0%, rgba(56, 178, 172, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(72, 187, 120, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1) 0%, rgba(56, 178, 172, 0.1) 100%);
    border-color: rgba(72, 187, 120, 0.2);
    transform: translateY(-4px);
}

/* Factors Grid for full-width card */
.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.factor-item {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.15);
    transition: all 0.3s ease;
        text-align: center;
    position: relative;
    overflow: hidden;
}

.factor-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px 16px 0 0;
}

.factor-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
    border-color: rgba(102, 126, 234, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.15);
}

.factor-icon {
    font-size: 3rem;
        margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.factor-item h3 {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.factor-item h3::before {
    display: none;
}

.factor-item p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Tips Grid for full-width card */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.08) 0%, rgba(56, 178, 172, 0.08) 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(72, 187, 120, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #48bb78 0%, #38b2ac 100%);
    border-radius: 16px 16px 0 0;
}

.tip-item:hover {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.12) 0%, rgba(56, 178, 172, 0.12) 100%);
    border-color: rgba(72, 187, 120, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(72, 187, 120, 0.15);
}

.tip-number {
    background: linear-gradient(135deg, #48bb78 0%, #38b2ac 100%);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.tip-content {
    flex: 1;
}

.tip-content h3 {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tip-content h3::before {
    display: none;
}

.tip-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Image Card Styles */
.seo-card-image {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}

.seo-card-image.seo-card-full {
    flex-direction: row;
    align-items: stretch;
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.seo-card-image.seo-card-full .card-image {
    width: 50%;
    height: auto;
    min-height: 300px;
    border-radius: 16px 0 0 16px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.seo-card-image:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    flex: 1;
}

.seo-card-image.seo-card-full .card-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h2 {
    margin-bottom: 1rem;
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
}

.card-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-content p:last-of-type {
    margin-bottom: 1.5rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.5rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(79, 172, 254, 0.1) 100%);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(66, 153, 225, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d3748;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.15) 0%, rgba(79, 172, 254, 0.15) 100%);
    border-color: rgba(66, 153, 225, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

 

  
/* Specs Card Styles - Minimalist Design */
.specs-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.specs-header {
    text-align: center;
}

.specs-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

.specs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.spec-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.spec-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
}

.spec-metric::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spec-item:hover .spec-metric::before {
    opacity: 1;
}

.spec-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.spec-unit {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-info {
    flex: 1;
}

.spec-info h3 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.spec-info h3::before {
    display: none;
}

.spec-info p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.spec-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.range-label {
    color: #94a3b8;
    font-weight: 500;
}

.range-value {
    color: #3b82f6;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

/* Comparison Table Styles */
.comparison-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    border: 1px solid rgba(71, 85, 105, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.comparison-header {
        text-align: center;
    }
    
.comparison-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

.comparison-table {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(71, 85, 105, 0.3);
    backdrop-filter: blur(10px);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
    font-weight: 600;
    color: #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(71, 85, 105, 0.2);
    transition: all 0.3s ease;
    align-items: center;
}

.table-row:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(4px);
}

.table-row:last-child {
    border-bottom: none;
}

.provider-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.provider-logo {
        font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.provider-details h3 {
    color: #f1f5f9;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.provider-details h3::before {
    display: none;
}

.provider-tariff {
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0.25rem;
}

.provider-location {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
}

.rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.rating-value {
    color: #f1f5f9;
    font-weight: 600;
    font-size: 0.9rem;
}

.price {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.price-value {
    color: #10b981;
    font-size: 1.3rem;
    font-weight: 700;
}

.price-period {
    color: #94a3b8; 
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.action {
    display: flex;
    justify-content: center;
}

.compare-btn {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border: none;
        padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.compare-btn:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.comparison-footer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
}

.comparison-footer p {
    color: #cbd5e0;
    margin: 0;
    font-size: 0.95rem;
}

.comparison-footer strong {
    color: #60a5fa;
}

.clear-comparison-btn {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    margin-top: 1rem;
}

.clear-comparison-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Hosting Types Card Styles - Unique Design */
.hosting-types-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 50%, rgba(59, 130, 246, 0.08) 100%);
    border: 2px solid rgba(99, 102, 241, 0.15);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hosting-types-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hosting-types-header {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hosting-types-header h2 {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(99, 102, 241, 0.3);
}

.hosting-types-subtitle {
    color: #64748b;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    font-weight: 500;
    position: relative;
}

.hosting-types-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.hosting-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.hosting-type-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hosting-type-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

.hosting-type-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.hosting-type-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
}

.hosting-type-item:hover::after {
    opacity: 1;
}

.hosting-type-shared::before {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.hosting-type-vps::before {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.hosting-type-cloud::before {
    background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
}

.hosting-type-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-8px) rotate(1deg); 
    }
    50% { 
        transform: translateY(-12px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-8px) rotate(-1deg); 
    }
}

.hosting-type-item:hover .hosting-type-icon {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

.hosting-type-content h3 {
    color: #1e293b;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hosting-type-content h3::before {
    display: none;
}

.hosting-type-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.hosting-type-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hosting-feature-tag {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.hosting-feature-tag:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

.hosting-type-price {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #3b82f6 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.hosting-type-price:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.hosting-type-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hosting-type-price:hover::before {
    opacity: 1;
}

/* Dark mode for SEO content */
@media (prefers-color-scheme: dark) {
    .seo-content {
        background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    }
    
    .seo-card {
    background: transparent;
        border-color: transparent;
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.3),
            0 8px 16px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    
    .seo-card:hover {
        box-shadow: 
            0 32px 64px rgba(0, 0, 0, 0.4),
            0 16px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
    
    .seo-card h2 {
        color: #f7fafc;
    }
    
    .seo-card h3, .seo-card h4 {
        color: #e2e8f0;
    }
    
    .seo-card p, .seo-card li {
        color: #cbd5e0;
    }
    
    .seo-card strong {
        color: #f7fafc;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

    .type-item {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        border-color: rgba(102, 126, 234, 0.2);
    }
    
    .type-item:hover {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
        border-color: rgba(102, 126, 234, 0.3);
    }
    
    .feature-item {
        background: linear-gradient(135deg, rgba(72, 187, 120, 0.1) 0%, rgba(56, 178, 172, 0.1) 100%);
        border-color: rgba(72, 187, 120, 0.2);
    }
    
    .feature-item:hover {
        background: linear-gradient(135deg, rgba(72, 187, 120, 0.15) 0%, rgba(56, 178, 172, 0.15) 100%);
        border-color: rgba(72, 187, 120, 0.3);
    }
    
    .factor-item {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
        border-color: rgba(102, 126, 234, 0.2);
    }
    
    .factor-item:hover {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.18) 0%, rgba(118, 75, 162, 0.18) 100%);
        border-color: rgba(102, 126, 234, 0.3);
        box-shadow: 0 12px 24px rgba(102, 126, 234, 0.2);
    }
    
    .factor-item h3 {
        color: #e2e8f0;
    }
    
    .factor-item p {
        color: #cbd5e0;
    }
    
    .tip-item {
        background: linear-gradient(135deg, rgba(72, 187, 120, 0.12) 0%, rgba(56, 178, 172, 0.12) 100%);
        border-color: rgba(72, 187, 120, 0.2);
    }
    
    .tip-item:hover {
        background: linear-gradient(135deg, rgba(72, 187, 120, 0.18) 0%, rgba(56, 178, 172, 0.18) 100%);
        border-color: rgba(72, 187, 120, 0.3);
        box-shadow: 0 12px 24px rgba(72, 187, 120, 0.2);
    }
    
    .tip-content h3 {
        color: #e2e8f0;
    }
    
    .tip-content p {
        color: #cbd5e0;
    }
    
    .card-content h2 {
        color: #e2e8f0;
    }
    
    .card-content p {
        color: #cbd5e0;
    }
    
    .feature-highlight {
        background: linear-gradient(135deg, rgba(66, 153, 225, 0.15) 0%, rgba(79, 172, 254, 0.15) 100%);
        border-color: rgba(66, 153, 225, 0.25);
        color: #e2e8f0;
    }
    
    .feature-highlight:hover {
        background: linear-gradient(135deg, rgba(66, 153, 225, 0.2) 0%, rgba(79, 172, 254, 0.2) 100%);
        border-color: rgba(66, 153, 225, 0.35);
    }
    
    .card-subtitle {
        color: #a0aec0;
    }
    
    .service-item {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .service-content h3 {
        color: #e2e8f0;
    }
    
    .service-content p {
        color: #cbd5e0;
    }
    
    .specs-card {
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(51, 65, 85, 0.95) 100%);
        border-color: rgba(71, 85, 105, 0.8);
    }
    
    .specs-subtitle {
        color: #94a3b8;
    }
    
    .spec-item {
        background: rgba(30, 41, 59, 0.6);
        border-color: rgba(71, 85, 105, 0.5);
    }
    
    .spec-item:hover {
        background: rgba(30, 41, 59, 0.8);
        border-color: rgba(59, 130, 246, 0.4);
    }
    
    .spec-metric {
        background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
        border-color: rgba(59, 130, 246, 0.2);
    }
    
    .spec-value {
        color: #f1f5f9;
    }
    
    .spec-unit {
        color: #94a3b8;
    }
    
    .spec-info h3 {
        color: #f1f5f9;
    }
    
    .spec-info p {
        color: #cbd5e0;
    }
    
    .range-label {
        color: #64748b;
    }
    
    .range-value {
        color: #60a5fa;
        background: rgba(59, 130, 246, 0.2);
    }
    
    .hosting-types-card {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(59, 130, 246, 0.15) 100%);
        border-color: rgba(99, 102, 241, 0.3);
        box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05);
    }
    
    .hosting-types-header h2 {
        background: linear-gradient(135deg, #818cf8 0%, #a78bfa 50%, #60a5fa 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hosting-types-subtitle {
        color: #94a3b8;
    }
    
    .hosting-type-item {
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(51, 65, 85, 0.9) 100%);
        border-color: rgba(99, 102, 241, 0.3);
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    
    .hosting-type-item:hover {
        box-shadow: 0 25px 50px rgba(99, 102, 241, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.15);
        border-color: rgba(99, 102, 241, 0.5);
    }
    
    .hosting-type-content h3 {
        color: #f1f5f9;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hosting-type-description {
        color: #cbd5e0;
    }
    
    .hosting-feature-tag {
        background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
        color: #d1d5db;
        border-color: rgba(99, 102, 241, 0.3);
        box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
    }
    
    .hosting-feature-tag:hover {
        background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        color: white;
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    }
    
    .hosting-type-price {
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    
    .hosting-type-price:hover {
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2);
    }
    
    .disclaimer-minimal {
        background: rgba(99, 102, 241, 0.03);
        border-color: rgba(99, 102, 241, 0.08);
    }
    
    .disclaimer-text {
        color: #818cf8;
    }
    
    .disclaimer-stats {
        color: #cbd5e0;
    }
    
    .disclaimer-stats span {
        color: #818cf8;
    }
}

/* Responsive SEO content */
@media (max-width: 768px) {
    .seo-content {
        padding: 3rem 0;
    }
    
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .seo-card {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .seo-card h2 {
        font-size: 1.5rem;
    }
    
    .seo-card h3 {
        font-size: 1.25rem;
    }
    
    .seo-card h4 {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .type-item {
        padding: 1.5rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .factor-item {
        padding: 1.5rem;
    }
    
    .factor-icon {
        font-size: 2.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tip-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .tip-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-features {
        gap: 0.35rem;
    }
    
    .feature-highlight {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .seo-card-image.seo-card-full {
        flex-direction: column;
    }
    
    .seo-card-image.seo-card-full .card-image {
        width: 100%;
        height: 200px;
        border-radius: 16px 16px 0 0;
    }
    
    .seo-card-image.seo-card-full .card-content {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-item {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    .specs-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .spec-item {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .spec-metric {
        min-width: 70px;
        height: 70px;
    }
    
    .spec-value {
        font-size: 1.2rem;
    }
    
    .spec-unit {
        font-size: 0.7rem;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
    display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        border-radius: 12px;
        margin-bottom: 1rem;
        background: rgba(15, 23, 42, 0.8);
    }
    
    .provider-info {
        justify-content: center;
    }
    
    .provider-logo {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
 
    
    .features {
        justify-content: center;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .compare-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hosting-types-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hosting-type-item {
        padding: 2rem 1.5rem;
    }
    
    .hosting-type-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .hosting-type-content h3 {
        font-size: 1.3rem;
    }
    
    .hosting-type-description {
        font-size: 0.95rem;
    }
    
    .hosting-feature-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .hosting-type-price {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    .header-content {
        gap: 6px;
        padding: 6px 0;
    }
    
    .brand {
        gap: 6px;
    }
    
    .brand-info h1 {
        font-size: 12px;
    }
    
    .brand-info p {
        font-size: 9px;
        margin: 1px 0 0 0;
    }
    
    .logo {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    .header-actions {
        gap: 4px;
    }
    
    .header .btn-sm {
        padding: 3px 6px;
        font-size: 9px;
    }
    
    .table-container {
        margin: 0 -8px;
    }
    
    .data-table {
        font-size: 12px;
    }
    
    .data-table th,
    .data-table td {
        padding: 10px 8px;
    }
    
    /* Скрываем еще больше колонок на мобильных - оставляем только самое важное */
    .data-table th:nth-child(2), .data-table td:nth-child(2), /* Локация */
    .data-table th:nth-child(3), .data-table td:nth-child(3), /* Тип */
    .data-table th:nth-child(5), .data-table td:nth-child(5), /* Панель */
    .data-table th:nth-child(8), .data-table td:nth-child(8), /* RAM */
    .data-table th:nth-child(9), .data-table td:nth-child(9), /* Диск */
    .data-table th:nth-child(11), .data-table td:nth-child(11) { /* Рейтинг */
        display: none;
    }
    
    /* Оставляем только: Провайдер, Цена, Действия */
    .data-table th:nth-child(1), .data-table td:nth-child(1) { /* Провайдер */
        width: 60%;
    }
    
    .data-table th:nth-child(6), .data-table td:nth-child(6) { /* Цена */
        width: 25%;
    }
    
    .data-table th:nth-child(12), .data-table td:nth-child(12) { /* Действия */
        width: 15%;
    }
    
    .seo-content {
        padding: 2rem 0;
    }
    
    .seo-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .seo-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .seo-card h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .seo-card h3 {
        font-size: 1.2rem;
    }
    
    .seo-card h4 {
        font-size: 1rem;
    }
    
    .type-item, .feature-item {
        padding: 1rem;
    }
    
    .factors-grid {
        gap: 1rem;
    }
    
    .factor-item {
        padding: 1.25rem;
    }
    
    .factor-icon {
        font-size: 2rem;
    }
    
    .factor-item h3 {
        font-size: 1.1rem;
    }
    
    .tips-grid {
        gap: 1rem;
    }
    
    .tip-item {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .tip-number {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }
    
    .tip-content h3 {
        font-size: 1.1rem;
    }
    
    .card-image {
        height: 160px;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    .card-content h2 {
        font-size: 1.3rem;
    }
    
    .card-features {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .feature-highlight {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .seo-card-image.seo-card-full .card-image {
        height: 180px;
    }
    
    .services-grid {
        gap: 0.75rem;
    }
    
    .service-item {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .service-icon {
        font-size: 1.8rem;
    }
    
    .service-content h3 {
        font-size: 1rem;
    }
    
    .service-content p {
        font-size: 0.85rem;
    }
    
    .service-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .specs-container {
        gap: 1rem;
    }
    
    .spec-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .spec-metric {
        min-width: 60px;
        height: 60px;
    }
    
    .spec-value {
        font-size: 1rem;
    }
    
    .spec-unit {
        font-size: 0.65rem;
    }
    
    .spec-info h3 {
        font-size: 1rem;
    }
    
    .spec-info p {
        font-size: 0.85rem;
    }
    
    .spec-range {
        font-size: 0.8rem;
    }
    
    .table-row {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .provider-logo {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .provider-details h3 {
        font-size: 1rem;
    }
    
    .provider-location {
        font-size: 0.8rem;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    .rating-value {
        font-size: 0.85rem;
    }
    
    .price-value {
        font-size: 1.1rem;
    }
    
    .price-period {
        font-size: 0.75rem;
    }
    
    .feature-tag {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }
    
    .compare-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hosting-types-grid {
        gap: 1.5rem;
    }
    
    .hosting-type-item {
        padding: 1.5rem 1rem;
    }
    
    .hosting-type-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hosting-type-content h3 {
        font-size: 1.2rem;
    }
    
    .hosting-type-description {
        font-size: 0.9rem;
    }
    
    .hosting-feature-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .hosting-type-price {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }
    
    .disclaimer-minimal {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .disclaimer-stats {
        order: -1;
        margin-bottom: 0.25rem;
    }
}

/* Footer */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 24px 0; 
}

.footer p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .data-table {
        font-size: 14px;
    }
    
    .data-table th,
    .data-table td {
        padding: 14px 16px;
    }
    
    /* Скрываем менее важные колонки на средних экранах */
    .data-table th:nth-child(4), .data-table td:nth-child(4), /* Виртуализация */
    .data-table th:nth-child(10), .data-table td:nth-child(10) { /* Трафик */
        display: none;
    }
    
    /* Перераспределяем ширину колонок */
    .data-table th:nth-child(1), .data-table td:nth-child(1) { /* Провайдер */
        width: 15%;
    }
    
    .data-table th:nth-child(2), .data-table td:nth-child(2) { /* Локация */
        width: 8%;
    }
    
    .data-table th:nth-child(3), .data-table td:nth-child(3) { /* Тип */
        width: 10%;
    }
    
    .data-table th:nth-child(5), .data-table td:nth-child(5) { /* Панель */
        width: 12%;
    }
    
    .data-table th:nth-child(6), .data-table td:nth-child(6) { /* Цена */
        width: 8%;
    }
    
    .data-table th:nth-child(7), .data-table td:nth-child(7) { /* CPU */
        width: 7%;
    }
    
    .data-table th:nth-child(8), .data-table td:nth-child(8) { /* RAM */
        width: 7%;
    }
    
    .data-table th:nth-child(9), .data-table td:nth-child(9) { /* Диск */
        width: 9%;
    }
    
    .data-table th:nth-child(11), .data-table td:nth-child(11) { /* Рейтинг */
        width: 7%;
    }
    
    .data-table th:nth-child(12), .data-table td:nth-child(12) { /* Действия */
        width: 11%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
    
    .header-content {
        flex-direction: row;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
        padding: 8px 0;
    }
    
    .brand {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
        min-width: 0;
    }
    
    .brand-info {
        flex: 1;
        min-width: 0;
    }
    
    .brand-info h1 {
        font-size: 14px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .brand-info p {
        font-size: 10px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 2px 0 0 0;
    }
    
    .header-actions {
        display: flex;
        gap: 6px;
        flex-shrink: 0;
    }
    
    .logo {
        width: 32px;
        height: 32px;
        font-size: 12px;
        flex-shrink: 0;
    }
    
    .header .btn-sm {
        padding: 4px 8px;
        font-size: 10px;
        min-width: auto;
    }
    
    .sidebar {
        position: static;
        margin-bottom: 20px;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
    }
    
    .results-header {
        flex-direction: row;
        gap: 8px;
        align-items: center;
        display: flex;
        justify-content: space-between;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .card-specs {
        grid-template-columns: 1fr;
    }
    
    .table-container {
        border-radius: 8px;
        margin: 0 -12px;
        border-left: none;
        border-right: none;
    }
    
    .data-table {
        font-size: 13px;
    }
    
    .data-table th,
    .data-table td {
        padding: 12px 10px;
    }
    
    /* Скрываем менее важные колонки на планшетах */
    .data-table th:nth-child(4), .data-table td:nth-child(4), /* Виртуализация */
    .data-table th:nth-child(7), .data-table td:nth-child(7), /* CPU */
    .data-table th:nth-child(10), .data-table td:nth-child(10) { /* Трафик */
        display: none;
    }
    
    /* Адаптивные размеры для оставшихся колонок */
    .data-table th:nth-child(1), .data-table td:nth-child(1) { /* Провайдер */
        width: 20%;
    }
    
    .data-table th:nth-child(2), .data-table td:nth-child(2) { /* Локация */
        width: 8%;
    }
    
    .data-table th:nth-child(3), .data-table td:nth-child(3) { /* Тип */
        width: 12%;
    }
    
    .data-table th:nth-child(5), .data-table td:nth-child(5) { /* Панель */
        width: 15%;
    }
    
    .data-table th:nth-child(6), .data-table td:nth-child(6) { /* Цена */
        width: 10%;
    }
    
    .data-table th:nth-child(8), .data-table td:nth-child(8) { /* RAM */
        width: 8%;
    }
    
    .data-table th:nth-child(9), .data-table td:nth-child(9) { /* Диск */
        width: 10%;
    }
    
    .data-table th:nth-child(11), .data-table td:nth-child(11) { /* Рейтинг */
        width: 8%;
    }
    
    .data-table th:nth-child(12), .data-table td:nth-child(12) { /* Действия */
        width: 12%;
    }
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
    transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.3s ease;
}

/* Choices.js Custom Styles */
.choices {
    margin-bottom: 0;
}

.choices__inner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 12px;
    min-height: auto;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.choices__inner:hover {
    border-color: var(--secondary-color);
}

.choices__inner:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgb(37 99 235 / 0.1);
}

.choices__list--single .choices__item {
    color: var(--text-primary) !important;
    font-weight: 500;
}

.choices__list--single .choices__item--selectable {
    color: var(--text-primary) !important;
    background: transparent !important;
    font-weight: 500;
}

.choices__list--dropdown {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-lg) !important;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.choices__list--dropdown .choices__item {
    color: var(--text-primary) !important;
    padding: 10px 12px;
    font-size: 14px;
    transition: background-color 0.2s ease;
    background: var(--surface) !important;
}

.choices__list--dropdown .choices__item:hover,
.choices__list--dropdown .choices__item.is-highlighted {
    background: var(--surface-hover) !important;
    color: var(--text-primary) !important;
}

.choices__list--dropdown .choices__item.is-selected {
    background: var(--primary-color) !important;
    color: white !important;
}

.choices[data-type*="select-one"] .choices__button {
    background: var(--primary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

.choices[data-type*="select-one"] .choices__button:hover {
    background: var(--primary-hover);
}

.choices__placeholder {
    color: var(--text-muted);
    opacity: 1;
}

/* Дополнительные стили для переопределения Choices.js */
.choices__list--dropdown .choices__item--choice {
    color: var(--text-primary) !important;
    background: var(--surface) !important;
}

.choices__list--dropdown .choices__item--choice:hover {
    background: var(--surface-hover) !important;
    color: var(--text-primary) !important;
}

.choices__list--dropdown .choices__item--choice.is-highlighted {
    background: var(--primary-color) !important;
    color: white !important;
}

/* Убираем стандартные стили Choices.js */
.choices__list--dropdown .choices__item--choice:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
}

/* Дополнительные стили для выбранного элемента */
.choices__list--single .choices__item[data-value] {
    color: var(--text-primary) !important;
    background: transparent !important;
    font-weight: 500 !important;
}

.choices__list--single .choices__item[aria-selected="true"] {
    color: var(--text-primary) !important;
    background: transparent !important;
    font-weight: 500 !important;
}

/* Стили для всех состояний выбранного элемента */
.choices__list--single .choices__item {
    color: var(--text-primary) !important;
    background: transparent !important;
    font-weight: 500 !important;
    opacity: 1 !important;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --background: #0f172a;
        --surface: #1e293b;
        --surface-hover: #334155;
        --border: #334155;
        --border-light: #475569;
        --text-primary: #f8fafc;
        --text-secondary: #cbd5e1;
        --text-muted: #64748b;
    }
    
    /* Дополнительные стили для темной темы */
    .choices__list--single .choices__item--selectable {
        color: #f8fafc !important;
        background: transparent !important;
    }
    
    .choices__list--single .choices__item[data-value] {
        color: #f8fafc !important;
        background: transparent !important;
    }
    
    .choices__list--single .choices__item[aria-selected="true"] {
        color: #000 !important;
        background: transparent !important;
    }
    
    .choices__list--single .choices__item {
        color: #f8fafc !important;
        background: transparent !important;
    }
    
    .choices__list--dropdown .choices__item--choice {
        color: #f8fafc !important;
        background: #01388f !important;
    }
    
    .choices__list--dropdown .choices__item--choice:hover {
        background: #334155 !important;
        color: #f8fafc !important;
    }
    
    .choices__list--dropdown .choices__item--choice.is-highlighted {
        background: var(--primary-color) !important;
        color: white !important;
    }
}