/* === GENEL === */

:root {
    --bg: #05060a;
    --bg-alt: #10121a;
    --card: #151824;
    --accent: #28c2ff;
    --accent-soft: rgba(40, 194, 255, 0.15);
    --text: #f5f5f5;
    --muted: #c1c1c1;
    --border: #262a36;
    --danger: #ff4b6a;
    --radius: 1rem;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.5);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #1b2540 0, #05060a 50%, #020308 100%);
    color: var(--text);
    line-height: 1.6;
}

/* ==========================================================================
   HEADER & NAV
   ========================================================================== */

header {
    background: rgba(5, 6, 10, 0.9);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.container {
    width: min(1120px, 100% - 2.5rem);
    margin-inline: auto;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.75rem;
}

.logo,
.logo-footer {
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding-block: 0.3rem;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--danger));
    transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--text);
}

/* Mobile nav toggle */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin-block: 4px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ==========================================================================
   SECTIONS & LAYOUT
   ========================================================================== */

.section {
    padding-block: 3.5rem;
}

.section-alt {
    padding-block: 3.5rem;
    background: radial-gradient(circle at top left, rgba(40, 194, 255, 0.09), transparent 55%);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h1,
.section-header h2 {
    margin-bottom: 0.4rem;
}

.section-header p {
    color: var(--muted);
    max-width: 600px;
    margin-inline: auto;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

p {
    margin: 0 0 1rem;
}

/* TWO COLUMN */

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    align-items: flex-start;
}

/* HERO */

.hero {
    padding-block: 3.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.1rem, 3vw, 2.6rem);
    margin-bottom: 0.75rem;
}

.hero-text p {
    color: var(--muted);
    max-width: 32rem;
}

.hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-meta {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-image-wrapper {
    position: relative;
    justify-self: center;
}

.hero-image {
    display: block;
    width: min(360px, 80vw);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: 999px;
    background: conic-gradient(from 120deg, var(--accent), var(--danger), #7f5dff, var(--accent));
    opacity: 0.35;
    filter: blur(18px);
    z-index: -1;
}

/* CARDS */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.card {
    background: linear-gradient(145deg, rgba(10, 12, 20, 0.97), rgba(10, 15, 30, 0.97));
    border-radius: var(--radius);
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.6);
}

.track-card h3 {
    margin-top: 0;
    margin-bottom: 0.35rem;
}

.tagline {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.meta-list li {
    font-size: 0.9rem;
    color: var(--muted);
    padding-block: 0.15rem;
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* BLOG */

.blog-list {
    display: grid;
    gap: 1.5rem;
}

.blog-card h2 {
    margin-top: 0;
}

.blog-meta {
    color: var(--muted);
    font-size: 0.9rem;
}

/* INFO BOX / TIMELINE */

.info-box {
    background: rgba(9, 12, 22, 0.95);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.timeline ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.timeline li {
    margin-bottom: 1.2rem;
}

/* CONTACT */

.contact-layout {
    align-items: stretch;
}

.contact-form {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.contact-form label {
    font-size: 0.9rem;
    display: grid;
    gap: 0.25rem;
}

input[type="text"],
input[type="email"],
textarea {
    background: rgba(4, 6, 12, 0.9);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    padding: 0.65rem 0.8rem;
    color: var(--text);
    font: inherit;
}

input:focus,
textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.form-status {
    font-size: 0.85rem;
    color: var(--muted);
    min-height: 1rem;
}

/* HIGHLIGHTS & STREAMING */

.highlights-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight {
    background: rgba(11, 14, 24, 0.95);
    border-radius: var(--radius);
    padding: 1.25rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.streaming-section {
    margin-top: 2.5rem;
}

.pill-row {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 0;
}

/* PILL / BADGE */

.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.25rem 0.8rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(40, 194, 255, 0.45);
}

.pill.secondary {
    background: rgba(255, 75, 106, 0.12);
    color: #ff9bb1;
    border-color: rgba(255, 75, 106, 0.6);
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.55rem 1.2rem;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    background: transparent;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn.primary {
    background: linear-gradient(90deg, var(--accent), var(--danger));
    border-color: transparent;
}

.btn.ghost {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(5, 6, 10, 0.4);
}

.btn.small {
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}

/* FOOTER */

footer {
    margin-top: 3rem;
    background: #05060a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 32px 0 16px;
    margin-top: 40px;
    background: #05060a; /* senin tema rengine yakın tut */
}

/* Üst kısım: 3 kolon */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr;  /* SOL geniş, SAĞ biraz dar */
    gap: 60px;
    align-items: start;
}


.footer-col {
    min-width: 180px;
}

/* Logo ve metin */
.logo-footer {
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4fd1ff;
    margin-bottom: 8px;
}

.footer-text {
    color: #d4d4d4;
    font-size: 0.95rem;
}

/* Başlıklar */
.footer-heading {
    font-weight: 600;
    margin-bottom: 10px;
    color: #f5f5f5;
}

/* Glow’lu ikonlar */
.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}
.footer-middle {
    display: flex;
    gap: 190px;     /* Sosyal Medya ve Bağlantılar arası boşluk */
    align-items: flex-start;
}

.footer-block {
    min-width: 150px;
}

.footer-social a {
    font-size: 1.8rem;
    color: #dcdcdc;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.35);
    opacity: 0.9;
    transition: 0.25s ease-in-out;
}

.footer-social a:hover {
    color: #ffffff;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.9),
                 0 0 24px rgba(255, 255, 255, 0.6);
    opacity: 1;
    transform: translateY(-2px);
}

/* Bağlantılar listesi */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #d0d0d0;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Alt satır copyright */
.footer-bottom {
    margin-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 10px 0;
    font-size: 0.8rem;
    color: #a3a3a3;
    text-align: center;   /* ortala */
}
/* === AUDIO SPECTRUM YAN ÇUBUKLAR === */

.spectrum-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;           /* Her şeyin arkasında */
}

.spectrum-canvas {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;          /* Sağ/sol boşluk genişliği */
    opacity: 0.8;
    filter: drop-shadow(0 0 16px rgba(120, 220, 255, 0.9));
}

#left-spectrum {
    left: 0;
}

#right-spectrum {
    right: 0;
    transform: scaleX(-1); /* Sağ tarafı aynala */
}

/* Mobile’da kapatalım, yer kaplamasın */
@media (max-width: 900px) {
    .spectrum-layer {
        display: none;
    }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 860px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
    }

    .hero-image-wrapper {
        order: -1;
        margin-bottom: 1.5rem;
    }

    .two-column {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        inset-inline: 0;
        top: 100%;
        background: #05060a;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 1.25rem 1rem;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

   nav.nav-open .nav-links {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
}

    

    .nav-links li {
        padding-block: 0.3rem;
    }

    .hero {
        padding-top: 2.5rem;
    }
}
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-switcher .lang {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    padding: 4px 10px;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lang-switcher .lang:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

.lang-switcher .lang:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

/* DİL SEÇİCİ */

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 1.25rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lang-switcher span {
    color: var(--muted);
    opacity: 0.7;
}

.lang-link {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--muted);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.lang-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: #ffffff;
}

.lang-active {
    background: linear-gradient(90deg, var(--accent), var(--danger));
    color: #ffffff;
    border-color: transparent;
}

/* NAV GENEL */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-container nav {
    display: flex;
    align-items: center;
}

/* DİL SEÇİCİ – TR | EN */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.lang-switcher span {
    color: var(--muted);
    opacity: 0.7;
}

.lang-link {
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.lang-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: #ffffff;
}

.lang-active {
    background: linear-gradient(90deg, var(--accent), var(--danger));
    color: #ffffff;
    border-color: transparent;
}

/* Mobilde çok sıkıştırmasın istersen: */
@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
        margin-top: 0.75rem;
    }
}
/* --- MUSIC TABS --- */

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tab-btn {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #f5f5f5;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-1px);
}

