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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
}

.container {
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.btn-nerede {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: white;
    border: none;
    padding: 1.5rem 5rem;
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 65, 108, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-nerede:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 65, 108, 0.6);
}

.btn-nerede:active {
    transform: translateY(2px) scale(0.95);
}

.uttttk-text {
    font-size: 6vw; /* 10vw'den 6vw'ye düşürüldü */
    font-weight: 900;
    margin: 0;
    text-align: center;
    background: linear-gradient(to bottom right, #00f2fe 0%, #4facfe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; 
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 10px 40px rgba(79, 172, 254, 0.6);
    animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    letter-spacing: -0.2vw; /* Harfler arası boşluk biraz açıldı ki okunabilsin */
    line-height: 1.2; /* Satır aralığı uzun metin için artırıldı */
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.2) rotate(-15deg);
    }
    60% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}
