﻿

.ds-suggestions-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.ds-suggestions-desc {
    margin: 4px 0 0;
    color: rgba(255,255,255,.65);
    font-size: 13px;
}

.ds-suggestions-list.pro {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ds-suggestion-item.pro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    transition: .2s ease;
}

    .ds-suggestion-item.pro:hover {
        background: rgba(255,255,255,.09);
        transform: translateY(-1px);
    }

    .ds-suggestion-item.pro.is-unavailable {
        opacity: .65;
    }

.ds-domain-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.ds-badge-inline.available {
    background: rgba(34,197,94,.15);
    color: #22c55e;
}

.ds-badge-inline.unavailable {
    background: rgba(239,68,68,.15);
    color: #ef4444;
}

.ds-domain-action {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ds-suggest-price {
    min-width: 90px;
    text-align: right;
    font-weight: 700;
    color: #fff;
}

.ds-btn-add-sm:disabled {
    cursor: not-allowed;
    opacity: .55;
}

@media (max-width: 768px) {
    .ds-suggestions-list.pro {
        grid-template-columns: 1fr;
    }

    .ds-suggestion-item.pro {
        align-items: flex-start;
        flex-direction: column;
    }

    .ds-domain-action {
        width: 100%;
        justify-content: space-between;
    }

    .ds-suggest-price {
        text-align: left;
    }
}

.ds-status-bar.unavailable {
    background-color: #d9534f;
    color: white;
    padding: 20px;
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(217, 83, 79, 0.25);
}
/* Konteyner Ayarları */
.ds-container {
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
    padding: 100px 20px;
    text-align: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden; /* Yıldızların taşmaması için */
}

.ds-content {
    position: relative;
    z-index: 10;
}

#stars, #stars2, #stars3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Küçük Yıldızlar */
#stars {
    width: 1px;
    height: 1px;
    background: transparent;
    box-shadow: 1744px 122px #FFF, 134px 1321px #FFF, 92px 859px #FFF, 1555px 1367px #FFF, 1200px 200px #FFF, 300px 500px #FFF, 800px 900px #FFF, 450px 100px #FFF, 1800px 600px #FFF, 100px 1200px #FFF; /* Örnek noktalar */
    animation: twinkle 3s ease-in-out infinite alternate;
}

/* Orta Boy Yıldızlar */
#stars2 {
    width: 2px;
    height: 2px;
    background: transparent;
    box-shadow: 444px 222px #FFF, 1534px 132px #FFF, 192px 459px #FFF, 155px 136px #FFF, 120px 800px #FFF, 600px 400px #FFF, 900px 100px #FFF;
    animation: twinkle 5s ease-in-out infinite alternate;
}

/* Büyük Yıldızlar */
#stars3 {
    width: 3px;
    height: 3px;
    background: transparent;
    box-shadow: 104px 522px #FFF, 634px 832px #FFF, 1492px 159px #FFF, 855px 167px #FFF;
    animation: twinkle 7s ease-in-out infinite alternate;
}

