* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #07140c;
    color: white;
}

.hero {
    min-height: 70vh;
    text-align: center;
    padding: 100px 20px 80px;

    background:
        linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.78)),
        url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?q=80&w=1600&auto=format&fit=crop');

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 850px;
}

.label {
    color: #6cff9c;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 4.5rem;
    margin: 0 0 20px;
    line-height: 1.1;
}

.hero p {
    max-width: 780px;
    margin: auto;
    line-height: 1.7;
    color: #ddd;
    font-size: 1.1rem;
}

main {
    max-width: 1050px;
    margin: auto;
    padding: 60px 20px;
}

.intro {
    background: #0d2616;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.intro h2 {
    margin-top: 0;
    color: #6cff9c;
    font-size: 2rem;
}

.intro p {
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 0;
}

.category {
    margin-bottom: 80px;
}

.category h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #6cff9c;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.game-card {
    background: #0d2616;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: #37b865;
}

.game-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 22px;
}

.card-content h3 {
    margin-top: 0;
    font-size: 1.7rem;
}

.card-content p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 0;
}

footer {
    text-align: center;
    padding: 30px 20px;
    color: #888;
    border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 750px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .game-card img {
        height: 220px;
    }
}