

/* --- 2. ICON FIX (FONT ÇAKIŞMASINI ENGELLER) --- */
.fas, .far, .fab, .fa {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

/* --- 3. PREMIUM DOMAIN AREA NİZAMI --- */
.hero-search-wrapper {
    width: 100%;
    max-width: 1240px; 
    margin: 25px auto 60px auto;
    font-family: 'Gilroy', sans-serif !important;
}

.search-main-container {
    background: #1a1e25; /* Odeaweb Koyu Gri */
    border-radius: 12px;
    padding: 65px 30px 45px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    z-index: 1; 
}

/* Topografik Çizgiler (Coweb Derinliği) */
.search-main-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../../img/line-path.webp') center center;
    background-size: 1100px; /* Geniş ve ferah çizgi yapısı */
    z-index: -1;
    opacity: 0.06; /* Belli belirsiz premium hava */
    pointer-events: none;
}

/* Başlık ve Font Nizamı */
.search-header-group { position: relative; z-index: 5; margin-bottom: 35px; }

.search-header-group span { 
    font-family: 'Gilroy', sans-serif !important;
    color: #f2712a; 
    font-size: 13.5px; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 2.5px; /* Sıkışıklığı bitiren genişlik */
    display: block; 
    margin-bottom: 5px; 
}

.search-header-group h2 {
    font-family: 'Gilroy', sans-serif !important;
    color: #fff;
    font-size: 34px; 
    font-weight: 900; 
    letter-spacing: -0.8px; /* Harflerin birbirini boğmadığı premium ayar */
    margin: 0;
    line-height: 1.15 !important; /* Yazıya nefes aldıran yükseklik */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* İnput ve Buton Alanı */
.search-input-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 10; }

.search-input-inner input { 
    width: 100%; height: 70px; border-radius: 12px; border: none; padding: 0 160px 0 25px; 
    font-weight: 700; font-size: 17px; outline: none; background: #fff; color: #1e293b; 
    font-family: 'Gilroy', sans-serif !important;
}

.search-input-inner button { 
    position: absolute; right: 10px; top: 10px; bottom: 10px; background: #f2712a; 
    color: #fff; border: none; border-radius: 8px; padding: 0 35px; font-weight: 800; 
    text-transform: uppercase; cursor: pointer; font-size: 14px; transition: 0.3s;
    font-family: 'Gilroy', sans-serif !important;
}

/* Dikey Ayraçlı Menü */
.search-sub-navigation { display: flex; justify-content: center; margin-top: 30px; position: relative; z-index: 10; }

.search-sub-navigation a { 
    font-family: 'Gilroy', sans-serif !important;
    font-size: 11px; font-weight: 800; color: #94a3b8; text-transform: uppercase; 
    padding: 0 25px; border-right: 1px solid rgba(148, 163, 184, 0.2); 
    text-decoration: none; display: flex; align-items: center; gap: 8px; transition: 0.2s; 
}

