/* ===== site-basic.css (global) ===== */
:root {
    --dark: #1f2937;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #fff;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: .75rem;
    --font-size-sm: .875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.1rem;
    --font-size-xl: 1.3rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 4rem;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.08);
    --hero-padding: 120px 20px;
    --hero-padding-searching: 40px 20px;
    --hero-title-size: 4rem;
    --hero-title-size-searching: 2rem;
    --hero-subtitle-size: 1.3rem;
    --search-input-size: 18px;
    --search-form-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --global-btn-register: linear-gradient(135deg, #10b981, #059669);
    --global-btn-price: linear-gradient(135deg, #f59e0b, #d97706);
    --global-btn-check: linear-gradient(135deg, #3b82f6, #2563eb);
    --global-btn-expired: linear-gradient(135deg, #ef4444, #dc2626);
    --global-btn-offer: linear-gradient(135deg, #8b5cf6, #7c3aed);
    --global-btn-verify: linear-gradient(135deg, #64748b, #475569);
    --global-btn-dropdown: #e5e7eb;
    --global-btn-secondary: rgba(107,114,128,0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: radial-gradient(circle at 30% 20%, var(--primary-bg-1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, var(--primary-bg-2) 0%, transparent 50%), linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%);
    min-height: 100vh;
    color: var(--dark);
    line-height: 1.6;
}

.main-container {
    padding-top: 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fffffff2;
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid #0000000d;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 40px;
    transition: .3s;
}

.nav-logo {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .3s;
    background: var(--gradient-main, linear-gradient(135deg, #0284C7 0%, #38BDF8 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-center {
    display: flex;
    gap: 5px;
    margin-left: 40px;
}

.nav-center .nav-link {
    color: #666;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.nav-center .nav-link:hover {
    background: var(--primary-bg-1, rgba(2, 132, 199, 0.05));
    color: var(--primary, #0284C7);
}

.user-info {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.nav-link {
    color: #666;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 14px;
}

.nav-link:hover {
    background: rgba(2, 132, 199, 0.1);
    color: #0284C7;
}

button.nav-link {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--hero-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    background: #ffffff;
}

.hero-section.searching {
    padding: var(--hero-padding-searching);
    min-height: auto;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .06;
    background: #ffffff;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
    transition: var(--transition-slow);
}

.searching .hero-content {
    max-width: 1600px;
}

.hero-title {
    font-size: var(--hero-title-size);
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    transition: var(--transition-slow);
    filter: var(--hero-filter);
}

.searching .hero-title {
    font-size: var(--hero-title-size-searching);
    margin-bottom: 15px;
    filter: none;
}

.hero-subtitle {
    font-size: var(--hero-subtitle-size);
    color: var(--gray);
    margin-bottom: 50px;
    font-weight: 500;
    transition: var(--transition-slow);
    opacity: .9;
}

.searching .hero-subtitle {
    display: none;
}

.hero-title-link {
    text-decoration: none;
    color: inherit;
    background: inherit;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
    background-clip: inherit;
}

.hero-title-link:hover {
    text-decoration: none;
}

.search-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    transition: var(--transition-slow);
}

.searching .search-container {
    max-width: 800px;
    margin-bottom: 40px;
}

.search-form {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.98);
    padding: 8px;
    border-radius: var(--radius-lg);
    box-shadow: var(--search-form-shadow);
    border: 2px solid var(--primary);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.search-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-main);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.search-form:focus-within::before {
    opacity: .15;
}

.search-form:focus-within {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--focus-shadow);
}

.search-input {
    flex: 1;
    padding: 18px 24px;
    font-size: var(--search-input-size);
    border: none;
    outline: none;
    background: transparent;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.search-input::placeholder {
    color: #94a3b8;
    transition: color 0.3s;
}

.search-input:focus::placeholder {
    color: #cbd5e1;
}

.search-btn {
    padding: 18px 36px;
    background: var(--gradient-main);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: var(--search-input-size);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.search-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.search-btn:active::after {
    width: 300px;
    height: 300px;
}

.search-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.features-section {
    padding: 10px 20px;
    background: #ffffff;
    position: relative;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-main);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(-5deg) scale(1.1);
}

.feature-icon svg,
.feature-icon i {
    color: var(--white);
    font-size: 32px;
}

.feature-title {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.feature-desc {
    font-size: var(--font-size-base);
    color: var(--gray);
    line-height: 1.7;
}

.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #fff;
    padding: 24px 20px;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    text-align: left;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-columns {
    display: contents;
}

.footer-brand {
    min-width: 0;
}

.footer-logo {
    display: inline-block;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    margin-bottom: 12px;
}

.footer-tagline {
    color: #fff;
    opacity: .6;
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 320px;
}

.footer-group {
    min-width: 0;
}

.footer-heading {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-list li {
    list-style: none;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    opacity: .7;
    font-size: 0.75rem;
    transition: opacity .3s ease, color .3s ease;
}

.footer-link:hover {
    opacity: 1;
    color: #38BDF8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 12px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    opacity: .6;
    font-size: 0.75rem;
    margin: 0;
}

.footer-copy .footer-link {
    font-size: 0.75rem;
    opacity: 1;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal li {
    list-style: none;
}

.footer-legal .footer-link {
    font-size: 0.75rem;
}

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid var(--light-gray);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

::selection {
    background: rgba(2, 132, 199, 0.2);
    color: var(--primary-dark);
}

.faq-section {
    width: 100%;
    margin: 0;
    padding: 40px 20px;
    background: #ffffff;
}

.faq-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    padding: 30px 40px 20px;
    margin: 0;
    letter-spacing: -0.3px;
}

.faq-answer {
    padding: 0 40px 30px;
    color: var(--gray);
    line-height: 1.7;
    font-size: var(--font-size-base);
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.nv_dropdown {
    position: relative;
    list-style: none;
}

.nav-center {
    list-style: none;
}

.nv_dropdown-btn {
    color: #666;
    background: none;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}

.nv_dropdown-btn:hover,
.nv_dropdown:hover .nv_dropdown-btn {
    background: var(--primary-bg-1, rgba(2, 132, 199, 0.05));
    color: var(--primary, #0284C7);
}

.nv_dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin: 8px 0 0 0;
    padding: 0;
    list-style: none;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
}

.nv_dropdown-menu li {
    list-style: none;
}

.nv_dropdown:hover .nv_dropdown-menu,
.nv_dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nv_dropdown-item {
    display: block;
    padding: 10px 16px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.nv_dropdown-item:hover {
    background: var(--primary-bg-1, rgba(2, 132, 199, 0.05));
    color: var(--primary, #0284C7);
}

.nv_dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.nv_dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.brand-logo {
    margin-bottom: 0;
}

.brand-logo .hero-title-link {
    font-size: var(--hero-title-size);
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    transition: var(--transition-slow);
    filter: var(--hero-filter);
    text-decoration: none;
    display: inline-block;
}

h1.hero-subtitle {
    font-size: var(--hero-subtitle-size);
    color: var(--gray);
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.searching .brand-logo .hero-title-link {
    font-size: var(--hero-title-size-searching);
    filter: none;
}

.searching h1.hero-subtitle {
    display: none;
}

/* ===== index/main.css (homepage-specific) ===== */
:root.page-home {
    --primary: #0284C7;
    --primary-dark: #075985;
    --primary-light: #38BDF8;
    --accent: #38BDF8;
    --gradient-main: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%);
    --gradient-2: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%);
    --gradient-3: linear-gradient(135deg, #38BDF8 0%, #0284C7 100%);
    --primary-bg-1: rgba(2, 132, 199, 0.05);
    --primary-bg-2: rgba(56, 189, 248, 0.05);
    --hero-bg-1: rgba(2, 132, 199, 0.1);
    --hero-bg-2: rgba(7, 89, 133, 0.1);
    --hero-filter: drop-shadow(0 4px 20px rgba(2, 132, 199, 0.3));
    --focus-shadow: 0 25px 50px rgba(2, 132, 199, 0.15), inset 0 0 0 2px rgba(2, 132, 199, 0.1);
}

body {
    background: #fafafa;
}

.searching .search-container {
    max-width: 800px;
}

.page-home .hero-section.searching {
    padding: 0px 20px;
}

.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-section.loading .results-grid {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.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: 8px 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-dot.checking {
    background: #d1d5db;
    animation: pulse-dot 1s ease-in-out infinite;
}

.status.checking {
    color: #9ca3af;
}

.checking-btn {
    opacity: 0.4;
    pointer-events: none;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.placeholder-text {
    color: #9ca3af;
}

.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;
    min-width: 90px;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
}

.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: #0284C7;
    border-color: #0284C7;
}

.view-all-link#marketplaceViewAll:hover {
    background: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%);
    color: #fff;
    border-color: transparent;
}

.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;
}

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

.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;
}

.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: '\2713';
    color: var(--primary);
    font-weight: 700;
}

.coverage-item p {
    color: var(--gray);
    line-height: 1.6;
}

.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-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; }

/* ===== Responsive ===== */
@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: 1024px) {
    .nav-center {
        gap: 2px;
        margin-left: 20px;
    }
    .nav-center .nav-link {
        padding: 6px 10px;
        font-size: 13px;
    }
    .nav-right {
        gap: 10px;
    }
    .user-info {
        font-size: 13px;
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --hero-title-size: 2rem;
        --hero-title-size-searching: 1.2rem;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin-left: 15px;
        color: #333;
        font-size: 28px;
        border-radius: 8px;
        transition: all 0.3s;
        order: 0;
    }
    .nav-toggle:hover {
        background: rgba(2, 132, 199, 0.1);
        color: #0284C7;
    }
    .nav-bar {
        padding: 0 15px;
        height: 60px;
    }
    .nav-logo {
        font-size: 20px;
        order: -1;
    }
    .nav-center {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 20px 0;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        height: auto;
        min-height: calc(100vh - 60px);
    }
    .nav-center.mobile-show {
        transform: translateX(0);
    }
    .nav-right {
        margin-left: auto;
        gap: 5px;
        display: flex;
    }
    .nav-right .nav-link {
        padding: 6px 12px;
        font-size: 13px;
    }
    .user-info {
        display: none;
    }
    .nv_dropdown {
        border-bottom: 1px solid #eee;
    }
    .nv_dropdown-btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
        text-align: left;
        font-weight: 600;
        color: #333;
        background: #f8f9fa;
        border-radius: 0;
        display: block;
    }
    .nv_dropdown-menu {
        position: static;
        box-shadow: none;
        background: white;
        margin: 0;
        padding: 0;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .nv_dropdown-item {
        padding: 12px 20px 12px 40px;
        font-size: 15px;
        border-left: 3px solid transparent;
    }
    .nv_dropdown-item:hover {
        background: #f8f9fa;
        border-left-color: #0284C7;
    }
    .search-btn {
        padding: 14px;
        font-size: 16px;
        border-radius: 10px;
    }

    .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: 7px 0;
    }
    .domain-name {
        font-size: 14px;
    }
    .action-link {
        font-size: 12px;
        padding: 4px 10px;
    }
    .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;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-tagline {
        margin: 0 auto;
    }
    .footer-list {
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
    }

    .trust-bar { flex-direction: column; gap: 8px; align-items: center; }
    .content-section { padding: 30px 16px; }
}

@media (max-width: 480px) {
    :root {
        --hero-title-size: 1.5rem;
        --hero-title-size-searching: 1rem;
    }
}
