@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Poppins:wght@300;400&display=swap');

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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed; /* Mobilde scroll oluşmasını kesin engeller */
    touch-action: none; /* Mobilde kaydırma (scroll) hareketini devredışı bırakır */
}

body {
    background: linear-gradient(135deg, #d4e0d0, #a3b899);
    font-family: 'Poppins', sans-serif;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

#greeting {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
    color: #880e4f;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);

    /* Yuvarlak ve transparan gri arka plan */
    background-color: rgba(220, 220, 220, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50%;
    padding: 30px;
    min-width: 320px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#greeting h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

#greeting p {
    font-size: 1.5rem;
    font-weight: 300;
}

#click-prompt {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: #fff;
    background-color: rgba(216, 27, 96, 0.8);
    padding: 10px 25px;
    border-radius: 30px;
    z-index: 20;
    pointer-events: none;
    animation: pulse 1.5s infinite;
    box-shadow: 0 4px 15px rgba(216, 27, 96, 0.3);
    transition: opacity 0.5s ease-out;
}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.1); opacity: 0.8; }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

.flower {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease-out;
    z-index: 5;
}

/* Mobil cihazlar için yazı boyutu ayarı ve mobil arka planı */
@media (max-width: 600px) {
    body {
        background: linear-gradient(135deg, #b5cbae, #829e74);
    }
    #greeting h1 {
        font-size: 2.8rem;
    }
    #greeting p {
        font-size: 1.2rem;
    }
}