.search-sub-navigation a:last-child { border-right: none; }
.search-sub-navigation a i { color: #f2712a; font-size: 14px; }

/* Domain Kartları */
.extension-grid { display: flex; justify-content: center; gap: 12px; margin-top: 45px; position: relative; z-index: 10; }

.ext-card { 
    background: #fff; padding: 12px 20px; border-radius: 10px; display: flex; 
    align-items: center; gap: 10px; min-width: 175px; border: 1px solid #f1f5f9; transition: 0.3s; 
}

.ext-card .name { 
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 900; font-size: 18px; color: #1e293b; letter-spacing: -0.5px; 
}

.ext-card .price { 
    font-family: 'Gilroy', sans-serif !important; 
    font-weight: 700; font-size: 13px; color: #f2712a; 
}

/* .net Özel Kart */
.is-featured-net { border: 1px dashed #f2712a !important; position: relative; }
.is-featured-net::before { 
    content: "Özel Fiyat"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); 
    background: #f2712a; color: #fff; font-size: 9px; padding: 2px 12px; border-radius: 20px; 
    font-weight: 800; box-shadow: 0 4px 10px rgba(242, 113, 42, 0.2); 
}


/* --- SİHİRBAZ KUTUSU (ARKAPLANLI NİZAM) --- */
.small-box.dark { 
    background: #0f172a; 
    border-radius: 12px; 
    padding: 35px; 
    position: relative; 
    overflow: hidden; 
    height: 215px; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
    z-index: 1; /* Before katmanının altında kalmaması için */
}

/* Arkaplan Görseli Katmanı */
.small-box.dark::before {
    content: "";
    position: absolute;
    inset: 0;
    /* ÖNEMLİ: CSS'den IMG klasörüne erişim yolu */
    background: url('../img/yan_box_arkaplan.jpg') center center no-repeat; 
    background-size: cover;
    opacity: 0.65; /* Resmin koyuluğu (0.10 - 0.90 arası oynayabilirsin) */
    z-index: -1;
    transition: 0.5s ease;
}

/* Üzerine gelince resmi hafif canlandırır */
.small-box.dark:hover::before {
    opacity: 0.45;
    transform: scale(1.05);
}

.small-box.dark .head { 
    font-family: 'Gilroy', sans-serif !important;
    font-size: 25px; 
    font-weight: 500; 
    color: #fff; 
    position: relative; 
    padding-left: 18px; 
    z-index: 5; 
    letter-spacing: -0.5px; 
}

.small-box.dark .head::before { 
    content: ""; 
    position: absolute; 
    left: 0; top: 0; bottom: 0; 
    width: 5px; 
    background: #f2712a; 
    border-radius: 10px; 
}

.small-box.dark p { 
    color: #94a3b8; 
    font-size: 13px; 
    margin-top: 5px; 
    z-index: 5; 
    max-width: 175px; 
    font-weight: 500; 
}

/* Arkadaki silik sunucu ikonu */
.small-box.dark .bg-server-img { 
    position: absolute; 
    right: -25px; 
    bottom: -25px; 
    font-size: 120px; 
    color: #fff; 
    opacity: 0.03; /* Resimle çakışmasın diye bir tık daha kıstım */
    transform: rotate(-10deg); 
}

.stable-tld-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06) !important;
    border-color: #f2712a !important;
}

/* Beyaz Fırsat Kartı */
.promo-card-white {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    padding: 25px;
    height: 215px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-card-white .tag {
    color: #f2712a;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.promo-card-white .discount-text {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 55px;
    font-weight: 900;
    color: #1e293b;
    letter-spacing: -3px;
    line-height: 1;
}

.promo-card-white .sub-text {
    font-size: 11px;
    font-weight: 900;
    color: #94a3b8;
    text-transform: uppercase;
    line-height: 1;
}

.stable-tld-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06) !important;
    border-color: #f2712a !important;
}


/* Lephos Custom Stylesheet
    Font: Gilroy
    Primary Color: #f2712a (Orange)
*/

/* 1. GLOBAL & FONTS */


.text-soft { color: #64748b; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

/* 2. HEADER & INTRO GRID */
.main--intro { 
    display: grid; 
    grid-template-columns: 810px auto; 
    gap: 16px; 
    margin-top: 25px; 
    align-items: stretch; 
}

/* 3. SLIDER ALANI */
.intro--slider { 
    position: relative; 
    background: #fff; 
    border-radius: 12px; 
    border: 1px solid #f1f5f9; 
    padding: 30px; 
    overflow: hidden; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.02); 
}

.is--box { display: none; }
.is--box.show { display: block; animation: odeaFade 0.4s ease-out forwards; }
@keyframes odeaFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.is--inside { display: grid; grid-template-columns: 320px auto; gap: 20px; align-items: center; }

