/* Sayfanın tamamını kilitle */
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
/* DUVAR */
#wall {
position: fixed;
inset: 0;
z-index: 9999999;
background: url("https://i.scdn.co/image/ab67616d0000b273b7350f1c40e04dde324bc25c")
no-repeat center center / cover;
}
/* Karanlık katman */
#wall::after {
content: "";
position: absolute;
inset: 0;
background: rgba(0,0,0,0.55);
}
/* Yazılar */
#wall .content {
position: absolute;
left: 50%;
top: 63%;
transform: translateX(-50%);
text-align: center;
color: #fff;
font-family: Inter, Arial, sans-serif;
text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
z-index: 1;
}
/* Üst yazı */
#wall .title {
font-size: 22px;
font-weight: 800;
letter-spacing: 1px;
white-space: nowrap;
}
/* Alt handle */
#wall .handle {
margin-top: 6px;
font-size: 16px;
font-weight: 600;
}