body {
    background: linear-gradient(135deg, #2e4d2e 0%, #4e7d4e 100%);
}

section {
    background: rgba(40,40,40,0.93);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 900px;
}

h2, h3 {
    color: #ffd700;
    font-family: 'Orbitron', Arial, sans-serif;
    text-shadow: 2px 2px 8px #000;
}

.game-card {
    background: #222;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    padding: 1.5rem;
    margin: 1.5rem 0;
    color: #f5f5f5;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.game-card:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
button, input[type="button"] {
    background: #ffd700;
    color: #222;
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    margin: 0.5rem;
    transition: background 0.2s;
}
button:hover, input[type="button"]:hover {
    background: #e6c200;
}
input[type="text"], input[type="number"] {
    border-radius: 6px;
    border: 1px solid #ffd700;
    padding: 0.4rem;
    margin: 0.5rem;
    font-size: 1rem;
}