/* CSS Değişkenleri - Sinematik ve Minimalist Karanlık Tema */
:root {
    --bg-color: #030303;
    --text-primary: #FFFFFF;
    --text-secondary: #888888;
    --accent: #E5E5E5;
    --border: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Sinematik Kum/Noise Efekti */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- YATAY BANNER --- */
.hero-banner {
    position: relative;
    width: 100%;
    height: 25vh; /* Ekranın %25'i olarak azaltıldı */
    min-height: 220px;
    max-height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background-color: var(--bg-color);
}

.banner-image {
    width: 100%;
    max-width: 1200px; /* Görselin çok fazla esnemesini engeller */
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Kenarlara doğru siyahla kaynaşma efekti */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    /* Hafif bir zoom efekti */
    animation: slowZoom 20s linear infinite alternate;
    pointer-events: none; /* Görsele sağ tıklamayı engeller */
    -webkit-user-select: none;
    user-select: none;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Banner Alt Kısım Geçişi (Fade to Black) */
.banner-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom, 
        rgba(3,3,3,0.1) 0%, 
        rgba(3,3,3,0.4) 50%, 
        rgba(3,3,3,1) 100%
    );
    pointer-events: none;
}

/* --- ANA İÇERİK --- */
.main-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -100px; /* Banner ile kesişme */
    z-index: 10;
}

/* --- PROFİL FOTOĞRAFI --- */
.profile-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 2.5rem;
}

.profile-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0) 70%);
    filter: blur(20px);
    z-index: 1;
}

.profile-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    z-index: 2;
    transition: var(--transition);
    filter: contrast(1.1) brightness(0.9);
    pointer-events: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

.profile-image:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- BİLGİ ALANI --- */
.info-section {
    text-align: center;
    width: 100%;
}

.badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
}

.recording-dot {
    width: 6px;
    height: 6px;
    background-color: #ff3333;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.badge-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
}

.artist-name {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.artist-name span {
    font-style: italic;
    color: var(--text-secondary);
    font-weight: 300;
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.official-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.8;
}

/* --- SOSYAL MEDYA --- */
.social-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: var(--transition);
    fill: currentColor;
}

.social-link:hover {
    color: var(--text-primary);
}

.social-link:hover svg {
    transform: translateY(-4px);
}

/* --- ANİMASYONLAR --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MÜZİK NOTALARI EFEKTİ --- */
#notes-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-note {
    position: absolute;
    bottom: -10%;
    color: rgba(255, 255, 255, 0.04);
    font-family: var(--font-heading);
    pointer-events: none;
    animation: floatUp linear forwards;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-120vh) rotate(360deg);
        opacity: 0;
    }
}

/* --- ÖZEL İMZA (MİNİMAL FOOTER) --- */
.fixed-credit {
    position: absolute;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    background-color: var(--bg-color);
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
    z-index: 100;
}

@media (min-width: 481px) {
    .fixed-credit {
        position: fixed;
        bottom: 25px;
        right: 30px;
        transform: none;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
    }
}

.fixed-credit a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: var(--transition);
}

.credit-always-visible {
    font-size: 0.55rem;
    font-family: var(--font-body);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-right: -4px;
}

.credit-logo {
    width: 24px;
    height: 24px;
    transition: transform 0.4s ease;
}

.credit-hover-text {
    font-size: 0.75rem;
    font-family: var(--font-body);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    white-space: nowrap;
    color: var(--text-primary);
}

.fixed-credit a:hover {
    opacity: 1;
    color: var(--text-primary);
}

.fixed-credit a:hover .credit-logo {
    transform: rotate(180deg);
}

