/* Farbkonzept im Stil von Dazard: dunkler Hintergrund, kräftige Rot- und Blautöne */
:root {
    --hintergrund-dunkel: #050816;
    --hintergrund-kopf: #0b1020;
    --hintergrund-bereich: #0f172a;
    --akzent-rot: #ff4b2b;
    --akzent-orange: #ff9a00;
    --akzent-blau: #182a4d;
    --text-hell: #f9fafb;
    --text-gedaempft: #9ca3af;
    --rand-weich: #1f2937;
    --knopf-radius: 999px;
    --schatten-weich: 0 10px 30px rgba(0, 0, 0, 0.45);
    --schrift-grund: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--schrift-grund);
    background: radial-gradient(circle at top, #181b34 0%, var(--hintergrund-dunkel) 50%, #020617 100%);
    color: var(--text-hell);
}

/* Allgemeine Layout-Helfer */

.behalter {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    color: var(--akzent-orange);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Kopfbereich */

.haupt-kopf {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(5, 8, 22, 0.98), rgba(12, 23, 57, 0.98));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
}

.kopf-inhalt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1.5rem;
}

.logo img {
    height: 40px;
    display: block;
}

.logo a {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}

/* Navigation */

.haupt-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.haupt-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.haupt-nav a {
    font-weight: 500;
    color: #e5e7eb;
    position: relative;
    padding-bottom: 4px;
}

.haupt-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--akzent-orange), var(--akzent-rot));
    transition: width 0.2s ease-out;
}

.haupt-nav a:hover::after {
    width: 100%;
}

/* Kopf-Aktionsknöpfe */

.kopf-aktionen {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.knopf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.5rem;
    border-radius: var(--knopf-radius);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.knopf-haupt {
    background: linear-gradient(135deg, var(--akzent-orange), var(--akzent-rot));
    color: #111827;
    box-shadow: var(--schatten-weich);
}

.knopf-haupt:hover {
    filter: brightness(1.1);
    text-decoration: none;
}

.knopf-zweit {
    background: transparent;
    border: 1px solid rgba(249, 250, 251, 0.2);
    color: #e5e7eb;
}

.knopf-zweit:hover {
    border-color: var(--akzent-orange);
    color: #fff;
    text-decoration: none;
}

.knopf-cta {
    padding: 0.8rem 2.2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.knopf-mini {
    padding: 0.35rem 1.1rem;
    font-size: 0.8rem;
    border-radius: var(--knopf-radius);
    background: linear-gradient(135deg, var(--akzent-orange), var(--akzent-rot));
    color: #111827;
    font-weight: 600;
}

.knopf-mini:hover {
    filter: brightness(1.08);
    text-decoration: none;
}

.knopf.gross {
    padding: 1rem 2.6rem;
    font-size: 1.05rem;
}

/* Held-Bereich */

.held {
    position: relative;
    padding: 3.5rem 0 3rem;
    overflow: hidden;
}

.held-ueberzug {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 154, 0, 0.15), transparent 55%),
        radial-gradient(circle at bottom right, rgba(0, 102, 255, 0.2), transparent 55%);
    pointer-events: none;
}

.held-inhalt {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 2.5rem;
    align-items: center;
}

.held-text h2 {
    font-size: 2.1rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.held-text p {
    max-width: 34rem;
    color: var(--text-gedaempft);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.held-bild {
    height: 260px;
    border-radius: 1.5rem;
    background:
        linear-gradient(135deg, rgba(255, 154, 0, 0.1), rgba(255, 75, 43, 0.2)),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(0, 122, 255, 0.3), transparent 55%);
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: var(--schatten-weich);
}

/* Haupttext */

.haupt-inhalt {
    padding: 2.5rem 0 2rem;
}

.haupt-inhalt h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.haupt-inhalt p {
    color: var(--text-gedaempft);
    line-height: 1.7;
}

/* Informationsbereiche */

.info-bereich {
    padding: 2rem 0 3rem;
}

.info-bereich h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    border-left: 4px solid var(--akzent-orange);
    padding-left: 0.6rem;
}

.info-bereich p {
    color: var(--text-gedaempft);
    line-height: 1.7;
}

