: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;
}


.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;
    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;
}

.search-result-hint {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 32px;
    text-align: center;
}

.search-result-hint span {
    font-weight: 600;
    color: var(--primary);
}
.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;
}

/* Domain Name Truncation */
.domain-name {
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}
@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 ~ .features-section,
.searching ~ .faq-section,
.searching ~ .how-it-works {
    display: none;
}

.how-it-works {
    padding: 50px 20px 20px 20px;
    background: #ffffff;
}

.how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
}

.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;
}

.coverage-item:hover {
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.coverage-item h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.coverage-item h4::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
}

.coverage-item p {
    color: var(--gray);
    line-height: 1.6;
}

.limits-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 20px 0;
    font-size: 14px;
}

.limits-table th,
.limits-table td {
    border: 1px solid #ddd;
    padding: 8px 12px;
    text-align: center;
}

.limits-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.limits-table tbody tr:hover {
    background-color: #f9f9f9;
}

.limits-table td:first-child {
    text-align: left;
    font-weight: 500;
}

@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;
    }

    .search-result-hint {
        font-size: 14px;
        margin-bottom: 24px;
    }
}