.container {
    max-width: 900px;
    margin: 1rem auto;
    background: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-color);
}

 
.search-form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 900px;
    margin: 1rem auto;
    background: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.search-input-group {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

#searchInput {
    width: 100%;
    padding: 12px 15px;
    font-size: 1.2rem;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 6px 0 0 6px;
    box-sizing: border-box;
    outline: none;
}
#searchInput:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.domain-suffix {
    padding: 7.5px 10px;
    font-size: 1.2rem;
    background-color: #e9ecef;
    border: 1px solid #ccc;
    border-radius: 0 6px 6px 0;
    color: #495057;
}

.search-options-group fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.search-options-group legend {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
}

.radio-group {
    display: flex;
    gap: 10px;
}

.radio-group input[type="radio"] {
    display: none; 
}

.radio-group label {
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.radio-group input[type="radio"]:checked + label {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

 
.results-container {
    padding: 10px;
    min-height: 100px;
}

.results-placeholder {
    color: #888;
    text-align: center;
    padding-top: 20px;
}

.results-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    
    gap: 10px;
}

.results-list li {
    padding: 12px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-weight: bold;
    color: #28a745;
    text-align: center;
    transition: transform 0.2s;
}

.results-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

 

        .category-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-bottom: 30px;
    }
    .cat-btn {
        background: #fff;
        border: 1px solid #dfe1e5;
        border-radius: 20px;
        padding: 8px 16px;
        font-size: 14px;
        cursor: pointer;
        color: #3c4043;
        transition: all 0.2s ease;
        font-family: inherit;
    }
    .cat-btn:hover {
        background: #f8f9fa;
        border-color: #dadce0;
        box-shadow: 0 1px 2px rgba(60,64,67,0.1);
    }
    .cat-btn.active {
        background: #e8f0fe;
        color: #1a73e8;
        border-color: #d2e3fc;
        font-weight: 500;
    }
    
    .active-cat-title {
        text-align: center;
        color: #202124;
        margin-bottom: 20px;
        font-size: 1.2rem;
        display: none;
    }

    .header .des {text-align:center; margin-bottom: 15px; color:#3f6368;}
    .card .cat { max-width: 700px; font-weight: 700; line-height: 1.6; color: #2a4e53; }



 

 
.premium-promo-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 24px 32px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 20px rgba(118, 75, 162, 0.2);
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.promo-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    color: white;
}

.promo-content p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.promo-btn {
    background: white;
    color: #764ba2;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}






.dropped-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0; 
}

.dropped-domain-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
    gap: 15px;
}

.dropped-domain-link:hover {
    background-color: #f8f9fa; 
}

.domain-name-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    word-break: break-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;          
    min-width: 0;    
}

.domain-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.domain-age-badge {
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.drop-time {
    color: #7f8c8d;
}



.promo-price-tag {
    margin-top: 15px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.price-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.price-period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.promo-action {
    display: flex;
    flex-direction: column;
    align-items: center;
        width: 100%;
    gap: 10px;
}

.promo-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 250px;
}

 .premium-promo-card.promo-dropped {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    margin-top: 20px;  
}

.premium-promo-card.promo-dropped .promo-btn {
    color: #e65c00; 
}
  
 .seo-about-block {margin-top: 24px; padding: 24px; background: #fff; border-radius: 8px;}
 .update-info {margin-top: 16px; text-align: center; color: #777; font-size: 0.9rem;}


.domain-stats-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat-badge {
    background-color: #f8f9fa; 
    border: 1px solid #e9ecef; 
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #495057;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.stat-badge .stat-label {
    font-weight: 500;
}

.stat-badge .stat-value strong {
    color: #0d6efd; 
    font-size: 1.15rem;
    font-weight: 700;
}

 
    @media (max-width: 600px) {

        .promo-btn {
            width: 100%;
            text-align: center;
            display: block;
            box-sizing: border-box;
        }
        .domain-stats-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .stat-badge {
        width: 100%;
        max-width: 280px;
        justify-content: space-between; 
    }
    }

    @media (max-width: 500px) {
    .dropped-domain-link {
        flex-direction: column;    
        align-items: flex-start;   
        gap: 8px;
    }

    .domain-meta {
        width: 100%;             
        justify-content: flex-start; 
    }


}






 
 

 
 

 