/* ===== ALTIN RENK TASARIM ===== */
:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --gold: #c9a84c;
    --gold-dark: #b8943e;
    --gold-light: #e8d5a3;
    --bg: #ffffff;
    --card-bg: #ffffff;
    --text: #0f172a;
    --text-light: #64748b;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #1a2a3a 0%, #2a3a4a 100%);
    padding: 4rem 0;
    border-radius: 0 0 3rem 3rem;
    color: #fff;
    text-align: center;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.hero .highlight { color: #c9a84c; }
.hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* GRID */
.domain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* KARTLAR - ALTIN ÇERÇEVE */
.domain-card {
position: relative; overflow: hidden;
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    border: 2px solid #c9a84c;
    transition: all 0.3s ease;
    position: relative;
}
.domain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(201, 168, 76, 0.15);
    border-color: #b8943e;
}
.domain-card .domain-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.domain-card .domain-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c9a84c;
    margin-bottom: 1rem;
}
.domain-card .domain-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: #64748b;
}
.domain-card .btn-offer {
    background: #c9a84c;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}
.domain-card .btn-offer:hover {
    background: #b8943e;
    transform: scale(1.02);
}

/* LİSTE */
.domain-list .domain-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border-radius: 1rem;
    border: 2px solid #c9a84c;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}
.domain-list .domain-item:hover {
    border-color: #b8943e;
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.10);
}
.domain-list .btn-offer {
    background: #c9a84c;
    color: #ffffff;
    padding: 0.4rem 1.25rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.domain-list .btn-offer:hover {
    background: #b8943e;
}

/* BUTONLAR (Genel) */
.btn-primary {
    background: #c9a84c;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    border: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-primary:hover {
    background: #b8943e;
    transform: scale(1.02);
}

.btn-outline {
    background: transparent;
    color: #0f172a;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    border: 2px solid #c9a84c;
    display: inline-block;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: #c9a84c;
    color: #fff;
}

/* GÖRÜNÜM DEĞİŞTİRİCİ */
.view-toggle {
    display: inline-flex;
    gap: 0.5rem;
    background: #f1f5f9;
    padding: 0.25rem;
    border-radius: 40px;
}
.view-toggle a {
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: #64748b;
    text-decoration: none;
}
.view-toggle a.active {
    background: #c9a84c;
    color: #fff;
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}
.view-toggle a:hover:not(.active) {
    background: #e2e8f0;
}

/* MOBİL */
@media (max-width: 1024px) {
    .domain-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 2.5rem; }
}
@media (max-width: 640px) {
    .domain-grid { grid-template-columns: 1fr; }
    .hero { padding: 2.5rem 0; }
    .hero h1 { font-size: 2rem; }
}

/* MOBİL İYİLEŞTİRMELER */
@media (max-width: 640px) {
    .domain-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .domain-card {
position: relative; overflow: hidden;
        padding: 1rem !important;
    }
    .domain-card .domain-name {
        font-size: 1rem !important;
    }
    .domain-card .domain-price {
        font-size: 1.25rem !important;
    }
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .hero h1 {
        font-size: 2rem !important;
    }
    .hero p {
        font-size: 1rem !important;
    }
    .btn-primary {
        padding: 0.6rem 1.5rem !important;
        font-size: 0.875rem !important;
    }
}

/* MOBİL İYİLEŞTİRMELER */
@media (max-width: 640px) {
    .domain-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 0.5rem !important;
    }
    .domain-card {
position: relative; overflow: hidden;
        padding: 1rem !important;
        margin: 0 !important;
    }
    .domain-card .domain-name {
        font-size: 1rem !important;
        padding-left: 0 !important;
    }
    .domain-card .domain-price {
        font-size: 1.25rem !important;
        padding-left: 0 !important;
    }
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .domain-list .domain-item {
        padding: 0.75rem 1rem !important;
        margin: 0 0 0.5rem 0 !important;
    }
}

/* MOBİL PADDING DÜZELTMESİ */
@media (max-width: 640px) {
    /* Container'a sol-sağ padding ekle */
    .container {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
    
    /* Domain kartlarına iç boşluk ekle */
    .domain-card {
position: relative; overflow: hidden;
        padding: 1.25rem !important;
    }
    
    /* Domain listesine de padding ekle */
    .domain-list .domain-item {
        padding: 0.75rem 1rem !important;
    }
    
    /* Hero bölümü padding */
    .hero {
        padding: 2.5rem 1.25rem !important;
    }
    
    /* Başlık boyutları */
    .hero h1 {
        font-size: 1.75rem !important;
    }
}

/* STICKY MENÜ - ÜSTTE SABİT */
.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
    background: #ffffff !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
    border-bottom: 1px solid #eef2f6 !important;
}

