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

body {
    background: #080808;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
}

header {
    width: 100%;
    padding: 22px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

.logo {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span {
    color: #777;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    color: white;
}

.hero {
    min-height: 80vh;
    padding: 120px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tag {
    color: #777;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(60px, 13vw, 150px);
    line-height: .8;
    letter-spacing: -5px;
}

.hero h1 span {
    color: #555;
}

.hero-text {
    color: #aaa;
    margin: 35px 0;
    font-size: 18px;
}

.button {
    display: inline-block;
    width: fit-content;
    padding: 14px 25px;
    background: white;
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: .2s;
}

.button:hover {
    transform: translateY(-3px);
    background: #ccc;
}

.small {
    padding: 11px 18px;
    font-size: 12px;
}

.featured {
    padding: 80px 8%;
}

.featured h2 {
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.game-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #252525;
    background: #0d0d0d;
}

.game-image {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    background: #151515;
}

.game-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.game-info h3 {
    font-size: 35px;
}

.game-info p:not(.tag) {
    color: #999;
    line-height: 1.7;
}

.page {
    padding: 100px 8%;
    min-height: 80vh;
}

.page h1 {
    font-size: clamp(55px, 10vw, 110px);
    margin-bottom: 20px;
}

.description {
    color: #999;
    margin-bottom: 50px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.game-box {
    background: #0d0d0d;
    border: 1px solid #252525;
}

.game-cover {
    height: 230px;
    background: #151515;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
}

.game-content {
    padding: 25px;
}

.game-content h2 {
    margin-bottom: 15px;
}

.game-content p:not(.tag) {
    color: #999;
    margin-bottom: 25px;
}

.lore-box,
.about {
    max-width: 800px;
    padding: 40px;
    border: 1px solid #252525;
    background: #0d0d0d;
}

.lore-box h2,
.about h2 {
    margin-bottom: 25px;
}

.lore-box p,
.about p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
}

footer {
    border-top: 1px solid #222;
    padding: 30px 8%;
    color: #555;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

@media (max-width: 700px) {

    header {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding-top: 80px;
    }

    .game-card {
        grid-template-columns: 1fr;
    }

    .game-info {
        padding: 30px;
    }

    footer {
        flex-direction: column;
        gap: 10px;
    }
}