/* Yanıp Sönme Efekti */
@@keyframes twinkle {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

.ds-title {
    color: #ffffff;
    font-size: 28px; /* Mobilde daha okunaklı */
    font-weight: 700;
    margin-bottom: 10px;
}

.ds-subtitle {
    color: #8b949e;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.5;
}

.ds-search-wrapper {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.ds-search-form {
    width: 100%;
}

.ds-search-box {
    width: 100%;
    display: flex;
    align-items: center;
    background: rgba(28, 34, 41, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid #2d353f;
    border-radius: 50px;
    padding: 6px;
}

.ds-domain-input {
    width: 100%;
    flex: 1;
    min-width: 0;
    height: 50px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #ffffff !important;
    padding: 0 24px;
    font-size: 16px;
}

    .ds-domain-input::placeholder {
        color: rgba(255, 255, 255, 0.45);
    }

/* Sarı Buton */
.ds-search-btn {
    background-color: #ffcc00 !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 0 35px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    height: 50px;
    white-space: nowrap;
}

/* MOBİL DÜZENLEMELER (Breakpoint: 576px) */
@@media (max-width: 576px) {
    .ds-container {
        padding: 34px 12px;
    }

    .ds-title {
        font-size: 22px;
        line-height: 1.25;
    }

    .ds-subtitle {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .ds-search-wrapper {
        max-width: none;
        width: 100%;
    }

    .ds-search-box {
        display: flex;
        flex-direction: column;
        gap: 10px;
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
    }

    .ds-domain-input {
        width: 100% !important;
        display: block;
        flex: none;
        height: 54px;
        background: #1c2229 !important;
        border: 1px solid #2d353f !important;
        border-radius: 14px !important;
        padding: 0 16px;
        font-size: 15px;
        box-sizing: border-box;
    }




    .ds-search-btn {
        width: 100%; /* Buton tam genişlik */
        border-radius: 12px !important;
        height: 55px;
    }
}


/* Sonuç Alanı Genel Kapsayıcı */
.ds-results-wrapper {
    margin-top: 50px;
    animation: fadeIn 0.8s ease-out;
}

/* Yeşil Durum Çubuğu */
.ds-status-bar.available {
    background-color: #5cb85c;
    color: white;
    padding: 20px;
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(92, 184, 92, 0.3);
}

/* Ana Sonuç Alanı */
.ds-main-result {
    margin-bottom: 40px;
}

.ds-price-big {
    color: white;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.ds-btn-main-cart {
    background-color: #ffcc00;
    color: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
    cursor: pointer;
}

    .ds-btn-main-cart:hover {
        background-color: #e6b800;
        transform: scale(1.05);
    }

/* TLD Kart Izgarası */
.ds-tld-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 30px;
}

/* Bireysel Kartlar */
.ds-tld-card {
    background: rgba(28, 34, 41, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid #2d353f;
    padding: 25px 15px;
    border-radius: 12px;
    position: relative;
    transition: 0.3s;
}

    .ds-tld-card:hover {
        border-color: #ffcc00;
        transform: translateY(-5px);
    }

.ds-tld-name {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ds-tld-price {
    color: #8b949e;
    font-size: 14px;
    margin-bottom: 20px;
}

.ds-btn-add {
    background-color: #ffcc00;
    color: #000;
    border: none;
    width: 100%;
    padding: 8px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}

/* Rozetler (HOT, SALE) */
.ds-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 800;
}

    .ds-badge.hot {
        background-color: #d9534f;
        color: white;
    }

    .ds-badge.sale {
        background-color: #f0ad4e;
        color: white;
    }

/* Animasyon */
@@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil Uyumluluk */
@@media (max-width: 992px) {
    .ds-tld-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@@media (max-width: 576px) {
    .ds-tld-grid {
        grid-template-columns: 1fr;
    }

    .ds-status-bar.available {
        font-size: 18px;
    }
}
/* Öneriler Bölümü Genel */
.ds-suggestions-section {
    margin-top: 40px;
    text-align: left; /* Başlık sola yaslı */
}

.ds-suggestions-title {
    color: #8b949e;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-left: 10px;
}

.ds-suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Her Bir Liste Satırı */
.ds-suggestion-item {
    background: rgba(28, 34, 41, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid #2d353f;
    border-radius: 10px;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

    .ds-suggestion-item:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: #ffcc00;
    }

/* Alan Adı Metni */
.ds-domain-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}

    .ds-domain-text .ds-ext {
        font-weight: 700;
    }

/* Sağ Taraf: Buton ve Fiyat */
.ds-domain-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ds-btn-add-sm {
    background-color: #ffcc00;
    color: #000;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

    .ds-btn-add-sm:hover {
        background-color: #e6b800;
        transform: scale(1.05);
    }

.ds-suggest-price {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    min-width: 90px;
    text-align: right;
}

/* Satır İçi Rozet (HOT) */
.ds-badge-inline {
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 800;
    margin-left: 10px;
    vertical-align: middle;
}

    .ds-badge-inline.hot {
        background-color: #d9534f;
        color: white;
    }

/* MOBİL UYUMLULUK */
@@media (max-width: 768px) {
    .ds-suggestion-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .ds-domain-action {
        width: 100%;
        justify-content: center;
        flex-direction: column-reverse; /* Mobilde fiyat üstte buton altta olsun dersen */
        gap: 10px;
    }

    .ds-btn-add-sm {
        width: 100%;
    }
}
/* Ek Hizmetler Satırı Genel */
.ds-extra-services-row {
    margin-top: 30px;
    margin-bottom: 50px;
}

/* Servis Kartı Yapısı */
.ds-service-card {
    background: #1c2229; /* Diğer alanlarla uyumlu koyu gri */
    border: 1px solid #2d353f;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    height: 100%; /* Kart boylarını eşitlemek için */
    margin-bottom: 20px;
}

    .ds-service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        border-color: #3d4652;
    }

/* Sol Taraf: İkon Dairesi */
.ds-card-left {
    margin-right: 20px;
}

.ds-icon-circle {
    width: 70px;
    height: 70px;
    background: #151a20;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #8b949e;
    font-size: 28px;
}

.small-gear {
    position: absolute;
    font-size: 14px;
    top: 20px;
    left: 20px;
    color: #ffcc00; /* Çarkı sarı yaparak vurguladık */
}

/* Orta Taraf: Metinler */
.ds-card-center {
    flex: 1;
    text-align: left;
}

    .ds-card-center h4 {
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .ds-card-center p {
        color: #ffffff;
        font-size: 14px;
        margin-bottom: 4px;
        line-height: 1.4;
    }

    .ds-card-center .sub-text {
        color: #8b949e;
        font-size: 13px;
        margin-bottom: 0;
    }

/* Sağ Taraf: Sarı Göz Butonu */
.ds-eye-btn {
    width: 40px;
    height: 40px;
    background-color: #ffcc00;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}

    .ds-eye-btn:hover {
        background-color: #e6b800;
        transform: rotate(15deg);
        color: #000;
    }

/* Mobil Uyumluluk */
@@media (max-width: 768px) {
    .ds-service-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .ds-card-left {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .ds-card-center {
        text-align: center;
        margin-bottom: 20px;
    }

    .ds-card-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}




/*header*/
.domain-hero {
    background: #063c7a;
    padding: 170px 0;
    overflow: hidden;
    padding-bottom: 20px;
}

.domain-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.domain-hero-left {
    max-width: 540px;
    color: #fff;
}

    .domain-hero-left .heading {
        font-size: 58px;
        line-height: 1.05;
        font-weight: 800;
        margin: 0 0 22px 0;
        color: #fff;
    }

    .domain-hero-left .subheading {
        font-size: 24px;
        line-height: 1.5;
        margin: 0;
        color: #fff;
        font-weight: 500;
    }

        .domain-hero-left .subheading strong {
            font-size: 1.25em;
            font-weight: 800;
        }

.domain-hero-right {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.promo-bubble {
    position: relative;
    flex-shrink: 0;
}

.promo-com {
    width: 240px;
    padding-top: 10px;
}

.promo-main {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #f6a900;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

    .promo-main .promo-ext {
        font-size: 52px;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 8px;
    }

    .promo-main .promo-old {
        font-size: 18px;
        text-decoration: line-through;
        opacity: .9;
        margin-bottom: 4px;
    }

    .promo-main .promo-price {
        font-size: 64px;
        line-height: 1;
        font-weight: 900;
        margin-bottom: 4px;
    }

    .promo-main .promo-period {
        font-size: 26px;
        font-weight: 700;
    }

.promo-mini-badge {
    position: absolute;
    left: -70px;
    top: 8px;
    font-size: 22px;
    line-height: .95;
    font-weight: 900;
    color: #111;
    background: #fff;
    padding: 10px 12px;
    border-radius: 12px;
    transform: rotate(-4deg);
    z-index: 3;
}

.promo-discount {
    position: absolute;
    left: 12px;
    top: 62px;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 24px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.05;
    z-index: 3;
}

    .promo-discount span {
        display: block;
        font-size: 14px;
        font-weight: 700;
    }

.promo-note {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255,255,255,.75);
    text-align: center;
}

.promo-comtr {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #111;
    text-align: center;
    position: relative;
    padding: 18px;
}

.promo-top-tag {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #2faa4b;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
}

.promo-comtr .promo-ext {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

    .promo-comtr .promo-ext.blue {
        color: #2d56c4;
    }

.promo-comtr .promo-old {
    font-size: 16px;
    color: #7b7b7b;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.promo-comtr .promo-price {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
}

    .promo-comtr .promo-price.dark {
        color: #000;
    }

@@media (max-width: 991px) {
    .domain-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .domain-hero-left .heading {
        font-size: 42px;
    }

    .domain-hero-left .subheading {
        font-size: 20px;
    }

    .domain-hero-right {
        width: 100%;
        justify-content: center;
    }
}

@@media (max-width: 576px) {
    .domain-hero {
        padding-top: 140px 0;
    }

    .domain-hero-left .heading {
        font-size: 34px;
    }

    .domain-hero-left .subheading {
        font-size: 18px;
    }

    .promo-main {
        width: 180px;
        height: 180px;
    }

        .promo-main .promo-ext {
            font-size: 40px;
        }

        .promo-main .promo-price {
            font-size: 48px;
        }

        .promo-main .promo-period {
            font-size: 20px;
        }

    .promo-comtr {
        width: 160px;
        height: 160px;
    }

        .promo-comtr .promo-ext {
            font-size: 32px;
        }

        .promo-comtr .promo-price {
            font-size: 28px;
        }
}


.sl-whois-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .sl-whois-modal.is-open {
        display: flex;
    }

.sl-whois-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.sl-whois-modal-card {
    position: relative;
    width: 100%;
    max-width: 680px;
    background: #151a20;
    border: 1px solid #2d353f;
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    overflow: hidden;
}

.sl-whois-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #2d353f;
}

    .sl-whois-modal-head h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 800;
        color: #ffffff;
    }

.sl-whois-close {
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.sl-whois-modal-body {
    padding: 24px;
}

.sl-whois-row {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sl-whois-label {
    width: 160px;
    color: #8b949e;
    font-weight: 700;
    flex-shrink: 0;
}

.sl-whois-value {
    color: #ffffff;
    word-break: break-word;
}

.sl-whois-ns-list {
    margin: 0;
    padding-left: 18px;
}

.sl-whois-alert {
    background: rgba(217, 83, 79, 0.12);
    border: 1px solid rgba(217, 83, 79, 0.45);
    color: #ffffff;
    padding: 14px 16px;
    border-radius: 12px;
}

.sl-whois-note {
    margin-top: 18px;
    color: #8b949e;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .sl-whois-row {
        flex-direction: column;
        gap: 5px;
    }

    .sl-whois-label {
        width: auto;
    }
}

@media only screen and (max-width: 767.98px) {
    .top-header.domain-hero .domain-hero-right {
        display: none !important;
    }

    .top-header.domain-hero .domain-hero-inner {
        display: block !important;
    }

    .top-header.domain-hero .domain-hero-left {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .top-header.domain-hero {
        padding: 130px 0 35px 0 !important;
    }

        .top-header.domain-hero .heading {
            font-size: 32px !important;
            line-height: 1.2 !important;
        }

        .top-header.domain-hero .subheading {
            font-size: 16px !important;
            line-height: 1.5 !important;
        }
}

