/**
 * Memory-Spiel Styles
 */

.game-container {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.game-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.memory-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
}

.memory-card {
    aspect-ratio: 1;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s;
}

.memory-card:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.memory-card.flipped {
    background: var(--primary-color);
}

.memory-card.matched {
    opacity: 0.5;
    cursor: default;
}

.game-controls {
    margin-top: 2rem;
}

.game-controls button {
    padding: 0.75rem 2rem;
}

