body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.hero {
    height: 100vh;
    background: linear-gradient(135deg, #7c5fff, #feb47b);
    display: flex;
    flex-direction: column; /* Dikey hizalama için */
    justify-content: center;
    align-items: center;
}

.play-now {
    text-align: center;
    margin-top: 120px;
}

.play-now p {
    font-size: 24px;
    color: #fff;
    margin: 30px;
}

.arrow-down {
    font-size: 30px;
    color: #fff;
    margin-top: 10px;
    animation: bounce 2s infinite; /* Animasyonu uygula */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px); /* Yukarı hareket */
    }
    60% {
        transform: translateY(-5px); /* Aşağı hareket */
    }
}

.logo img {
    max-width: 600px;
}

.apps {
    text-align: center;
    padding: 40px;
}

.app-item {
    display: inline-block;
    margin: 20px;
    text-align: center;
}

.app-item p {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

.app-icons img {
    width: 200px;
    margin: 20px;
    transition: transform 0.3s;
}

.app-icons img:hover {
    transform: scale(1.1);
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}