/* --- TEMEL AYARLAR --- */
body {
    margin: 0; padding: 0; background-color: #050505; height: 100vh;
    display: flex; justify-content: center; align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden; color: white; cursor: none;
    -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}

/* Zorunlu İmleç Gizleme */
a, button, .btn, .close-btn, .letter { cursor: none !important; }

/* Mobil Ayarları */
@media (max-width: 768px) {
    body, a, button, .btn, .close-btn, .letter { cursor: auto !important; }
}

/* --- DİNAMİK X-RAY İMLEÇ --- */
#cursor {
    position: fixed; top: 0; left: 0; width: 20px; height: 20px;
    background-color: #ff5700; border-radius: 50%;
    transform: translate(-50%, -50%); pointer-events: none; z-index: 9999;
    transition: transform 0.1s, width 0.3s, height 0.3s;
    mix-blend-mode: difference;
}
body.hovering #cursor { width: 60px; height: 60px; opacity: 1; }
body.clicking #cursor { transform: translate(-50%, -50%) scale(0.8); }
@media (max-width: 768px) { #cursor { display: none; } }

/* --- ARKA PLAN --- */
.background-wrapper {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; justify-content: center; align-items: center; z-index: 0;
}
.container {
    display: flex; gap: -10px; transition: transform 0.1s ease-out; white-space: nowrap;
}
.letter {
    font-size: 11vw; color: #0f0f0f; font-family: 'Arial Black', sans-serif;
    position: relative; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5; -webkit-text-stroke: 2px #1a1a1a;
}
.spacer { width: 6vw; display: inline-block; }
.letter:hover {
    color: #ff5700; transform: scale(1.1) translateY(20px);
    z-index: 1; text-shadow: 0 0 20px rgba(255, 87, 0, 0.4); -webkit-text-stroke: 0;
}
.letter.komsu { transform: scale(1.05) translateY(10px); color: #a16e54; z-index: 4; }