.tab-btn.active {
    background: linear-gradient(90deg, #4bb5ff, #ff5f91);
    border-color: transparent;
    color: #0b0c10;
    font-weight: 600;
}

.tab-panels {
    margin-top: 0.5rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-intro {
    max-width: 640px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Responsive YouTube embed */
.yt-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    background: #000;
}

.yt-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Placeholder kutuları (yakında bölümleri) */
.placeholder-box {
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    padding: 1.25rem 1.5rem;
    background: radial-gradient(circle at top left,
    rgba(75, 181, 255, 0.12),
    rgba(0, 0, 0, 0.7));
    font-size: 0.9rem;
    max-width: 640px;
}
/* --- TRACK SLIDER --- */

.slider-wrapper {
    position: relative;
    margin-bottom: 2.5rem;
}

.track-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 0 0.75rem;
    -webkit-overflow-scrolling: touch;
}

/* Kartlar yatayda düzgün görünsün */
.track-slider .card {
    min-width: min(340px, 85vw);
    scroll-snap-align: start;
}

/* Scrollbar'ı biraz saklayalım */
.track-slider::-webkit-scrollbar {
    height: 6px;
}
.track-slider::-webkit-scrollbar-track {
    background: transparent;
}
.track-slider::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
}

/* Ok butonları */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #0b0c10;
    background: linear-gradient(135deg, #4bb5ff, #ff5f91);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
}

.slider-btn.prev {
    left: -0.25rem;
}

.slider-btn.next {
    right: -0.25rem;
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.97);
}

/* Mobilde oklar çok göze batmasın */


    .slider-btn.prev {
        left: 0.15rem;
    }
    .slider-btn.next {
        right: 0.15rem;
    }
}
// Mobil menü toggle
const navToggle = document.querySelector('.nav-toggle');
const nav = document.querySelector('nav');

if (navToggle && nav) {
    navToggle.addEventListener('click', () => {
        nav.classList.toggle('open');
    });
}

// Footer yıl
const yearSpan = document.getElementById('year');
if (yearSpan) {
    yearSpan.textContent = new Date().getFullYear();
}

// Track sekmeleri (TR / EN, Original / Covers)
const tabButtons = document.querySelectorAll('.track-tab');
const tabPanels = document.querySelectorAll('.tab-panel');

tabButtons.forEach(button => {
    button.addEventListener('click', () => {
        const targetId = button.getAttribute('data-tab');
        if (!targetId) return;

        tabButtons.forEach(btn => btn.classList.remove('active'));
        tabPanels.forEach(panel => panel.classList.remove('active'));

        button.classList.add('active');
        const panel = document.getElementById(targetId);
        if (panel) {
            panel.classList.add('active');
        }
    });
});

// Yatay slider kontrolleri
const sliderControls = document.querySelectorAll('.slider-controls');

sliderControls.forEach(control => {
    const targetId = control.getAttribute('data-target');
    if (!targetId) return;

    const slider = document.getElementById(targetId);
    if (!slider) return;

    const prevBtn = control.querySelector('.prev');
    const nextBtn = control.querySelector('.next');

    const scrollAmount = 320;

    if (prevBtn) {
        prevBtn.addEventListener('click', () => {
            slider.scrollBy({
                left: -scrollAmount,
                behavior: 'smooth'
            });
        });
    }

    if (nextBtn) {
        nextBtn.addEventListener('click', () => {
            slider.scrollBy({
                left: scrollAmount,
                behavior: 'smooth'
            });
        });
    }
});
/* === ORİJİNAL ŞARKI EMBED SLIDER === */

.song-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
}

.song-card {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2rem;
    padding: 1.8rem 1.9rem;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(10, 12, 20, 0.97), rgba(10, 15, 30, 0.97));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
}

.song-info h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
}

.song-info p {
    margin-bottom: 0.7rem;
}

.song-meta {
    font-size: 0.9rem;
    color: var(--muted);
}

.song-buttons {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.song-buttons .btn {
    font-size: 0.85rem;
    padding-inline: 1rem;
}

.song-video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.song-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
    background: #000;
}

.song-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* slider okları bu kart için kullanılacak */
.song-prev,
.song-next {
    position: relative;
}

