body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f8f0d1;
    color: #3e2f1c;
}

.game-container {
    display: inline-block;
    margin-top: 20px;
}

#game-grid {
    display: grid;
    grid-template-columns: repeat(10, 50px);
    grid-template-rows: repeat(10, 50px);
    gap: 2px;
}

.cell {
    width: 50px;
    height: 50px;
    background-color: #c19a6b;
    border: 1px solid #a67c52;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.player {
    background-color: #f5f5dc;
}

.mummy {
    background-color: #8b4513;
    color: white;
}

.key {
    background-color: #ffd700;
}

.exit {
    background-color: #228b22;
    color: white;
}

.info {
    margin-top: 20px;
    font-size: 1.2rem;
}

/* Egyptisch menu */
.egypt-menu {
    background: rgba(212,175,55,0.95);
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.egypt-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.egypt-menu ul li a {
    text-decoration: none;
    color: #3e2c14;
    font-weight: bold;
    font-size: 18px;
    padding: 5px 10px;
    transition: 0.3s;
}

.egypt-menu ul li a:hover {
    color: gold;
    text-shadow: 1px 1px 0 #a67c00;
    transform: translateY(-2px);
}