* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
}

main {
    flex: 1;
}

.game-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.game-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.game-item:hover {
    transform: translateY(-5px);
}

.game-item h2 {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-bottom: 10px;
}

.game-item p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.btn-play {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-play:hover {
    background: #2980b9;
}

footer {
    text-align: center;
    margin-top: 60px;
    color: #7f8c8d;
    font-size: 0.9rem;
}