/* NAV FONT SABİT – her sayfada aynı görünsün */
header .nav-links a {
    font-size: 0.95rem !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Varsayılan nav link boyutu */
.nav-links a {
    font-size: 0.95rem !important;
}

/* İLETİŞİM SAYFASI – neon sosyal ikonlar (üstteki küçük ikon seti için) */
.contact-social.crazy {
    display: flex;
    gap: 14px;
    margin: 14px 0 22px;
}

/* Ortak stil */
.contact-social.crazy a {
    font-size: 1.55rem;
    transition: 0.25s ease;
    text-shadow: 0 0 12px rgba(255,255,255,0.3);
    opacity: 0.95;
}

/* YOUTUBE – KIRMIZI NEON */
.contact-social.crazy a.yt {
    color: #ff3a3a;
    text-shadow:
        0 0 10px #ff3a3a,
        0 0 20px #ff1a1a,
        0 0 30px #ff0000;
}
.contact-social.crazy a.yt:hover {
    transform: scale(1.15);
    text-shadow:
        0 0 15px #ff4d4d,
        0 0 35px #ff1a1a,
        0 0 55px #ff0000;
}

/* SPOTIFY – NEON YEŞİL */
.contact-social.crazy a.sp {
    color: #1ed760;
    text-shadow:
        0 0 10px #1ed760,
        0 0 20px #19ff6a,
        0 0 30px #00ff55;
}
.contact-social.crazy a.sp:hover {
    transform: scale(1.15);
    text-shadow:
        0 0 15px #1fff6a,
        0 0 35px #00ff55,
        0 0 55px #00ff44;
}

/* INSTAGRAM – PEMBE/MOR NEON */
.contact-social.crazy a.ig {
    color: #e1306c;
    text-shadow:
        0 0 10px #e1306c,
        0 0 20px #ff4fa1,
        0 0 30px #ff1ab0;
}
.contact-social.crazy a.ig:hover {
    transform: scale(1.15);
    text-shadow:
        0 0 18px #ff4fa1,
        0 0 40px #ff1ab0,
        0 0 60px #ff0099;
}

/* APPLE – BEYAZ ICE GLOW */
.contact-social.crazy a.ap {
    color: #e6e6e6;
    text-shadow:
        0 0 12px #c8f5ff,
        0 0 25px #9feaff,
        0 0 45px #6ddcff;
}
.contact-social.crazy a.ap:hover {
    transform: scale(1.15);
    text-shadow:
        0 0 20px #ffffff,
        0 0 45px #c8f5ff,
        0 0 70px #9feaff;
}

/* TIKTOK – BUZ MAVİSİ + PEMBE DOUBLE NEON */
.contact-social.crazy a.tk {
    color: #62eaff;
    text-shadow:
        0 0 10px #62eaff,
        0 0 20px #ff3ea5,
        0 0 30px #00eaff;
}
.contact-social.crazy a.tk:hover {
    transform: scale(1.15) rotate(-3deg);
    text-shadow:
        0 0 18px #62eaff,
        0 0 40px #ff3ea5,
        0 0 60px #00eaff;
}

/* === PREVIEW AUDIO BARS (SPECTRUM İZLENİMİ) === */
.audio-bars {
    position: fixed;
    top: 0;
    width: 120px;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.audio-bars-left { left: 0; }
.audio-bars-right { right: 0; }

/* Neon bar animasyonu */
.audio-bars::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
          rgba(135, 235, 255, 0.0) 0%,
          rgba(135, 235, 255, 0.7) 50%,
          rgba(135, 235, 255, 0.0) 100%);
    opacity: 0;
    transform-origin: bottom;
    transform: scaleY(0.3);
    filter: blur(6px);
    transition: opacity 0.25s ease;
}

.audio-bars.active::before {
    opacity: 1;
    animation: aynisaNeonBars 0.7s infinite ease-out;
}

@keyframes aynisaNeonBars {
    0%   { transform: scaleY(0.25); filter: blur(8px); }
    40%  { transform: scaleY(0.9);  filter: blur(3px); }
    70%  { transform: scaleY(0.6);  filter: blur(5px); }
    100% { transform: scaleY(0.3);  filter: blur(7px); }
}

/* Mobilde çok göz almasın / alan kaplamasın */
@media (max-width: 768px) {
    .audio-bars {
        top: 22%;
        bottom: 18%;
        width: 22px;
        opacity: 0.6;
    }
}


