pages/* ========================================
   Home Page - NewlyRegisteredDomains.io
   ======================================== */

/* Wide container for home page */
.main-container-wide {
    max-width: 1400px;
}

/* Search Section */
.search-section {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.search-container {
    position: relative;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.search-input {
    width: 100%;
    padding: 24px 180px 24px 30px;
    font-size: 18px;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-primary);
    font-weight: 500;
}

.search-input::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--nrds-blue) 0%, var(--nrds-dark) 100%);
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 4px 16px rgba(10, 186, 181, 0.3);
}

/* TLD Filter */
.tld-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.tld-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.tld-option input[type="radio"] {
    margin-right: 6px;
    cursor: pointer;
}

.tld-option:hover {
    color: var(--nrds-blue);
}

.tld-option input[type="radio"]:checked + span {
    color: var(--nrds-blue);
    font-weight: 600;
}

/* Domains Showcase */
.domains-showcase {
    margin-bottom: 80px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.showcase-column {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--nrds-lighter);
}

.showcase-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-scroll {
    height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.showcase-scroll::-webkit-scrollbar {
    width: 6px;
}

.showcase-scroll::-webkit-scrollbar-track {
    background: var(--bg-gray);
    border-radius: 3px;
}

.showcase-scroll::-webkit-scrollbar-thumb {
    background: var(--nrds-blue);
    border-radius: 3px;
}

.showcase-item {
    padding: 15px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showcase-item:last-child {
    border-bottom: none;
}

.showcase-item:hover {
    background: var(--nrds-lighter);
    padding-left: 20px;
}

.showcase-domain {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    font-family: 'Roboto Mono', 'Fira Code', 'Courier New', monospace;
}

.showcase-date {
    font-size: 12px;
    color: var(--text-light);
    white-space: nowrap;
}

.clickable-domain {
    cursor: pointer;
    transition: color 0.3s;
}

.clickable-domain:hover {
    color: var(--nrds-blue);
    text-decoration: underline;
}

/* Stats Section */
.stats-section {
    margin-bottom: 80px;
}

.stats-header {
    text-align: center;
    margin-bottom: 50px;
}

.stats-title {
    font-size: 36px;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.stats-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .search-input {
        padding: 20px 140px 20px 20px;
        font-size: 16px;
    }

    .search-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .tld-filter {
        gap: 10px;
        margin-top: 12px;
        padding: 0 10px;
    }

    .tld-option {
        font-size: 13px;
        flex: 1;
        justify-content: center;
    }
}