* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none !important; /* Varsayılan imleci her yerde gizle */
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden; /* Gereksiz kaydırmaları engeller */
}

body {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
    color: white;
}

/* --- ÖZEL MOUSE CURSOR (İçi Boş Yuvarlak) --- */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: fixed;
    pointer-events: none; /* Tıklamayı engellememesi için */
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s, background 0.2s;
}

/* Linklerin üzerine gelince imleç efekti */
.cursor.hovered {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 1);
}

/* --- VİDEO VE IDM KALKANI --- */
.video-wrapper {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; /* Videonun üstünde durarak IDM butonunu engeller */
    background: transparent;
}

#bg-video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.25);
}

/* --- SES BUTONU --- */
.audio-btn {
    position: fixed;
    top: 20px; left: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    transition: 0.3s;
}

/* --- ANA KART (CENTERED & RESPONSIVE) --- */
.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 10;
}

.glass-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    max-width: 750px;
    padding: 50px 20px; /* Responsive için sağ-sol padding daraltıldı */
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
}

/* Öğeler */
.profile-pic {
    width: 95px; height: 95px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    object-fit: cover;
}

.glitch-text {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-transform: lowercase;
    position: relative;
    display: inline-block;
}

.sub-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 5px;
    margin: 15px 0 35px 0;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    color: #fff;
    font-size: 1.4rem;
    opacity: 0.6;
    transition: 0.3s;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-4px);
}

/* Glitch Efekti */
.glitch-text::before, .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}
.glitch-text::before {
    left: 1px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 4s infinite linear alternate-reverse;
}
.glitch-text::after {
    left: -1px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 4s infinite linear alternate-reverse;
}
@keyframes glitch-anim { 0% { clip: rect(10px, 9999px, 30px, 0); } 100% { clip: rect(40px, 9999px, 50px, 0); } }
@keyframes glitch-anim2 { 0% { clip: rect(50px, 9999px, 60px, 0); } 100% { clip: rect(70px, 9999px, 80px, 0); } }

/* Mobil Düzenleme */
@media (max-width: 600px) {
    .glass-card { padding: 40px 15px; width: 90%; }
    .glitch-text { font-size: 2.2rem; }
}