:root {
    --bg-dark: #0b0a0a;
    --panel-dark: #151515;
    --accent-gold: #ff9100;
    --accent-gradient: linear-gradient(to right, #ff9100, #ff6a00);
    --border-color: #222222;
    --text-muted: #888888;
}

body { 
    background-color: var(--bg-dark); 
    color: #f5f5f5; 
    font-family: 'Inter', sans-serif;
    margin: 0;
    scroll-behavior: smooth;
}

/* Navigasyon */
.nav-discord-btn {
    height: 40px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    border: 1px solid #ff9100;
    color: #ff9100;
    font-weight: 800;
    transition: .3s;
}

.nav-discord-btn:hover {
    background:#ff9100;
    color:black;
}

/* Kartlar ve Butonlar */
.market-card {
    background-color: var(--panel-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.market-card:hover { border-color: var(--accent-gold); transform: translateY(-5px); }

.btn-buy {
    border: 1px solid #444;
    color: #fff;
    padding: 10px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    width: 100%;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-buy:hover { background-color: var(--accent-gold); color: black; border-color: var(--accent-gold); }

/* Giriş Sayfası Özel Butonları */
.btn-main-orange { 
    background: var(--accent-gradient); 
    color: black; 
    font-weight: 800;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Başlıklar */
.system-subtitle { font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.popular-title { font-size: 42px; font-weight: 900; margin-top: 5px; letter-spacing: -1px; }

/* Arama Kutusu Stili */
.search-input {
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    padding: 10px 20px;
    border-radius: 14px;
    outline: none;
    width: 100%;
    max-width: 300px;
}
.search-input:focus { border-color: #ff9100; }

.nav-sticky {
    position: fixed; /* Sayfaya sabitler */
    top: 0;         /* En tepeye yapıştırır */
    left: 0;
    width: 100%;    /* Tam genişlik sağlar */
    z-index: 1000;  /* Diğer içeriklerin (slider vs.) üstünde kalmasını sağlar */
    backdrop-filter: blur(10px); /* Arka planı hafif şeffaf ve buğulu yapar, çok klas durur */
    background-color: rgba(15, 15, 15, 0.9); /* Hafif şeffaf siyah */
}

/* Navigasyon sabitlendiği için içeriğin altında kalmaması için body'ye boşluk veriyoruz */
body {
    padding-top: 80px; /* Navigasyonun yüksekliği kadar bir boşluk */
}

/* Ekinoks2 Tarzı Nabız Animasyonu */
/* Genel Link Yapısı */
.nav-text-adj {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px !important;
    height: 38px; /* Yüksekliği sabitledik, böylece kutu büyümez */
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 1;
    /* Aşağıdaki değerle butonu ve yazıyı milimetrik aşağı indirebilirsin */
    margin-top: 5px; 
}

/* Aktif (Turuncu) Buton */
@keyframes registerButtonPulse {
    0% {
        transform: scale(1);
        box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 15px 0px, rgba(239, 160, 29, 0) 0px 0px 0px 0px;
    }
    50% {
        transform: scale(1.03);
        box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 15px 0px, rgba(239, 160, 29, 0.2) 0px 0px 0px 10px;
    }
    100% {
        transform: scale(1);
        box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 15px 0px, rgba(239, 160, 29, 0) 0px 0px 0px 0px;
    }
}

/* Aktif Sayfa Linki Stili */
.nav-active {
    color: #000 !important; /* Yazı siyah olur çünkü zemin turuncu */
    background: var(--accent-gradient); /* Senin mevcut gradyanın */
    animation: registerButtonPulse 2s infinite; /* Sürekli atan nabız efekti */
    padding: 8px 16px !important; /* Biraz dolgu ekleyince buton gibi durur */
    border-radius: 14px;
    display: inline-block;
}

/* Üzerine gelince kayan arka plan (Aktif olmayanlar için) */
.nav-text-adj:not(.nav-active)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.5, 1, 0.89, 1);
    border-radius: 14px;
}

.nav-text-adj:not(.nav-active):hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-text-adj:not(.nav-active):hover {
    color: #000 !important;
}