/* Menü sabitlenince içeriğin kaybolmaması için body'ye üst padding ekle */
body {
    padding-top: 0 !important;
}

/* Mobil menüde logo ve linkler arası boşluk */
@media (max-width: 640px) {
    .site-header .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .site-logo {
        font-size: 1.25rem !important;
    }
    .nav-links {
        gap: 1rem !important;
    }
    .nav-links a {
        font-size: 0.8rem !important;
    }
}

/* HERO - YENİ ARKA PLAN (Hafif gradient + görsel) */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 !important;
}

/* Hero üzerine hafif bir desen (domainlerle ilgili soyut çizgiler) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(45deg, 
            rgba(255,255,255,0.02) 0px, 
            rgba(255,255,255,0.02) 2px,
            transparent 2px,
            transparent 8px
        );
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Hero içindeki yazıların gölgesini artır */
.hero h1 {
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero .highlight {
    color: #ef4444 !important;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero p {
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Butonlara parlaklık efekti */
.hero .btn-primary {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.hero .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* Mobilde hero padding */
@media (max-width: 640px) {
    .hero {
        padding: 2.5rem 0 !important;
    }
    .hero h1 {
        font-size: 1.75rem !important;
    }
}

/* HERO YENİ TASARIM */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    padding: 4rem 0 !important;
    border-radius: 0 0 3rem 3rem !important;
    color: #0f172a !important;
    border-bottom: 1px solid #e2e8f0;
}
.hero h1 {
    color: #0f172a !important;
}
.hero .highlight {
    color: #ef4444 !important;
}
.hero p {
    color: #475569 !important;
}
.hero .btn-primary {
    background: #ef4444 !important;
    color: #0f172a !important;
}
.hero .btn-primary:hover {
    background: #C5A028 !important;
}

/* HERO YENİ TASARIM */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    padding: 4rem 0 !important;
    border-radius: 0 0 3rem 3rem !important;
    color: #0f172a !important;
    border-bottom: 1px solid #e2e8f0;
}
.hero h1 {
    color: #0f172a !important;
}
.hero .highlight {
    color: #ef4444 !important;
}
.hero p {
    color: #475569 !important;
}
.hero .btn-primary {
    background: #ef4444 !important;
    color: #0f172a !important;
}
.hero .btn-primary:hover {
    background: #C5A028 !important;
}

/* ===== KAYAN YAZI + SABİT BAŞLIK ===== */
.starred-marquee {
    background: #f8fafc;
    border-bottom: 1px solid #eef2f6;
    padding: 0.5rem 0;
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.marquee-label {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.9rem;
    color: #0f172a;
    background: #ef4444;
    color: #ffffff;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0f172a;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Mobil uyum */
@media (max-width: 640px) {
    .marquee-label {
        font-size: 0.7rem;
        padding: 0.2rem 0.75rem;
    }
    .marquee-content {
        font-size: 0.75rem;
    }
    .marquee-wrapper {
        gap: 1rem;
        padding: 0 1rem;
    }
}

/* ===== EDITÖR SEÇİMİ ROZETİ ===== */
.domain-card {
position: relative; overflow: hidden;
    position: relative;
    overflow: hidden;
}
    position: absolute;
    top: 12px;
    right: -18px;
    background: #ef4444;
    color: #fff;
    padding: 0.2rem 2.2rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(35deg);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    z-index: 10;
    white-space: nowrap;
    border: 1px solid #dc2626;
}
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ef4444, #f5d742);
    z-index: -1;
}

/* Liste görünümü için rozet */
.domain-item {
    position: relative;
}
    background: #ef4444;
    color: #fff;
    padding: 0.15rem 0.75rem;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 30px;
    margin-left: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-block;
    border: 1px solid #dc2626;
}

/* Mobilde rozet küçülsün */
@media (max-width: 640px) {
        font-size: 0.5rem;
        padding: 0.15rem 1.5rem;
        top: 8px;
        right: -12px;
        transform: rotate(30deg);
    }
        font-size: 0.5rem;
        padding: 0.1rem 0.5rem;
    }
}

