:root {
    --farbe-hintergrund: #050922;
    --farbe-hintergrund-alt: #0b1033;
    --farbe-kopf: #060b2a;
    --farbe-primaer: #f4c542;
    --farbe-primaer-dunkel: #d39f1a;
    --farbe-akzent: #e53935;
    --farbe-text: #f5f5ff;
    --farbe-gedaempft: #b0b4d4;
    --farbe-rahmen: rgba(255, 255, 255, 0.06);

    --schatten-weich: 0 10px 30px rgba(0, 0, 0, 0.45);
    --radius-gross: 18px;
    --radius-pille: 999px;

    --kopf-hoehe: 72px;
}

/* Grundlayout und Zurücksetzung */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #10163f 0, #050922 55%, #030418 100%);
    color: var(--farbe-text);
    line-height: 1.6;
}

/* Kopfbereich und Navigation */

.seitenkopf {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, #050922 0%, #060b2a 40%, #050922 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.kopf-innen {
    max-width: 1200px;
    margin: 0 auto;
    height: var(--kopf-hoehe);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    gap: 1.5rem;
}

/* Logo links */

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fffdc2, #f4c542 55%, #e59b15 100%);
    color: #1c1536;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 0 18px rgba(244, 197, 66, 0.7);
}

.logo-text {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Hauptmenü in der Mitte */

.hauptmenue {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menue-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.menue-links a {
    text-decoration: none;
    color: var(--farbe-gedaempft);
    padding-bottom: 0.2rem;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.menue-links a:hover,
.menue-links a:focus {
    color: var(--farbe-primaer);
    border-color: var(--farbe-primaer);
}

/* Anmeldeknöpfe rechts */

.anmelde-knopfgruppe {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Allgemeine Knöpfe */

.knopf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.3rem;
    border-radius: var(--radius-pille);
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease,
        box-shadow 0.2s ease, color 0.2s ease;
}

.knopf-primaer {
    background: linear-gradient(135deg, var(--farbe-primaer) 0%, var(--farbe-primaer-dunkel) 100%);
    color: #1c1536;
    box-shadow: 0 8px 24px rgba(244, 197, 66, 0.4);
}

.knopf-primaer:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(244, 197, 66, 0.5);
    filter: brightness(1.05);
}

.knopf-rahmen {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--farbe-text);
}

.knopf-rahmen:hover {
    border-color: var(--farbe-primaer);
    color: var(--farbe-primaer);
    transform: translateY(-1px);
}

.knopf-gross {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
}

.knopf-klein {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
}

/* Hero-Abschnitt */

.held {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #ffffff;
    background-image: url("img/starvegas-hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--schatten-weich);
}

.held-ueberzug {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0, rgba(244, 197, 66, 0.15), transparent 55%),
                radial-gradient(circle at 100% 0, rgba(229, 57, 53, 0.25), transparent 60%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(3, 5, 24, 0.95));
}

.held-inhalt {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    width: 100%;
    padding: 3rem 1.5rem 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.held-inhalt h2 {
    font-size: 2rem;
    line-height: 1.3;
    max-width: 680px;
}

.held-inhalt p {
    max-width: 640px;
    color: #f1f2ff;
    font-size: 0.98rem;
}

/* Hauptinhalt */

.inhalt {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

.einstieg h1 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
}

.einstieg p {
    margin-bottom: 0.8rem;
    color: #e3e5ff;
}

/* Textblöcke */

.textblock {
    margin-top: 1.8rem;
    padding: 1.6rem 1.6rem 1.8rem;
    background: radial-gradient(circle at top left, rgba(244, 197, 66, 0.06), transparent 55%),
                var(--farbe-hintergrund-alt);
    border-radius: var(--radius-gross);
    border: 1px solid var(--farbe-rahmen);
    box-shadow: var(--schatten-weich);
}

.textblock h2 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.textblock h2 a {
    color: inherit;
    text-decoration: none;
}

.textblock p {
    margin-bottom: 0.8rem;
}

.textblock ul,
.textblock ol {
    padding-left: 1.4rem;
    margin-top: 0.2rem;
    margin-bottom: 0.8rem;
}

.textblock li {
    margin-bottom: 0.3rem;
}

/* Bonus-Tabelle */

.bonus-tabelle-wrapper {
    margin-top: 1rem;
    overflow-x: auto;
}

.bonus-tabelle {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.bonus-tabelle th,
.bonus-tabelle td {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.7rem 0.8rem;
    vertical-align: top;
}

.bonus-tabelle th {
    background: rgba(5, 9, 34, 0.9);
    text-align: left;
}

/* Spiele-Tabelle */

.spiele-tabelle-wrapper {
    margin-top: 1rem;
    overflow-x: auto;
}

.spiele-tabelle {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.spiele-tabelle th,
.spiele-tabelle td {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.7rem 0.8rem;
    vertical-align: middle;
}

.spiele-tabelle th {
    background: rgba(5, 9, 34, 0.9);
    text-align: left;
}

.spiele-tabelle img {
    display: block;
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Zahlungs- und Auszahlungstabellen */

.zahlung-tabelle-wrapper,
.auszahlung-tabelle-wrapper {
    margin-top: 1rem;
    overflow-x: auto;
}

.zahlung-tabelle,
.auszahlung-tabelle {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.zahlung-tabelle th,
.zahlung-tabelle td,
.auszahlung-tabelle th,
.auszahlung-tabelle td {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.7rem 0.8rem;
    vertical-align: top;
}

.zahlung-tabelle th,
.auszahlung-tabelle th {
    background: rgba(5, 9, 34, 0.9);
    text-align: left;
}

/* FAQ-Bereich */

.faq-liste {
    margin-top: 1rem;
}

.faq-eintrag {
    border-radius: 12px;
    border: 1px solid var(--farbe-rahmen);
    padding: 0.8rem 1rem;
    margin-bottom: 0.7rem;
    background: rgba(3, 6, 35, 0.9);
}

.faq-eintrag h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

/* Fixierter „Jetzt spielen“-Knopf */

.fixierter-spielen-knopf {
    position: fixed;
    left: 1.2rem;
    bottom: 1.2rem;
    z-index: 150;
    padding: 0.75rem 1.4rem;
    border-radius: var(--radius-pille);
    background: linear-gradient(135deg, var(--farbe-akzent) 0%, #ff7043 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.fixierter-spielen-knopf:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.75);
    filter: brightness(1.05);
}

/* Fussbereich */

.seitenfuss {
    background: #030415;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem 1.5rem 2.4rem;
    color: var(--farbe-gedaempft);
}

.fuss-innen {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr) minmax(0, 1.1fr);
    gap: 2rem;
}

.fuss-spalte h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.fuss-menue,
.fuss-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fuss-menue li,
.fuss-links li {
    margin-bottom: 0.35rem;
}

.seitenfuss a {
    color: var(--farbe-gedaempft);
    text-decoration: none;
    transition: color 0.2s ease;
}

.seitenfuss a:hover {
    color: var(--farbe-primaer);
}

.mikrodaten-adresse {
    font-size: 0.9rem;
    line-height: 1.5;
}

.fuss-rechtlich {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: rgba(176, 180, 212, 0.9);
}

/* Reaktion auf kleinere Bildschirme */

@media (max-width: 900px) {
    .kopf-innen {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.75rem 1rem;
        height: auto;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
    }

    .hauptmenue {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .menue-links {
        font-size: 0.8rem;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .anmelde-knopfgruppe {
        order: 2;
    }

    .held {
        min-height: 280px;
    }

    .held-inhalt {
        padding: 2.2rem 1.3rem 2.5rem;
    }

    .held-inhalt h2 {
        font-size: 1.7rem;
    }

    .inhalt {
        padding: 2rem 1.2rem 3.2rem;
    }

    .fuss-innen {
        grid-template-columns: 1fr;
    }

    .fixierter-spielen-knopf {
        left: 50%;
        transform: translateX(-50%);
        bottom: 1rem;
    }

    .fixierter-spielen-knopf:hover {
        transform: translateX(-50%) translateY(-1px);
    }
}

@media (max-width: 600px) {
    .einstieg h1 {
        font-size: 1.7rem;
    }

    .textblock {
        padding: 1.3rem 1.1rem 1.4rem;
    }

    .knopf {
        font-size: 0.85rem;
    }
}
