html,
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #050505;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.page {
    width: min(1400px, 94%);
    margin: 0 auto;
    padding: 40px 0 80px;
}

.hero {
    width: 100%;
    margin-bottom: 48px;
    overflow: hidden;
}

.hero-banner {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.game-card {
    background: #0d0d0d;
    border-radius: 18px;
    overflow: hidden;
}

.game-banner {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #181818;

    font-size: 2rem;
    font-weight: 700;
    text-align: center;

    border-radius: 18px;
}

.status {
    padding: 14px 18px 18px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #35d96f;
    margin-right: 8px;
    box-shadow: 0 0 10px rgba(53, 217, 111, 0.6);
}

@media (max-width: 800px) {
    .games {
        grid-template-columns: 1fr;
    }

    .hero-placeholder {
        height: 220px;
    }

    .game-banner {
        min-height: 150px;
    }
}
.minecraft-banner {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.10),
            rgba(0, 0, 0, 0.35)
        ),
        url("/static/home/minecraft.png");

    background-size: cover;
    background-position: center;
}

.game-title {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 12px rgba(0, 0, 0, 0.7);
}

.palworld-banner {
    background-image: url("/static/home/palworld.jpg");
    background-size: cover;
    background-position: center;
}

.valheim-banner {
    background-image: url("/static/home/Valheim Campfire.png");
    background-size: 100% auto;
    background-position: center 68%;
    background-repeat: no-repeat;
    background-color: #050505;
    position: relative;
}

.valheim-logo {
    position: absolute;
    width: 42%;
    height: auto;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
}

.enshrouded-banner {
    background-image: url("/static/home/enshrouded.png");
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #050505;
}

.moria-banner {
    background-image: url("/static/home/returntomoria.png");
    background-size: cover;
    background-position: center 35%;
}

.vrising-banner {
    background-image: url("/static/home/vrising.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.vrising-logo {
    position: absolute;
    width: 42%;
    height: auto;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}

.dragonwilds-banner {
    background-image: url("/static/home/dragonwildscard.png");
    background-size: cover;
    background-position: center;
}

.nera-banner {
    background-image: url("/static/home/VoN_SeafaringKeyart_TopLeftLogo.jpg");
    background-size: cover;
    background-position: top;
}