/* Games page styles - matching site theme */
html, body { height: fit-content; }
body { background: var(--bg); color: var(--text); font-family: Inter, system-ui, sans-serif; }

/* HEADER */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: fit-content;
  padding: 2% 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 18, 32, .92);
  backdrop-filter: blur(10px);
  z-index: 1002;
}

header strong { font-size: 1.7rem; font-weight: 600; word-spacing: 0.7rem; }
header nav { display: flex; }
nav a { margin-left: 28px; color: var(--muted); font-size: 1.15rem; font-weight: 600; text-decoration: none; transition: .3s; }
nav a:hover { color: var(--text); text-shadow: 0 0 1px var(--text); }

/* MAIN */
/* Game Beschreibung, Startbutton und Gamecontent */
main {
    margin: 120px 50px 0px 50px;
}

.game-description {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 80px;
}

.game-description .description {
    font-size: 1.3rem;
    text-align: center;
}

.game-description .startgame {
    width: fit-content;
    height: fit-content;
    padding: 10px 30px;

    background: var(--startgameBG);
    border: 1px solid var(--muted);
    border-radius: 10px;

    color: var(--text);
    font-size: 1.15rem;
    font-weight: 300;

    cursor: pointer;
}

.game {
    position: relative;

    width: 100%;
    height: 500px;
    margin-top: 50px;

    background: var(--panel);
    border-radius: 10px;
    border: 1px solid var(--muted);
}

@media (max-width: 600px) { 
    header {
        padding: 5%;
    }

    /* MainContent */
    main {
        margin: 220px 50px 0px 50px;
    }

    .game-description {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 50px;
    }

}