.fixed-credit a:hover .credit-hover-text {
    opacity: 1;
    transform: translateX(0);
}

 .music-player {
     width: min(560px, 92vw);
     margin: 0 auto 2.25rem auto;
     display: grid;
     grid-template-columns: 44px 1fr;
     gap: 14px;
     align-items: center;
     padding: 14px 16px;
     border-radius: 20px;
     background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
     border: 1px solid rgba(255,255,255,0.10);
     box-shadow: 0 18px 55px rgba(0,0,0,0.65);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
 }

 .player-btn {
     width: 44px;
     height: 44px;
     border-radius: 14px;
     border: 1px solid rgba(255,255,255,0.12);
     background: radial-gradient(120% 120% at 30% 25%, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
     color: var(--text-primary);
     display: grid;
     place-items: center;
     cursor: pointer;
     transition: var(--transition);
 }

 .player-btn:hover {
     transform: translateY(-1px);
     border-color: rgba(255,255,255,0.22);
 }

 .player-btn:active {
     transform: translateY(0);
 }

 .player-btn svg {
     width: 18px;
     height: 18px;
 }

 .player-body {
     display: grid;
     gap: 10px;
 }

 .player-top {
     display: flex;
     align-items: baseline;
     justify-content: space-between;
     gap: 12px;
 }

 .player-title {
     font-size: 0.92rem;
     font-weight: 600;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     color: var(--text-primary);
 }

 .player-meta {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .player-status {
     font-size: 0.62rem;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--text-secondary);
 }

 .player-time {
     font-size: 0.7rem;
     letter-spacing: 0.06em;
     color: rgba(255,255,255,0.72);
 }

 .player-bar {
     position: relative;
     display: grid;
     gap: 10px;
 }

 .player-seek {
     width: 100%;
     -webkit-appearance: none;
     appearance: none;
     height: 10px;
     border-radius: 999px;
     background: rgba(255,255,255,0.07);
     outline: none;
     overflow: hidden;
 }

 .player-seek::-webkit-slider-thumb {
     -webkit-appearance: none;
     appearance: none;
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: rgba(255,255,255,0.95);
     box-shadow: -1000px 0 0 995px rgba(255,255,255,0.22);
 }

 .player-seek::-moz-range-thumb {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     border: none;
     background: rgba(255,255,255,0.95);
 }

 .player-wave {
     display: flex;
     align-items: flex-end;
     justify-content: flex-end;
     gap: 4px;
     height: 16px;
     opacity: 0.9;
 }

 .player-wave span {
     display: block;
     width: 3px;
     background: rgba(255,255,255,0.7);
     border-radius: 99px;
     transform-origin: bottom;
     animation: playerPulse 1.05s ease-in-out infinite alternate;
 }

 .player-wave span:nth-child(1) { height: 55%; animation-delay: 0.10s; }
 .player-wave span:nth-child(2) { height: 100%; animation-delay: 0.28s; }
 .player-wave span:nth-child(3) { height: 35%; animation-delay: 0.44s; }
 .player-wave span:nth-child(4) { height: 85%; animation-delay: 0.18s; }
 .player-wave span:nth-child(5) { height: 60%; animation-delay: 0.34s; }

 .player-wave.paused span {
     animation-play-state: paused;
     height: 3px;
 }

 @keyframes playerPulse {
     0% { transform: scaleY(0.35); }
     100% { transform: scaleY(1); }
 }

/* Responsive */
@media (max-width: 768px) {
    .hero-banner {
        height: 20vh;
        min-height: 180px;
    }
    
    .main-content {
        margin-top: -60px;
        padding: 0 1.5rem 3rem;
    }

    .profile-container {
        width: 130px;
        height: 130px;
        margin-bottom: 2rem;
    }
    
    .artist-name {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 1rem;
    }

    .official-title {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        margin-bottom: 1.5rem;
    }

    .description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }
    
    .social-nav {
        gap: 1.5rem;
        justify-content: center;
    }

    .music-player {
        width: min(100%, 520px);
        padding: 12px 14px;
        gap: 12px;
    }

    .player-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .player-meta {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }

    .player-title {
        font-size: 0.82rem;
        letter-spacing: 0.04em;
    }

    .player-status {
        font-size: 0.55rem;
        letter-spacing: 0.12em;
    }

    .player-time {
        font-size: 0.64rem;
    }

    .social-link {
        gap: 6px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .social-link span {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 18vh;
        min-height: 150px;
    }

    .main-content {
        margin-top: -50px;
    }

    .profile-container {
        width: 110px;
        height: 110px;
    }

    .social-nav {
        gap: 1.2rem;
    }

    .music-player {
        width: 100%;
        grid-template-columns: 40px 1fr;
        gap: 10px;
        padding: 11px 12px;
        border-radius: 16px;
        margin-bottom: 2rem;
    }

    .player-btn {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .player-btn svg {
        width: 16px;
        height: 16px;
    }

    .player-body {
        gap: 8px;
        min-width: 0;
    }

    .player-top {
        gap: 5px;
    }

    .player-title {
        font-size: 0.74rem;
        line-height: 1.25;
        letter-spacing: 0.03em;
        word-break: break-word;
    }

    .player-meta {
        flex-wrap: wrap;
        justify-content: flex-start;
        row-gap: 4px;
        column-gap: 10px;
    }

    .player-status {
        font-size: 0.5rem;
        letter-spacing: 0.1em;
    }

    .player-time {
        font-size: 0.6rem;
    }

    .player-seek {
        height: 8px;
    }

    .player-wave {
        gap: 3px;
        height: 12px;
    }

    .player-wave span {
        width: 2px;
    }

    .credit-hover-text {
        opacity: 1;
        transform: translateX(0);
    }
    
    .main-content {
        padding-bottom: 5rem;
    }
}
