:root {
    --primary-color: #333;
    --secondary-color: #ddd;
    --accent-color: #555;
    --text-color: #333;
    --light-text: #777;
    --border-color: #ccc;
    --background-color: #f5f5f5;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.5;
}

.container {
    max-width: 800px;
    margin: 1rem auto;
    padding: 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.game-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.game-info img {
    border-radius: 1rem;
    height: 5rem;
    width: 5rem;
    object-fit: cover;
}

.game-title {
    margin: 0;
    font-size: 1.8rem;
}

.game-genres {
    margin: 0;
    font-size: 1rem;
    color: var(--light-text);
    font-weight: normal;
}

.game-details {
    margin-top: 1.5rem;
}

.section-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--border-color);
}

.game-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.features-list {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.features-list li {
    margin-bottom: 0.5rem;
}

.screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.screenshot {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

@media (max-width: 430px) {
    .game-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .container {
        margin: 1rem 0.5rem;
        padding: 0.8rem;
    }
}