/* Progress Bar & Tabs */
.sc-timer-progress { margin: 20px 0; height: 6px; border-radius: 12px; background: #f1f5f9; position: relative; overflow: hidden; }
#odea-progress-fill { position: absolute; left: 0; top: 0; height: 100%; background: #f2712a; width: 0%; }

/* 4. DOMAIN SEARCH SECTION */
.domain-search-premium { 
    background: #fff; 
    border-radius: 12px; 
    border: 1px solid #f1f5f9; 
    padding: 60px 0; 
    margin: 40px 0; 
}

.search-wrap-stable { 
    max-width: 720px; 
    margin: 0 auto 40px; 
    background: #fff; 
    border: 1px solid #eee; 
    border-radius: 14px; 
    padding: 5px; 
    display: flex; 
    align-items: center; 
    box-shadow: 0 8px 25px rgba(0,0,0,0.03); 
}

/* 5. HİZMETLER (OWEB STYLE) */
.lephos-services { padding: 80px 0; background-color: #f8fafc; }

.s-item { 
    background: #fff;
    padding: 30px; 
    border: 1px solid #f1f5f9; 
    border-radius: 20px;
    transition: all 0.4s ease; 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.s-item:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); 
    border-color: #f2712a; 
}

/* Siyah VDS Kartı */
.s-dark { background: #1a1e26 !important; border-color: #2d343f; }
.s-dark .fs-18, .s-dark .fs-4 { color: #fff; }

/* Sol Taraf Adam Görseli */
.main--service { position: relative; height: 100%; min-height: 400px; }
.orange-card-bg { 
    background: #f2712a url('https://www.odeaweb.com/templates/oweb/image/line-path.webp') center/cover; 
    height: 100%; 
    border-radius: 24px; 
    z-index: 1; 
}
.service-men { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 110%; 
    z-index: 2; 
    pointer-events: none; 
}

/* 6. BUTONLAR VE İKONLAR */
.btn-main, .btn-orange { 
    background: #f2712a; 
    color: #fff !important; 
    font-weight: 800; 
    border-radius: 10px; 
    padding: 12px 25px; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    transition: 0.3s; 
    border: none;
    text-decoration: none;
    justify-content: center;
}

.btn-main:hover { background: #d95d1d; transform: scale(1.02); }

.btn-outline-main { 
    border: 1.5px solid #f2712a; 
    color: #f2712a !important; 
    font-weight: 700; 
    border-radius: 10px; 
    padding: 10px 20px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}

.btn-outline-main:hover { background: #f2712a; color: #fff !important; }

.s-item .icon { color: #f2712a; font-size: 24px; margin-bottom: 15px; }
.icon-vds { background: #f2712a; color: #fff; width: 45px; height: 45px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }

/* 7. MOBIL UYUMLULUK */
@media (max-width: 1200px) {
    .main--intro { grid-template-columns: 1fr; }
    .le-services-wrapper, .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .is--inside { grid-template-columns: 1fr; text-align: center; }
    .is--inside img { width: 200px; margin: 0 auto; }
    .le-services-wrapper, .services-grid { grid-template-columns: 1fr; }
}

    /* Ana Wrapper - Arka Plan Süslemeleri Burada */
    .lephos-full-wrapper {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        background: #13161c;
        padding: 40px 0;
        border-top: 4px solid #f2712a;
        overflow: hidden; /* Dışarı sarkan süsleri keser, scroll çıkarmaz */
        z-index: 1;
    }

    /* Sol Üst Köşe Süs Çizgileri */
    .lephos-full-wrapper::before {
        content: "";
        position: absolute;
        top: -50px;
        left: -50px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(242, 113, 42, 0.05) 0%, transparent 70%);
        border: 1px solid rgba(242, 113, 42, 0.03);
        border-radius: 50%;
        z-index: -1;
    }

    /* Sağ Alt Köşe Süs Çizgileri */
    .lephos-full-wrapper::after {
        content: "";
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(242, 113, 42, 0.02) 20px, rgba(242, 113, 42, 0.02) 21px);
        z-index: -1;
    }

    .lephos-inner {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
    }

    /* Arka Planda Büyük Silik Tırnak İkonu (Sol Üst) */
    .lephos-inner::before {
        content: "\f10d";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        top: -20px;
        left: -40px;
        font-size: 150px;
        color: rgba(242, 113, 42, 0.03);
        z-index: 0;
        pointer-events: none;
    }

    .slider-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 60px;
        position: relative;
        z-index: 2;
    }

    /* Navigasyon Butonları */
    .c-nav-btn {
        width: 55px;
        height: 55px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 50%;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .c-nav-btn:hover {
        background: #f2712a;
        border-color: #f2712a;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(242, 113, 42, 0.3);
    }

    /* Slider ve Kartlar */
    .main-carousel { overflow: visible !important; }
    .flickity-viewport { overflow: visible !important; }

    .testimonial-card {
        width: 380px;
        margin-right: 30px;
        background: #1c212a;
        border-radius: 28px;
        padding: 40px;
        border: 1px solid rgba(255,255,255,0.05);
        transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s, box-shadow 0.6s;
        will-change: transform;
        position: relative;
        z-index: 2;
    }

    /* Küçük Kart İçi Tırnak */
    .testimonial-card::after {
        content: "\f10e";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        top: 35px;
        right: 35px;
        font-size: 30px;
        color: rgba(242, 113, 42, 0.08);
    }

    .testimonial-card:hover {
        background: #232933;
        border-color: #f2712a;
        transform: translateY(-20px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.6);
        z-index: 10;
    }

    .user-img { 
        width: 65px; 
        height: 65px; 
        border-radius: 50%; 
        border: 2px solid #f2712a;
        padding: 3px;
        background: #13161c;
    }

    .comment-text {
        color: #a0aec0;
        font-size: 16px;
        line-height: 1.8;
        margin-top: 25px;
        font-style: italic;
    }

    @media (max-width: 768px) {
        .testimonial-card { width: 300px; padding: 30px; }
        .slider-header { flex-direction: column; gap: 20px; text-align: center; }
        .lephos-inner::before { display: none; }
    }
    

/* 1. GRID SİSTEMİ */
.main--intro { display: grid; grid-template-columns: 810px auto; gap: 16px; margin-top: 25px; align-items: stretch; }

/* 2. SLIDER ALANI */
.intro--slider { position: relative; background: #fff; border-radius: 12px; border: 1px solid #f1f5f9; padding: 20px; overflow: hidden; height: 100%; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.is--box { display: none; padding: 0 10px; height: 100%; }
.is--box.show { display: block; animation: odeaFade 0.4s ease-out forwards; }

@keyframes odeaFade { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.is--inside { display: grid; grid-template-columns: 320px auto; gap: 5px; align-items: center; height: 320px; }
.is--inside img { width: 320px; max-height: 320px; display: block; }

/* Yazı Nizamı */
.head .cl-primary { font-weight: 700; color: #f2712a; font-size: 13px; display: block; text-transform: uppercase; letter-spacing: 1.5px; }
.head h1 { font-family: "Gilroy", sans-serif !important; font-size: 34px; font-weight: 900; color: #282c3f; margin: 4px 0; letter-spacing: -1px; line-height: 1.05; }
.head p.text-soft { color: #6d7792; font-size: 15px; max-width: 420px; line-height: 1.35; margin-top: 5px; font-weight: 500; }

/* Özellikler Grid */
.odea-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 15px; }
.is--feature { display: flex; align-items: center; gap: 12px; padding: 10px 15px; background: #fff; border: 1px solid #f2f2f9; border-radius: 10px; height: 60px; }
.is--feature .icon { min-width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; color: #f2712a; background: rgba(242, 113, 42, 0.1); border-radius: 8px; font-size: 18px; }
.is--feature .text-main { font-weight: 700; color: #4a4e69; font-size: 14px; display: block; margin-bottom: 2px; }
.is--feature p { font-size: 12px; color: #94a3b8; margin: 0; font-weight: 500; }

.btn-main { background: linear-gradient(to right, #f2712a, #faa733) !important; color: #fff !important; padding: 14px; border-radius: 10px; font-weight: 800; font-size: 13px; text-transform: uppercase; border: none; display: flex; align-items: center; justify-content: center; gap: 8px; height: 60px; transition: 0.3s; box-shadow: 0 8px 15px rgba(242, 113, 42, 0.2); text-decoration: none; cursor: pointer; }

/* Progress & Tabs */
.sc-timer-progress { margin: 15px 0; height: 6px; border-radius: 12px; background: #f2f2f9; position: relative; overflow: hidden; }
.sc-timer-progress span { position: absolute; left: 0; top: 0; height: 100%; background: linear-gradient(to right, #f2712a, #faa733) !important; width: 0%; }

.sc--tabs { display: flex; align-items: center; gap: 10px; }
.sc--tabs .item { flex: 1; height: 44px; display: flex; justify-content: center; align-items: center; background: #f2f2f9; border-radius: 8px; cursor: pointer; font-size: 15px; font-weight: 800; color: #94a3b8; transition: 0.2s; letter-spacing: 0.5px; }
.sc--tabs .item.active { background: linear-gradient(to right, #f2712a, #faa733) !important; color: #fff !important; }

/* 4. DOMAIN SECTION */
.hero-search-wrapper { margin-top: 30px; }
.search-main-container {
    background: #1a1e25; 
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    z-index: 1;
}

.search-header-group span { color: #f2712a; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px; display: block; margin-bottom: 5px; }
.search-header-group h2 { font-family: "Gilroy", sans-serif !important; color: #fff; font-size: 34px; font-weight: 900; letter-spacing: -0.8px; margin: 0; line-height: 1.1 !important; }

.search-input-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 10; }
.search-input-inner input { width: 100%; height: 70px; border-radius: 12px; border: none; padding: 0 160px 0 25px; font-weight: 700; font-size: 17px; outline: none; background: #fff; color: #1e293b; font-family: "Gilroy", sans-serif; }
.search-input-inner button { position: absolute; right: 10px; top: 10px; bottom: 10px; background: #f2712a; color: #fff; border: none; border-radius: 8px; padding: 0 35px; font-weight: 800; text-transform: uppercase; cursor: pointer; font-size: 14px; transition: 0.3s; font-family: "Gilroy", sans-serif; }

.search-sub-navigation { display: flex; justify-content: center; margin-top: 25px; position: relative; z-index: 10; }
.search-sub-navigation a { font-size: 11px; font-weight: 800; color: #94a3b8; text-transform: uppercase; padding: 0 20px; border-right: 1px solid rgba(148, 163, 184, 0.2); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: 0.2s; }
.search-sub-navigation a:last-child { border-right: none; }
.search-sub-navigation a i { color: #f2712a; font-size: 14px; }

.extension-grid { display: flex; justify-content: center; gap: 12px; margin-top: 40px; position: relative; z-index: 10; }
.ext-card { background: #fff; padding: 12px 20px; border-radius: 10px; display: flex; align-items: center; gap: 10px; min-width: 175px; border: 1px solid #f1f5f9; }
.ext-card .name { font-weight: 900; font-size: 18px; color: #1e293b; letter-spacing: -0.5px; }
.ext-card .price { font-weight: 700; font-size: 13px; color: #f2712a; }
.is-featured-net { border: 1px dashed #f2712a !important; }

* {
    font-family: 'Gilroy', sans-serif !important;
}


/* --- Lepsor Paket Listesi Section --- */
.lepsor-pricing-section {
    background: #f2f2f9; 
    padding: 40px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: clip;
}

.lepsor-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Paket Satır Tasarımı */
.pricing-row-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-row {
    background: #fff;
    border-radius: 16px;
    padding: 20px 30px;
    display: grid;
    grid-template-columns: 60px 2fr 1fr 1fr 1fr 1fr 1.5fr 1.5fr;
    align-items: center;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.pricing-row:hover {
    transform: scale(1.01);
    border-color: #f2712a;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

/* Özellikler Arası Çizgi Detayı */
.p-spec {
    padding-left: 20px;
    border-left: 1px solid #f1f5f9; /* Özellikler arasına atılan çizgi */
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* İlk özellikten (p-name yanındaki) çizgiyi kaldıralım */
.p-name + .p-spec {
    border-left: none;
}

/* Yazı Detayları */
.p-name b { color: #282c3f; font-size: 16px; font-weight: 800; }
.p-spec b { color: #282c3f; font-size: 14px; font-weight: 800; }
.p-spec small { color: #94a3b8; font-size: 11px; font-weight: 500; text-transform: uppercase; }

/* Profesyonel Buton Tasarımı */
.p-btn-action {
    background: linear-gradient(135deg, #f2712a 0%, #faa733 100%);
    color: #fff !important;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* İkon ve metni ayırır */
    padding: 0 20px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s;
    overflow: hidden;
    position: relative;
}

.p-btn-action span {
    z-index: 2;
}

.p-btn-action i {
    background: rgba(255, 255, 255, 0.15);
    height: 100%;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -20px; /* Sağa yaslar */
    font-size: 16px;
    transition: 0.3s;
}

.p-btn-action:hover {
    box-shadow: 0 8px 20px rgba(242, 113, 42, 0.3);
    transform: translateY(-2px);
}

.p-btn-action:hover i {
    background: rgba(255, 255, 255, 0.25);
}

/* Mobilde çizgileri kaldıralım ki sıkışmasın */
@media (max-width: 1024px) {
    .p-spec { border-left: none; padding-left: 0; }
}

/* Lepsor Başlık Alanı Düzenlemesi */
.lepsor-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
}

/* Yan yana duran başlık grubu */
.lepsor-main-heading {
    display: flex;
    align-items: center; /* Yazıları dikeyde tam hizalar */
    justify-content: center;
    gap: 12px; /* Turuncu ve siyah yazı arasındaki boşluk */
    margin-bottom: 30px; /* Çizgi ile başlık arasındaki mesafe */
    position: relative;
    width: 100%;
}

/* Başlık Altı Soft Çizgi Tasarımı */
.lepsor-main-heading::after {
    content: "";
    position: absolute;
    bottom: -15px; /* Başlıktan aşağıya mesafe */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 650px; /* Çizginin uzunluğu */
    height: 1px;
    /* Soft geçişli turuncu çizgi */
    background: linear-gradient(to right, transparent 0%, rgba(242, 113, 42, 0.4) 15%, #f2712a 50%, rgba(242, 113, 42, 0.4) 85%, transparent 100%);
}

/* Ortadaki koyu parça */
.lepsor-main-heading::before {
    content: "";
    position: absolute;
    bottom: -18px; /* Çizginin tam üzerine biner */
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 6px;
    background: #282c3f;
    border-radius: 10px;
    z-index: 2;
}

/* Alt açıklama metni */
.lepsor-sub-text {
    color: #6d7792;
    font-size: 15px;
    margin-top: 5px;
}

/* Kart Efektleri */
.effect-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.effect-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(242, 113, 42, 0.1) !important;
    border-color: #f2712a !important;
}

/* Koyu Kart Hover Düzeltmesi */
.effect-card.dark-mode:hover {
    border-color: #f2712a !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Çizgili Buton Hover (Sorgula/İncele) */
.le-btn-outline:hover {
    background-color: #f2712a !important;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(242, 113, 42, 0.3);
}

/* Dolu Buton Hover (Hemen Al) */
.le-btn-solid:hover {
    background-color: #ffffff !important;
    color: #f2712a !important;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

    /* 1. Kapsayıcıya ve genel metin elemanlarına fontu uygula */
    .gilroy-wrapper {
        font-family: 'Gilroy', sans-serif !important;
    }
    
    /* 2. Tüm başlık ve metin etiketlerini tek tek hedefleyip Gilroy yap */
    .gilroy-wrapper h1, 
    .gilroy-wrapper h2, 
    .gilroy-wrapper h3, 
    .gilroy-wrapper h4, 
    .gilroy-wrapper h5, 
    .gilroy-wrapper h6,
    .gilroy-wrapper p,
    .gilroy-wrapper span,
    .gilroy-wrapper a,
    .gilroy-wrapper button,
    .gilroy-wrapper input,
    .gilroy-wrapper div,
    .gilroy-wrapper small,
    .gilroy-wrapper b,
    .gilroy-wrapper strong {
        font-family: 'Gilroy', sans-serif !important;
    }

    /* 3. KRİTİK DÜZELTME: İkonları (i tagları ve fa classları) Gilroy kapsamından çıkar */
    /* İkonların kendi font ailesini (FontAwesome) kullanmasını zorunlu kıl */
    .gilroy-wrapper i, 
    .gilroy-wrapper .fas, 
    .gilroy-wrapper .far, 
    .gilroy-wrapper .fab, 
    .gilroy-wrapper .fa {
        font-family: "Font Awesome 5 Free", "Font Awesome 5 Pro", "Font Awesome 5 Brands", FontAwesome !important;
    }

    /* Hover efektleri ve kart düzenlemeleri */
    .stable-tld-card:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 15px 30px rgba(242, 113, 42, 0.1) !important;
        border-color: #f2712a !important;
    }
    .special-card-tr:hover {
        box-shadow: 0 15px 30px rgba(227, 10, 23, 0.2) !important;
        border-color: #e30a17 !important;
    }
    @media (max-width: 1100px) {
        .domain-grid-container { grid-template-columns: repeat(3, 1fr) !important; }
    }
    @media (max-width: 768px) {
        .domain-grid-container { grid-template-columns: repeat(2, 1fr) !important; }
    }
    @media (max-width: 480px) {
        .domain-grid-container { grid-template-columns: 1fr !important; }
    }
    
    /* Sayfa taşmasını engelle */
    html, body { overflow-x: hidden !important; }