body {
    background-color: #000;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
}

.moving-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #1a1a1a, #000, #1a1a1a);
    z-index: -1;
    transform: translateY(0);
    transition: transform 0.1s linear;
}

header {
    width: 100%;
    text-align: center;
}

.header-banner {
    width: 100%;
    max-width: 1280px;
    height: auto;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.intro h1 {
    font-size: 4em;
    margin-bottom: 20px;
    animation: fadeInDown 1s;
}

.details p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    animation: fadeInUp 1s;
}

.game {
    text-align: center;
    padding: 50px 0;
    animation: zoomIn 1s;
}

.game h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.game img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.store-links a {
    display: inline-block;
    margin: 0 20px;
}

.store-links img {
    width: 80px;
    height: auto;
    transition: transform 0.3s;
}

.store-links img:hover {
    transform: scale(1.1);
}

footer {
    text-align: center;
    padding: 50px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    font-size: 1.2em;
    transition: color 0.3s;
}

footer a:hover {
    color: #aaa;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-top: 20px;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}