/* ===== EDITÖR SEÇİMİ ROZETİ ===== */
.domain-card {
    position: relative;
    overflow: hidden;
}
    position: absolute;
    top: 12px;
    right: -18px;
    background: #ef4444;
    color: #fff;
    padding: 0.2rem 2.2rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(35deg);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    z-index: 10;
    white-space: nowrap;
    border: 1px solid #dc2626;
}
    background: #ef4444;
    color: #fff;
    padding: 0.15rem 0.75rem;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 30px;
    margin-left: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-block;
    border: 1px solid #dc2626;
}
@media (max-width: 640px) {
        font-size: 0.5rem;
        padding: 0.15rem 1.5rem;
        top: 8px;
        right: -12px;
        transform: rotate(30deg);
    }
        font-size: 0.5rem;
        padding: 0.1rem 0.5rem;
    }
}

/* ===== ÇAPRAZ PREMIUM ŞERİDİ ===== */
.domain-card {
    position: relative;
    overflow: hidden;
}
.domain-card .premium-ribbon {
    position: absolute;
    top: 18px;
    right: -35px;
    background: #ef4444;
    color: #fff;
    padding: 0.2rem 3rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(35deg);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    z-index: 10;
    white-space: nowrap;
    border: 1px solid #dc2626;
    pointer-events: none;
}
/* Alternatif renk (kırmızı) istersen #ef4444 yerine #ef4444 kullan */
.domain-card .premium-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ef4444, #f5d742);
    z-index: -1;
}
/* Liste görünümü için minik etiket */
.domain-item .premium-badge {
    background: #ef4444;
    color: #fff;
    padding: 0.1rem 0.6rem;
    font-size: 0.5rem;
    font-weight: 700;
    border-radius: 30px;
    margin-left: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-block;
    border: 1px solid #dc2626;
}
@media (max-width: 640px) {
    .domain-card .premium-ribbon {
        font-size: 0.5rem;
        padding: 0.15rem 2rem;
        top: 12px;
        right: -28px;
        transform: rotate(30deg);
    }
    .domain-item .premium-badge {
        font-size: 0.4rem;
        padding: 0.05rem 0.4rem;
    }
}
/* ===== PREMIUM ŞERİT ===== */
.domain-card {
    position: relative;
    overflow: hidden;
}
.premium-ribbon {
    position: absolute;
    top: 18px;
    right: -30px;
    background: #ef4444;
    color: #fff;
    padding: 0.2rem 2.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(35deg);
    box-shadow: 0 4px 12px rgba(212,175,55,0.4);
    z-index: 10;
    white-space: nowrap;
    border: 1px solid #dc2626;
    pointer-events: none;
}
/* ===== ÇAPRAZ PREMIUM ŞERİDİ ===== */
.domain-card {
    position: relative;
    overflow: hidden;
}
.domain-card .premium-ribbon {
    position: absolute;
    top: 18px;
    right: -35px;
    background: #D4AF37;
    color: #fff;
    padding: 0.2rem 3rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(35deg);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    z-index: 10;
    white-space: nowrap;
    border: 1px solid #c5a028;
    pointer-events: none;
}
.domain-item .premium-badge {
    background: #D4AF37;
    color: #fff;
    padding: 0.1rem 0.6rem;
    font-size: 0.5rem;
    font-weight: 700;
    border-radius: 30px;
    margin-left: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-block;
    border: 1px solid #c5a028;
}
@media (max-width: 640px) {
    .domain-card .premium-ribbon {
        font-size: 0.5rem;
        padding: 0.15rem 2rem;
        top: 12px;
        right: -28px;
        transform: rotate(30deg);
    }
    .domain-item .premium-badge {
        font-size: 0.4rem;
        padding: 0.05rem 0.4rem;
    }
}

/* ===== PREMIUM ŞERİT ===== */
.domain-card{position:relative;overflow:hidden}
.domain-card .premium-ribbon{position:absolute;top:18px;right:-35px;background:#D4AF37;color:#fff;padding:0.2rem 3rem;font-size:0.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.5px;transform:rotate(35deg);box-shadow:0 4px 12px rgba(212,175,55,.4);z-index:10;white-space:nowrap;border:1px solid #c5a028;pointer-events:none}
.domain-item .premium-badge{background:#D4AF37;color:#fff;padding:0.1rem .6rem;font-size:.5rem;font-weight:700;border-radius:30px;margin-left:.75rem;text-transform:uppercase;letter-spacing:.3px;display:inline-block;border:1px solid #c5a028}
@media(max-width:640px){.domain-card .premium-ribbon{font-size:.5rem;padding:.15rem 2rem;top:12px;right:-28px;transform:rotate(30deg)}.domain-item .premium-badge{font-size:.4rem;padding:.05rem .4rem}}