.info-bereich ul {
    color: var(--text-gedaempft);
    line-height: 1.7;
    padding-left: 1.2rem;
}

.info-bereich li {
    margin-bottom: 0.3rem;
}

.cta-block {
    margin-top: 1rem;
}

/* Tabellen für Boni, Spiele und Zahlungen */

.bonus-tabelle,
.spiele-tabelle,
.zahlung-tabelle {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.bonus-tabelle th,
.bonus-tabelle td,
.spiele-tabelle th,
.spiele-tabelle td,
.zahlung-tabelle th,
.zahlung-tabelle td {
    border: 1px solid rgba(55, 65, 81, 0.8);
    padding: 0.75rem 0.6rem;
    vertical-align: top;
}

.bonus-tabelle thead,
.spiele-tabelle thead,
.zahlung-tabelle thead {
    background: rgba(15, 23, 42, 0.9);
}

.bonus-tabelle tbody tr:nth-child(even),
.spiele-tabelle tbody tr:nth-child(even),
.zahlung-tabelle tbody tr:nth-child(even) {
    background: rgba(15, 23, 42, 0.6);
}

.bonus-tabelle tbody tr:nth-child(odd),
.spiele-tabelle tbody tr:nth-child(odd),
.zahlung-tabelle tbody tr:nth-child(odd) {
    background: rgba(15, 23, 42, 0.3);
}

.spiele-tabelle img {
    display: block;
    width: 90px;
    height: 55px;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* FAQ-Bereich */

.faq-liste {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.faq-eintrag {
    padding: 1rem 1.25rem;
    border-radius: 0.9rem;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(55, 65, 81, 0.7);
}

.faq-eintrag h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
}

.faq-eintrag p {
    margin: 0;
    color: var(--text-gedaempft);
}

/* Kleben-knopf */

.kleben-spielen {
    position: fixed;
    left: 1.25rem;
    bottom: 1.25rem;
    padding: 0.9rem 1.8rem;
    border-radius: var(--knopf-radius);
    background: linear-gradient(135deg, var(--akzent-orange), var(--akzent-rot));
    color: #111827;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: var(--schatten-weich);
    z-index: 60;
    text-decoration: none;
}

.kleben-spielen:hover {
    filter: brightness(1.08);
    text-decoration: none;
}

/* Fussbereich */

.seiten-fuss {
    background: #020617;
    border-top: 1px solid var(--rand-weich);
    padding: 2.5rem 0 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.fuss-inhalt {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.fuss-spalten {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
}

.fuss-spalte h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.fuss-spalte p {
    margin-top: 0;
    color: var(--text-gedaempft);
    line-height: 1.6;
}

.fuss-spalte ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fuss-spalte li {
    margin-bottom: 0.35rem;
}

.fuss-spalte a {
    color: #e5e7eb;
}

.fuss-spalte a:hover {
    color: var(--akzent-orange);
    text-decoration: none;
}

.org-schema {
    background: rgba(15, 23, 42, 0.9);
    padding: 0.75rem 0.9rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(55, 65, 81, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
}

.kontakt-details {
    margin-top: 0.4rem;
}

.fuss-unter {
    border-top: 1px solid var(--rand-weich);
    padding-top: 1rem;
    text-align: center;
    color: var(--text-gedaempft);
}

/* Anpassung für kleinere Bildschirme */

@media (max-width: 980px) {
    .held-inhalt {
        grid-template-columns: minmax(0, 1fr);
    }

    .held-bild {
        order: -1;
        height: 220px;
    }

    .haupt-nav {
        display: none;
    }

    .kopf-inhalt {
        justify-content: space-between;
    }

    .fuss-spalten {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .kopf-inhalt {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .kopf-aktionen {
        gap: 0.4rem;
    }

    .knopf {
        padding: 0.45rem 1.1rem;
        font-size: 0.8rem;
    }

    .held {
        padding-top: 2.2rem;
    }

    .held-text h2 {
        font-size: 1.7rem;
    }

    .fuss-spalten {
        grid-template-columns: minmax(0, 1fr);
    }

    .kleben-spielen {
        left: 50%;
        transform: translateX(-50%);
        bottom: 0.9rem;
    }
}
