/* =========================================
   l00t — Header
   Sticky · Şeffaf → Scroll ile koyulaşan
   ========================================= */

.l00t-navbar {
    position: sticky;
    top: var(--wp-admin--admin-bar--height, 0px);
    z-index: 1000;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    width: 100%;
    height: var(--l00t-header-height, 72px);
    padding: 0 3rem;

    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;

    background: rgba(5, 5, 5, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    border-bottom: 1px solid rgba(200, 210, 255, 0.06);
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        backdrop-filter 0.35s ease;
}

.l00t-navbar.is-scrolled {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom-color: rgba(200, 210, 255, 0.15);
}

/* =========================================
   Nav grupları
   ========================================= */

.l00t-nav-left-wrap,
.l00t-nav-right-wrap {
    display: flex;
    align-items: center;
    min-width: 0;
}
.l00t-nav-left-wrap  { justify-content: flex-start; }
.l00t-nav-right-wrap { justify-content: flex-end; }

.l00t-nav-left,
.l00t-nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.l00t-nav-left  { justify-content: flex-start; }
.l00t-nav-right { justify-content: flex-end; }

.l00t-nav-left li,
.l00t-nav-right li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.l00t-navbar a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    white-space: nowrap;
}
.l00t-navbar a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(200, 210, 255, 0.6);
}

/* Menü link'lerinin içindeki BUY NOW linkini özel biçimlendir */
.l00t-nav-right .l00t-buy-btn,
.l00t-nav-right-wrap .l00t-buy-btn {
    color: #fff !important;
}

/* =========================================
   Orta alan — müzik butonu ve l00t linki
   ========================================= */

.l00t-nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    min-height: 40px;
}

/* Ana sayfa: müzik görünür, link gizli */
body.l00t-has-hero .l00t-music-btn { display: flex; }
body.l00t-has-hero .l00t-nav-home  { display: none; }

/* İç sayfalar: müzik gizli, link görünür */
body:not(.l00t-has-hero) .l00t-music-btn { display: none; }
body:not(.l00t-has-hero) .l00t-nav-home  { display: inline-flex; }

/* l00t ana sayfa linki (iç sayfalarda) */
.l00t-nav-home {
    font-family: 'Orbitron', 'Rajdhani', system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: lowercase;
    text-decoration: none;
    padding: 0.5rem 1rem;

    background: linear-gradient(180deg, #ffffff 0%, #c0c0d0 50%, #505060 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    filter: drop-shadow(0 0 10px rgba(200, 210, 255, 0.3));
    transition: filter 0.3s ease, transform 0.3s ease;
    align-items: center;
}
.l00t-nav-home:hover {
    filter: drop-shadow(0 0 18px rgba(200, 210, 255, 0.75));
    transform: scale(1.05);
    color: transparent;
}

/* =========================================
   Müzik butonu
   ========================================= */

.l00t-music-btn {
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;

    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    padding: 0;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}
.l00t-music-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(200, 210, 255, 0.8);
    box-shadow: 0 0 15px rgba(200, 210, 255, 0.4);
}
.l00t-music-btn svg {
    width: 16px;
    height: 16px;
}

.l00t-music-btn .l00t-music-pause { display: none; }
.l00t-music-btn .l00t-music-play  { display: block; }
.l00t-music-btn.playing .l00t-music-pause { display: block; }
.l00t-music-btn.playing .l00t-music-play  { display: none; }

/* =========================================
   BUY NOW butonu
   ========================================= */

.l00t-buy-btn {
    position: relative;
    padding: 0.5rem 0;
    color: #fff !important;
}
.l00t-buy-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: rgba(200, 210, 255, 0.85);
    transition: width 0.3s ease;
}
.l00t-buy-btn:hover::after { width: 100%; }
.l00t-buy-btn:hover {
    text-shadow: 0 0 15px rgba(200, 210, 255, 0.8);
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 1024px) {
    .l00t-navbar { padding: 0 2rem; }
}

@media (max-width: 768px) {
    .l00t-navbar {
        padding: 0 1rem;
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
    .l00t-nav-left,
    .l00t-nav-right { gap: 1rem; }
    .l00t-music-btn { width: 34px; height: 34px; }
    .l00t-music-btn svg { width: 14px; height: 14px; }
    .l00t-nav-home { font-size: 1.05rem; }
}

@media (max-width: 480px) {
    .l00t-nav-left { display: none; }
    .l00t-nav-right { gap: 0.75rem; }
}