:root.page-home {
    --primary: #0077BE;
    --primary-dark: #005a8d;
    --primary-light: #00CED1;
    --accent: #00CED1;
    --gradient-main: linear-gradient(135deg, #0077BE 0%, #00CED1 100%);
    --gradient-2: linear-gradient(135deg, #0077BE 0%, #00CED1 100%);
    --gradient-3: linear-gradient(135deg, #00CED1 0%, #0077BE 100%);
    --btn-price: var(--global-btn-price);
    --btn-offer: var(--global-btn-offer);
    --btn-check: var(--global-btn-check);
    --btn-default: var(--global-btn-register);
    --primary-bg-1: rgba(0, 119, 190, 0.05);
    --primary-bg-2: rgba(0, 206, 209, 0.05);
    --hero-bg-1: rgba(0, 119, 190, 0.1);
    --hero-bg-2: rgba(0, 90, 141, 0.1);
    --hero-filter: drop-shadow(0 4px 20px rgba(0, 119, 190, 0.3));
    --focus-shadow: 0 25px 50px rgba(0, 119, 190, 0.15), inset 0 0 0 2px rgba(0, 119, 190, 0.1);
}
body {
    background: #fafafa;
}

.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 32px 20px;
    background: var(--primary-bg-1);
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.stat-item strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
}
.stat-item span {
    font-size: 0.82rem;
    color: #6b7280;
    letter-spacing: 0.02em;
}
@media (max-width: 768px) {
    .stats-bar {
        flex-wrap: wrap;
        gap: 24px 0;
        padding: 24px 16px;
    }
    .stat-item {
        width: 45%;
    }
    .stat-item strong {
        font-size: 1.25rem;
    }
}

.searching .search-container {
    max-width: 800px;
}

.results-section {
    display: none;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 40px;
    animation: fadeInUp .6s ease;
    background: #fafafa;
}

.results-section.active {
    display: block;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
}
.results-grid.cols-1 {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
}

.results-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.result-column {
    min-height: 400px;
    animation: slideInScale .5s ease forwards;
    opacity: 0;
}

.result-column:nth-child(1) {
    animation-delay: .1s;
}

.result-column:nth-child(2) {
    animation-delay: .2s;
}

.result-column:nth-child(3) {
    animation-delay: .3s;
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}

.column-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.column-count {
    font-weight: 400;
    color: var(--gray);
    font-size: 13px;
}

.column-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.domain-list {
    display: flex;
    flex-direction: column;
}

.domain-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
    gap: 12px;
}

.domain-name {
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
    flex: 1;
    min-width: 0;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.domain-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.status-dot.available {
    background: #22c55e;
}

.status-dot.taken {
    background: #ccc;
}

.status.available {
    color: #22c55e;
}

.status.taken {
    color: var(--gray);
}

.action-link {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 4px;
    transition: all 0.2s;
}

.action-link:hover {
    background: var(--primary-bg-1);
}

.action-link.primary {
    color: #fff;
}

.action-link.primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.action-link.primary.register {
    background: var(--global-btn-register);
}

.action-link.primary.price {
    background: var(--global-btn-price);
}

.action-link.primary.offer {
    background: var(--global-btn-offer);
}

.action-link.primary.catch {
    background: var(--global-btn-expired);
}

.action-link.primary.check {
    background: var(--global-btn-check);
}

.domain-age {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
}

.domain-age.drops {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
    font-weight: 600;
}

.domain-age.premium {
    background: #f5f5f5;
    color: #666;
}

.view-all-link {
    display: block;
    text-align: center;
    padding: 12px 20px;
    margin-top: 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid;
    background: transparent;
    transition: all 0.3s ease;
}

.view-all-link#tldViewAll {
    color: #10b981;
    border-color: #10b981;
}

.view-all-link#tldViewAll:hover {
    background: linear-gradient(135deg, #059669 0%, #34d399 100%);
    color: #fff;
    border-color: transparent;
}

.view-all-link#deletedViewAll {
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.view-all-link#deletedViewAll:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #D4AF37 100%);
    color: #fff;
    border-color: transparent;
}

.view-all-link#marketplaceViewAll {
    color: #8B4513;
    border-color: #8B4513;
}

.view-all-link#marketplaceViewAll:hover {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    color: #fff;
    border-color: transparent;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray);
    font-size: 14px;
}

.ticker-area {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.ticker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ticker-label {
    font-size: 14px;
    color: var(--dark);
    font-weight: 600;
}

.ticker-view-all {
    font-size: 13px;
    color: #FF6B35;
    text-decoration: none;
    padding: 8px 16px;
    border: 2px solid #FF6B35;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ticker-view-all:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #FF9558 100%);
    color: #fff;
    border-color: transparent;
}

.ticker-wrapper {
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 48px;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    flex-shrink: 0;
    font-size: 14px;
    color: #666;
}

.ticker-item .ticker-time {
    color: var(--gray);
    font-size: 12px;
    margin-left: 6px;
}
.empty-state {
    padding: 30px 20px;
    text-align: center;
    color: #666;
}

.empty-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.empty-message {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.empty-hint {
    font-size: 12px;
    color: #999;
}

/* Results Divider */
.results-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    margin: 8px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.divider-text {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
}

/* Fallback Result */
.domain-item.fallback-result {
    opacity: 0.85;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.search-hint {
    color: var(--gray);
    font-size: 14px;
    margin-top: 16px;
    text-align: center;
}

.searching ~ .stats-bar,
.searching ~ .features-section,
.searching ~ .content-section,
.searching ~ .faq-section {
    display: none;
}


.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    text-align: center;
    color: var(--gray);
    margin-bottom: 60px;
    margin-top: 25px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.coverage-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius);
    transition: all .3s ease;
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
}

.coverage-item:hover {
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    text-decoration: none;
}

.coverage-item h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.coverage-item h3::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
}

.coverage-item p {
    color: var(--gray);
    line-height: 1.6;
}


@media (max-width: 1200px) {
    .results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .result-column:nth-child(3) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .results-section {
        padding: 24px 16px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .result-column {
        min-height: auto;
    }

    .result-column:nth-child(3) {
        grid-column: auto;
    }

    .domain-item {
        padding: 10px 0;
    }

    .domain-name {
        font-size: 14px;
    }

    .action-link {
        font-size: 12px;
        padding: 4px 10px;
    }

    .ticker-section {
        padding: 14px 16px;
    }

    .ticker-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 0 16px;
    }

    .ticker-wrapper {
        padding: 0 16px;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

/* Trust bar */
.trust-bar { display: flex; justify-content: center; gap: 24px; margin-top: 16px; font-size: 0.85rem; color: #94a3b8; }
.trust-bar span { display: flex; align-items: center; gap: 6px; }
.trust-bar span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }

/* Content sections */
.content-section { padding: 40px 20px; background: #fff; }
.content-container { max-width: 1200px; margin: 0 auto; }
.content-section h2 { font-size: 1.5rem; font-weight: 800; color: #1f2937; margin-bottom: 20px; }
.content-section p { color: #6b7280; line-height: 1.8; margin-bottom: 14px; font-size: 1rem; }
.content-section a { color: #0077BE; text-decoration: none; font-weight: 600; }
.content-section a:hover { color: #005a8d; text-decoration: underline; }
.content-section a.coverage-item:hover { text-decoration: none; }

@media (max-width: 768px) {
    .trust-bar { flex-direction: column; gap: 8px; align-items: center; }
    .content-section { padding: 30px 16px; }
}