/* --- TEMEL AYARLAR --- */
:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: lab(66.21% -59.69 40.24); 
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Varsayılan imleci gizle */
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    
    /* --- KOPYALAMA KORUMASI: METİN SEÇİMİNİ ENGELLE --- */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standart */
}

/* --- ÖZEL İMLEÇ (CUSTOM CURSOR) --- */
.cursor {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s, width 0.3s, height 0.3s, background-color 0.3s;
}

/* Link üzerine gelince imleç efekti */
.cursor-hover .cursor-follower {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
    backdrop-filter: blur(2px);
}

/* --- KAYAN METİN (MARQUEE) --- */
.marquee-container {
    width: 100%;
    background: var(--accent-color);
    color: #000;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* --- ARKA PLAN ANİMASYONU --- */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #1a1a2e, #000000);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: #4a00e0;
    top: -50px;
    left: -50px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #8e2de2;
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(30px, 50px); }
    100% { transform: translate(0, 0); }
}

/* --- CONTAINER --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* --- HERO --- */
header {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

header.visible {
    opacity: 1;
    transform: translateY(0);
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #ccc;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero-desc {
    margin-top: 20px;
    max-width: 600px;
    color: #888;
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* --- ORTAK KART TASARIMI --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

/* --- MANIFESTO --- */
.manifesto-section {
    margin-bottom: 50px;
}
.manifesto-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    font-style: italic;
}
.signature {
    margin-top: 20px;
    text-align: right;
    font-weight: 600;
    color: var(--accent-color);
}

/* --- IZGARA SİSTEMİ (GRID) --- */
.music-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
    margin-bottom: 50px;
}

.music-card {
    display: flex;
    flex-direction: column;
}

.music-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.release-type {
    color: var(--accent-color);
    font-weight: 800;
    text-transform: uppercase;
}

.release-date {
    color: #888;
}

.iframe-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-top: auto; 
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 50px 0;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid var(--glass-border);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    color: #fff;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.social-link:hover {
    opacity: 1;
    transform: scale(1.2);
    color: var(--accent-color);
}

/* --- UPCOMING (YAYINLANACAK) CSS --- */
.upcoming-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    margin-bottom: 50px;
}

.upcoming-content {
    flex: 1;
}

.upcoming-tag {
    background-color: var(--accent-color);
    color: #000;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.upcoming-desc {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.countdown-timer {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
    border: 1px solid rgba(255,255,255,0.1);
}

.time-box span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
}

.time-box small {
    font-size: 0.7rem;
    color: #888;
    margin-top: 5px;
}

.presave-btn {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.presave-btn:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.4);
}

.upcoming-image {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.upcoming-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}

.upcoming-image:hover img {
    transform: scale(1.02) rotate(2deg);
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .orb { width: 200px; height: 200px; }
    
    .music-grid {
        grid-template-columns: 1fr;
    }

    /* Upcoming Mobil Ayarı */
    .upcoming-section {
        flex-direction: column-reverse;
        text-align: center;
    }

    .countdown-timer {
        justify-content: center;
        gap: 10px;
    }

    .time-box {
        min-width: 60px;
        padding: 10px;
    }
    
    .time-box span {
        font-size: 1.5rem;
    }
    
    .upcoming-image {
        max-width: 100%;
    }
    
    * { cursor: auto; }
    .cursor, .cursor-follower { display: none; }
}

/* --- SCHWAIREX SADE & INTERAKTİF EFEKT --- */
h1 {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 10px;

    width: 100%;
    line-height: 1.1;
    
    /* BAŞLANGIÇ DURUMU (Sakin) */
    color: #888; /* Koyu gri, arka planla uyumlu */
    transition: all 0.4s ease; /* Efektin geçiş hızı (yumuşak) */
    cursor: default; /* İmleç değişmesin */
}

/* ÜZERİNE GELİNCE (HOVER) */
h1:hover {
    color: #fff; /* Yazı parlayarak beyaza döner */
    
    /* Yeşil Neon Glow (Parlama) Efekti */
    /* İlk değer yakın parlama, ikinci değer uzak dağılma */
    text-shadow: 
        0 0 15px rgba(29, 185, 84, 0.6),
        0 0 40px rgba(29, 185, 84, 0.3);
        
    /* Çok hafif büyütme hissi (İsteğe bağlı) */
    transform: scale(1.02);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }
}