:root.search-tlds {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --accent: #06b6d4;
    --gradient-main: linear-gradient(135deg, #059669 0%, #34d399 100%);
    --gradient-2: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --btn-price: var(--global-btn-price);
    --btn-offer: var(--global-btn-offer);
    --btn-check: var(--global-btn-check);
    --primary-bg-1: rgba(16, 185, 129, 0.05);
    --primary-bg-2: rgba(6, 182, 212, 0.05);
    --hero-bg-1: rgba(16, 185, 129, 0.1);
    --hero-bg-2: rgba(5, 150, 105, 0.1);
    --hero-filter: drop-shadow(0 4px 20px rgba(16, 185, 129, 0.3));
    --focus-shadow: 0 25px 50px rgba(16, 185, 129, 0.15), inset 0 0 0 2px rgba(16, 185, 129, 0.1);
}

.dk-list-content {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.dk-list-tld-type {
    padding: 2px 8px;
    color: var(--primary-dark);
    border-radius: 4px;
    display: inline-block;
    width: 140px; 
    text-align: center;
    font-weight: 600;
}

.dk-list-tld-active {
    width: 200px; 
    padding: 0 10px;
    text-align: center;
    font-size: var(--font-size-base);
    border-left: 1px solid #e5e7eb;
}

.dk-list-tld-newly {
    width: 250px; 
    padding: 0 10px;
    text-align: center;
    font-size: var(--font-size-base);
    border-left: 1px solid #e5e7eb;
}

.dk-card-type {
    padding: 2px 8px;
    color: var(--primary-dark);
    border-radius: 4px;
    font-size: 16px;
    display: inline-block;
    width: 40px;
    text-align: center;
}

.dk-card-meaning {
    color: var(--gray);
    font-style: italic;
    display: inline-block;
    width: 100px;
}

.section-header {
    text-align: center;
    padding: 25px 0 15px;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.single-group-section {
    width: 100%;
}

.group-section {
    margin-bottom: 50px;
}

.group-section:last-child {
    margin-bottom: 20px;
}

.domain-card.is-loading .domain-name {
    background-color: #f3f4f6;
    color: transparent;
    border-radius: 4px;
    width: 80%;
    height: 1.2em;
    animation: pulse 1.5s infinite ease-in-out;
}

.domain-card.is-loading .domain-actions {
    display: flex;
    gap: 6px;
    width: 100%;
}

.domain-card.is-loading .placeholder-button {
    height: 24px;
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 4px;
    animation: pulse 1.5s infinite ease-in-out;
}

.domain-card.is-loading .placeholder-button.short {
    flex-grow: 0.8;
}

.btn-action.is-loading {
    background: #f3f4f6;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.btn-action.is-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    animation: loading-shimmer 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes loading-shimmer {
    100% {
        left: 100%;
    }
}