*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --schrift-titel: 'Staatliches', sans-serif;
    --schrift-text: 'Manrope', sans-serif;
    --farbe-hintergrund: #111217;
    --farbe-text: #f1f1f1;
    --farbe-akzent: #f44336;
}

body {
    font-family: var(--schrift-text);
    background-color: var(--farbe-hintergrund);
    color: var(--farbe-text);
    line-height: 1.6;
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--schrift-titel);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.warnhinweis {
    background-color: #ff4444;
    padding: 0.75rem 1rem;
    text-align: center;
}

.warnhinweis__container {
    max-width: 1280px;
    margin: 0 auto;
}

.warnhinweis__text {
    font-size: 0.95rem;
    font-family: var(--schrift-text);
    color: #fff;
    line-height: 1.4;
}

.warnhinweis__icon {
    margin-right: 0.5rem;
    color: #fff200;
}

.warnhinweis__telefon {
    text-decoration: underline;
    color: #ffffff;
    font-weight: 500;
}

.einstieg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    text-align: center;
    overflow: hidden;
}

.einstieg__hintergrund {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/einstieg-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.5);
}

.einstieg__inhalt {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.einstieg__titel {
    font-family: var(--schrift-titel);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.einstieg__untertitel {
    font-family: var(--schrift-text);
    font-size: 1.25rem;
    color: #f0f0f0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .einstieg__titel {
        font-size: 2rem;
    }

    .einstieg__untertitel {
        font-size: 1rem;
    }
}

.spielverzeichnis {
    background: linear-gradient(135deg, #1f1f26 0%, #2c2c34 100%);
    padding: 4rem 1rem;
}

.spielverzeichnis__container {
    max-width: 1280px;
    margin: 0 auto;
}

.spielverzeichnis__kopf {
    text-align: center;
    margin-bottom: 2.5rem;
}

.spielverzeichnis__titel {
    font-family: var(--schrift-titel);
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.spielverzeichnis__untertitel {
    font-family: var(--schrift-text);
    font-size: 1.125rem;
    color: #ccc;
}

.spielkarte {
    display: flex;
    flex-wrap: wrap;
    background: #15151b;
    border-radius: 12px;
    padding: 1.5rem;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
}

.spielkarte__logo svg,
.spielkarte__logo img {
    width: 160px;
    height: auto;
}

.spielkarte__info {
    flex: 1;
    min-width: 180px;
}

.spielkarte__name {
    font-size: 1.5rem;
    font-family: var(--schrift-titel);
    color: #fff;
    margin-bottom: 0.5rem;
}

.spielkarte__bewertung i {
    color: #f4c518;
    margin-right: 0.2rem;
    font-size: 1rem;
}

.spielkarte__boni {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 2;
    min-width: 220px;
}

.spielkarte__bonus {
    font-size: 0.95rem;
    color: #e4e4e4;
    margin-bottom: 0.4rem;
    font-family: var(--schrift-text);
    display: flex;
    align-items: center;
}

.spielkarte__bonus i {
    color: var(--farbe-akzent);
    margin-right: 0.5rem;
    min-width: 1.2em;
}

.spielkarte__aktion {
    flex-shrink: 0;
}

.spielkarte__spielen {
    background: var(--farbe-akzent);
    color: #fff;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    transition: background 0.3s ease;
    display: inline-block;
}

.spielkarte__spielen:hover {
    background: #d73128;
}

.spielkarte__recht {
    margin-top: 1rem;
    font-size: 1rem;
    color: #999;
    font-style: italic;
    flex-basis: 100%;
}

.spielverzeichnis__hinweis {
    background: #222;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    color: #eee;
    font-size: 0.9rem;
    font-family: var(--schrift-text);
}

.spielverzeichnis__hinweis p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .spielkarte {
        flex-direction: column;
        align-items: center;
    }

    .spielkarte__aktion {
        width: 100%;
        margin-top: 1rem;
    }

    .spielkarte__spielen {
        width: 100%;
        text-align: center;
    }

    .spielkarte__logo img {
        width: 120px;
    }
}

.infolager {
    background: #1a1b21;
    padding: 4rem 1rem;
    color: #ddd;
}

.infolager__container {
    max-width: 960px;
    margin: 0 auto;
}

.infolager__titel {
    font-family: var(--schrift-titel);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2.5rem;
    text-align: center;
}

.infolager__gruppe {
    margin-bottom: 2rem;
}

.infolager__untertitel {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-family: var(--schrift-titel);
}

.infolager__text {
    font-size: 1rem;
    font-family: var(--schrift-text);
    line-height: 1.7;
    color: #ccc;
}

.seitenabschluss {
    background: #111216;
    padding: 3rem 1rem 2rem;
    color: #ccc;
    font-family: var(--schrift-text);
    font-size: 0.95rem;
}

.seitenabschluss__container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.seitenabschluss__block {
    margin-bottom: 1.75rem;
}

.seitenabschluss__text {
    line-height: 1.6;
    color: #ccc;
}

.seitenabschluss__text a {
    color: var(--farbe-akzent);
    text-decoration: underline;
}

.seitenabschluss__text--klein {
    font-size: 0.85rem;
    color: #999;
}

.seitenabschluss__hilfen {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
    margin: 2rem 0;
}

.seitenabschluss__hilfen img {
    max-height: 40px;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.seitenabschluss__hilfen img:hover {
    filter: none;
}

.seitenabschluss__links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.seitenabschluss__links a {
    color: #aaa;
    font-size: 0.9rem;
    text-decoration: none;
}

.seitenabschluss__links a:hover {
    text-decoration: underline;
    color: var(--farbe-akzent);
}

.seitenabschluss__copyright {
    font-size: 0.85rem;
    color: #666;
}

.cookinfo {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #222;
    color: #eee;
    text-align: center;
    padding: 1rem 1.5rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.cookinfo--sichtbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cookinfo__text {
    font-size: 0.95rem;
}

.cookinfo__akzeptieren {
    background: var(--farbe-akzent);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
}

.alterspruefer {
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.alterspruefer--sichtbar {
    display: flex;
}

.alterspruefer__fenster {
    background: #1b1b21;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.alterspruefer__titel {
    font-family: var(--schrift-titel);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.alterspruefer__text {
    font-family: var(--schrift-text);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.alterspruefer__hilfen {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.alterspruefer__hilfen img {
    height: 40px;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.alterspruefer__hilfen img:hover {
    filter: none;
}

.alterspruefer__aktionen {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.alterspruefer__btn {
    padding: 0.6rem 1.2rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.95rem;
}

.alterspruefer__btn--ok {
    background: var(--farbe-akzent);
    color: #fff;
}

.alterspruefer__btn--exit {
    background: #999;
    color: #000;
}