@media (max-width: 900px) {
    .song-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .song-video {
        order: -1;
    }
/* NAV FONT SABİT – her sayfada aynı görünsün */
header .nav-links a {
    font-size: 0.95rem !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-links a {
    font-size: 0.95rem !important;
}
.contact-social.crazy {
    display: flex;
    gap: 14px;
    margin: 14px 0 22px;
}

/* Ortak stil */
.contact-social.crazy a {
    font-size: 1.55rem;
    transition: 0.25s ease;
    text-shadow: 0 0 12px rgba(255,255,255,0.3);
    opacity: 0.95;
}

/* YOUTUBE – KIRMIZI NEON */
.contact-social.crazy a.yt {
    color: #ff3a3a;
    text-shadow:
        0 0 10px #ff3a3a,
        0 0 20px #ff1a1a,
        0 0 30px #ff0000;
}
.contact-social.crazy a.yt:hover {
    transform: scale(1.15);
    text-shadow:
        0 0 15px #ff4d4d,
        0 0 35px #ff1a1a,
        0 0 55px #ff0000;
}

/* SPOTIFY – NEON YEŞİL */
.contact-social.crazy a.sp {
    color: #1ed760;
    text-shadow:
        0 0 10px #1ed760,
        0 0 20px #19ff6a,
        0 0 30px #00ff55;
}
.contact-social.crazy a.sp:hover {
    transform: scale(1.15);
    text-shadow:
        0 0 15px #1fff6a,
        0 0 35px #00ff55,
        0 0 55px #00ff44;
}

/* INSTAGRAM – PEMBE/MOR NEON */
.contact-social.crazy a.ig {
    color: #e1306c;
    text-shadow:
        0 0 10px #e1306c,
        0 0 20px #ff4fa1,
        0 0 30px #ff1ab0;
}
.contact-social.crazy a.ig:hover {
    transform: scale(1.15);
    text-shadow:
        0 0 18px #ff4fa1,
        0 0 40px #ff1ab0,
        0 0 60px #ff0099;
}

/* APPLE – BEYAZ İCE GLOW */
.contact-social.crazy a.ap {
    color: #e6e6e6;
    text-shadow:
        0 0 12px #c8f5ff,
        0 0 25px #9feaff,
        0 0 45px #6ddcff;
}
.contact-social.crazy a.ap:hover {
    transform: scale(1.15);
    text-shadow:
        0 0 20px #ffffff,
        0 0 45px #c8f5ff,
        0 0 70px #9feaff;
}

/* TIKTOK – BUZ MAVİSİ + PEMBE DOUBLE NEON */
.contact-social.crazy a.tk {
    color: #62eaff;
    text-shadow:
        0 0 10px #62eaff,
        0 0 20px #ff3ea5,
        0 0 30px #00eaff;
}
.contact-social.crazy a.tk:hover {
    transform: scale(1.15) rotate(-3deg);
    text-shadow:
        0 0 18px #62eaff,
        0 0 40px #ff3ea5,
        0 0 60px #00eaff;
}
/* === PREVIEW AUDIO BARS === */

.audio-bars {
  position: fixed;
  top: 0;
  width: 120px;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.audio-bars-left { left: 0; }
.audio-bars-right { right: 0; }

/* Neon bar animasyonu */
.audio-bars::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(135, 235, 255, 0.0) 0%,
      rgba(135, 235, 255, 0.7) 50%,
      rgba(135, 235, 255, 0.0) 100%);
  opacity: 0;
  transform-origin: bottom;
  transform: scaleY(0.3);
  filter: blur(6px);
  transition: opacity 0.25s ease;
}

.audio-bars.active::before {
  opacity: 1;
  animation: aynisaNeonBars 0.7s infinite ease-out;
}

 @keyframes aynisaNeonBars {
  0%   { transform: scaleY(0.25); filter: blur(8px); }
  40%  { transform: scaleY(0.9);  filter: blur(3px); }
  70%  { transform: scaleY(0.6);  filter: blur(5px); }
  100% { transform: scaleY(0.3);  filter: blur(7px); }
}


/* Mobilde çok göze batmasın / alan kaplamasın */
@media (max-width: 768px) {
    .audio-bars {
        top: 22%;
        bottom: 18%;
        width: 22px;
        opacity: 0.6;
    }
}


}


