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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: black;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
    transition: opacity 1s ease-in-out;
    opacity: 1;
}

.hero-image.fade-out {
    opacity: 0;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

.content-section {
    padding: 50px 20px;
    text-align: center;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 1rem;
    color: #555;
}


.download-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.download-buttons {
    margin-top: 20px;
}

.store-badge {
    width: 160px;
    margin: 10px;
    transition: transform 0.2s ease;
}

.store-badge:hover {
    transform: scale(1.05);
}


@media (max-width: 768px) {
    .overlay-text h1 {
        font-size: 2rem;
    }

    .overlay-text p {
        font-size: 1rem;
    }
}

.game-promo {
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

.promo-img {
    max-width: 100%;
    height: auto;
    border-radius: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.promo-buttons {
    margin-top: 20px;
}

.promo-buttons .store-badge {
    width: 140px;
    margin: 10px;
}