.domain-search-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a3a5c 55%, #064e3b 100%);
    padding: 80px 0;
    color: var(--white);
}

.domain-search-section .section-tag {
    color: var(--blue-light);
}

.domain-search-section .section-title {
    color: var(--white);
}

.domain-search-box {
    margin-top: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(10px);
}

.domain-input-row {
    display: flex;
    gap: 10px;
}

.domain-input-wrap {
    flex: 1;
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    align-items: center;
    transition: var(--transition);
}

.domain-input-wrap:focus-within {
    border-color: var(--green-light);
    background: rgba(255, 255, 255, 0.1);
}

.domain-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 18px;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font);
}

.domain-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.domain-tld-select {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    padding: 0 16px;
    font-size: 0.88rem;
    font-family: var(--font);
    font-weight: 600;
    cursor: pointer;
    outline: none;
    height: 100%;
}

.domain-tld-select option {
    background: var(--dark-2);
}

.domain-result {
    margin-top: 20px;
    display: none;
}

.domain-result.show {
    display: block;
}

.domain-result-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.domain-result-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
}

.domain-result-available {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-light);
    margin-top: 4px;
}

.domain-result-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--green-light);
}

.domain-result-price span {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

/* TLD grid */
.tld-grid-section {
    background: var(--off-white);
}

.tld-table-wrap {
    margin-top: 48px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tld-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.tld-table th {
    background: var(--dark);
    color: var(--white);
    padding: 14px 20px;
    text-align: left;
    font-weight: 700;
}

.tld-table td {
    padding: 13px 20px;
    border-bottom: 1px solid var(--gray-200);
}

.tld-table tr:last-child td {
    border-bottom: none;
}

.tld-table tr:nth-child(even) td {
    background: var(--off-white);
}

.tld-name {
    font-weight: 800;
    color: var(--green-dark);
}

/* Domain why */
.domain-features-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.domain-feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
}

.domain-feature-card:hover {
    border-color: var(--green);
    box-shadow: 0 8px 28px rgba(22, 163, 74, 0.1);
    transform: translateY(-3px);
}

.df-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.3rem;
}

.df-icon.green {
    background: #dcfce7;
}

.df-icon.blue {
    background: #e0f2fe;
}

.domain-feature-card h3 {
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.domain-feature-card p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .domain-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .domain-input-row {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .domain-features-grid {
        grid-template-columns: 1fr;
    }
}