/* Balonlar */
.balloons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.balloon {
    position: absolute;
    width: 50px;
    height: 70px;
    border-radius: 50% 50% 50% 0;
    opacity: 0.7;
    animation: rise 15s infinite;
    box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.3);
}

.balloon1 {
    left: 10%;
    background: linear-gradient(135deg, #ff6b6b, #ff8e72);
    animation-delay: 0s;
}

.balloon2 {
    left: 25%;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    animation-delay: 2s;
}

.balloon3 {
    left: 40%;
    background: linear-gradient(135deg, #ffd93d, #ffb74d);
    animation-delay: 4s;
}

.balloon4 {
    left: 55%;
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    animation-delay: 6s;
}

.balloon5 {
    left: 70%;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    animation-delay: 8s;
}

@keyframes rise {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0);
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        bottom: 100vh;
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Yıldızlar */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
    box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.5);
}

.star:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.star:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-delay: 0.5s;
}

.star:nth-child(3) {
    top: 60%;
    left: 10%;
    animation-delay: 1s;
}

.star:nth-child(4) {
    top: 50%;
    left: 90%;
    animation-delay: 1.5s;
}

.star:nth-child(5) {
    top: 80%;
    left: 30%;
    animation-delay: 0.3s;
}

.star:nth-child(6) {
    top: 15%;
    left: 60%;
    animation-delay: 0.8s;
}

.star:nth-child(7) {
    top: 70%;
    left: 70%;
    animation-delay: 1.2s;
}

.star:nth-child(8) {
    top: 40%;
    left: 45%;
    animation-delay: 1.8s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* Floating emoji */
.floating-emoji {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* Buton stil */
#troll-button {
    transition: all 0.15s ease-out;
    position: absolute;
    cursor: pointer;
    transform: translate(-50%, -50%);
    top: 55%;
    left: 50%;
    font-size: 18px;
}

#troll-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.8);
}

.button-glow {
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
    }
    50% {
        box-shadow: 0 0 40px rgba(239, 68, 68, 0.9);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    #troll-button {
        font-size: 16px;
        padding: 12px 8px !important;
    }
}
