.domain-sorgulama-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.domain-sorgulama-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.domain-sorgulama-title {
    text-align: center;
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.domain-sorgulama-subtitle {
    text-align: center;
    color: #718096;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.domain-search-wrapper {
    margin-bottom: 30px;
}

.domain-search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.domain-search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #3182ce;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.domain-search-input:focus {
    outline: none;
    border-color: #2c5282;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.domain-search-input::placeholder {
    color: #a0aec0;
}

.domain-search-btn {
    padding: 15px 40px;
    background: #000;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.domain-search-btn:hover {
    background: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.domain-extensions-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.domain-extension-btn {
    padding: 10px 5px;
    background: #edf2f7;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d3748;
    text-align: center;
}

.domain-extension-btn:hover {
    background: #e2e8f0;
    border-color: #3182ce;
}

.domain-extension-btn.active {
    background: #3182ce;
    color: white;
    border-color: #2c5282;
}

.domain-more-extensions {
    text-align: center;
    margin-top: 15px;
}

.domain-more-btn {
    background: none;
    border: 2px solid #3182ce;
    color: #3182ce;
    padding: 10px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.domain-more-btn:hover {
    background: #3182ce;
    color: white;
}

.domain-hidden-extensions {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 10px;
}

.domain-hidden-extensions.show {
    display: block;
}

.domain-result-box {
    display: none;
    margin-top: 30px;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.domain-result-box.show {
    display: block;
}

.domain-result-box.loading {
    background: #fff5e6;
    border: 2px solid #ffd699;
}

.domain-result-box.available {
    background: #e6f9f0;
    border: 2px solid #80e6b3;
}

.domain-result-box.taken {
    background: #ffe6e6;
    border: 2px solid #ff9999;
}

.domain-result-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.domain-result-domain {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.domain-clear-btn {
    background: #718096;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 15px;
}

.domain-clear-btn:hover {
    background: #4a5568;
}

.domain-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3182ce;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: domain-spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes domain-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .domain-extensions-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (max-width: 768px) {
    .domain-sorgulama-wrapper {
        padding: 25px;
    }

    .domain-sorgulama-title {
        font-size: 2rem;
    }

    .domain-search-box {
        flex-direction: column;
    }

    .domain-search-btn {
        width: 100%;
    }

    .domain-extensions-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }

    .domain-extension-btn {
        padding: 8px 3px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .domain-extensions-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .domain-sorgulama-title {
        font-size: 1.5rem;
    }

    .domain-sorgulama-subtitle {
        font-size: 1rem;
    }
}
