:root {
    /* Grundfarben und Variablen */
    --bg-main: #050816;
    --bg-elevated: #0e1224;
    --bg-header: rgba(6, 9, 23, 0.9);
    --bg-footer: #050814;
    --accent: #7a2cff;
    --accent-soft: #2b96ff;
    --accent-secondary: #27e8a7;
    --accent-danger: #ff3b6b;
    --text-main: #f5f7ff;
    --text-muted: #9ea4c7;
    --border-soft: rgba(255, 255, 255, 0.07);
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.65);
    --radius-lg: 18px;
    --radius-xl: 26px;
    --transition-fast: 0.2s ease-out;
    --transition-med: 0.3s ease-out;
}

/* Allgemeiner Reset und Basislayout */

*,
*::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 left, #1b1f3a 0, transparent 50%),
        radial-gradient(circle at bottom right, #421b6e 0, transparent 55%),
        var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
}

/* Kopfbereich mit Navigation */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2.5rem;
    background: var(--bg-header);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-soft);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, var(--accent-soft), var(--accent));
    box-shadow: 0 0 18px rgba(123, 44, 255, 0.8);
    font-weight: 700;
    font-size: 20px;
}

.logo-text {
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 14px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.2rem;
    transition: color var(--transition-fast);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-soft));
    transition: width var(--transition-fast);
}

.main-nav a:hover {
    color: var(--text-main);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Kopfbereich – Buttons rechts */

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Allgemeine Button-Stile */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(123, 44, 255, 0.6);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(123, 44, 255, 0.8);
}

.btn-secondary {
    background: rgba(39, 232, 167, 0.1);
    border-color: rgba(39, 232, 167, 0.8);
    color: var(--accent-secondary);
}

.btn-secondary:hover {
    background: rgba(39, 232, 167, 0.18);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--text-main);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-large {
    padding: 0.85rem 2.3rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.45rem 1.2rem;
    font-size: 0.85rem;
}

.btn-link {
    display: inline-flex;
    margin-top: 0.6rem;
    color: var(--accent-soft);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Hero-Bereich mit Call-to-Action */

.hero {
    max-width: 1200px;
    margin: 1.75rem auto 1.5rem;
    padding: 2.2rem 2.5rem;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 10% 0%, rgba(123, 44, 255, 0.35), transparent 60%),
        radial-gradient(circle at 90% 100%, rgba(39, 232, 167, 0.18), transparent 55%),
        linear-gradient(135deg, #06091b, #121833);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 1fr);
    gap: 2rem;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-title {
    font-size: clamp(1.9rem, 3vw, 2.3rem);
    margin: 0 0 0.6rem;
}

.hero-subtitle {
    margin: 0 0 1.4rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.hero-note {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hero – dekoratives Bild */

.hero-image {
    position: relative;
    min-height: 220px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 10% 20%, rgba(123, 44, 255, 0.6), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(43, 150, 255, 0.4), transparent 55%),
        #080c20;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    inset: 20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 232, 167, 0.35), transparent 70%);
    filter: blur(3px);
}

.hero-chip {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    background:
        radial-gradient(circle at 30% 0%, #ffe27a, #ff9e3c);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.65);
}

.hero-chip-1 {
    top: 40px;
    right: 24px;
}

.hero-chip-2 {
    bottom: 24px;
    left: 26px;
    transform: scale(0.8);
}

.hero-card {
    position: absolute;
    width: 100px;
    height: 140px;
    border-radius: 14px;
    background: linear-gradient(145deg, #1b1f3a, #383f76);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-card-1 {
    top: 60px;
    left: 50px;
    transform: rotate(-10deg);
}

.hero-card-2 {
    bottom: 40px;
    right: 60px;
    transform: rotate(12deg);
}

/* Allgemeine Inhaltsbereiche */

.content-section {
    max-width: 1200px;
    margin: 0 auto 1.75rem;
    padding: 1.9rem 2.5rem;
    background: rgba(8, 11, 30, 0.96);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.intro {
    margin-top: 0.5rem;
}

.content-section h1 {
    margin-top: 0;
    margin-bottom: 0.9rem;
    font-size: 1.55rem;
}

.content-section h2 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.35rem;
}

.content-section p {
    margin-top: 0;
    margin-bottom: 0.85rem;
    color: var(--text-main);
    line-height: 1.7;
    font-size: 0.96rem;
}

.note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Listen für Schritte und Merkmale */

.steps-list {
    margin: 0.2rem 0 0.9rem 1.2rem;
    padding-left: 0.4rem;
    color: var(--text-main);
}

.steps-list li {
    margin-bottom: 0.35rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0.3rem 0 0.9rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.35rem;
    color: var(--text-main);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 0.05rem;
    font-size: 0.7rem;
    color: var(--accent-secondary);
}

/* Tabellen für Boni, Spiele und Zahlungen */

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 1rem 0 1.2rem;
}

.bonus-table,
.payments-table,
.games-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 640px;
}

.bonus-table thead,
.payments-table thead,
.games-table thead {
    background: rgba(15, 21, 56, 0.95);
}

.bonus-table th,
.bonus-table td,
.payments-table th,
.payments-table td,
.games-table th,
.games-table td {
    padding: 0.65rem 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
}

.bonus-table th,
.payments-table th,
.games-table th {
    font-weight: 600;
}

.bonus-table tbody tr:nth-child(even),
.payments-table tbody tr:nth-child(even),
.games-table tbody tr:nth-child(even) {
    background: rgba(5, 8, 22, 0.95);
}

.games-table img {
    width: 70px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* FAQs mit Ausklappfunktion */

.faq-list details {
    margin-bottom: 0.7rem;
    border-radius: 12px;
    background: #090d23;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.7rem 1rem;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.98rem;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    font-weight: 700;
    transition: transform var(--transition-fast);
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.faq-list p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Fester Spiel-Button */

.floating-play-button {
    position: fixed;
    left: 1.8rem;
    bottom: 1.8rem;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-soft));
    color: #050816;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition:
        transform var(--transition-med),
        box-shadow var(--transition-med),
        opacity var(--transition-med);
}

.floating-play-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.9);
}

.floating-play-button:active {
    transform: translateY(0) scale(0.99);
}

/* Fussbereich mit Navigation und Hinweisen */

.site-footer {
    margin-top: 2rem;
    padding: 2rem 2.5rem 1.5rem;
    background: var(--bg-footer);
    border-top: 1px solid var(--border-soft);
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 1.8rem;
}

.footer-column h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.footer-column p {
    margin: 0 0 0.7rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-soft);
    text-decoration: underline;
}

.site-footer a {
    color: var(--accent-soft);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.org-schema {
    margin-top: 0.7rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.org-name {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-main);
    font-weight: 600;
}

.org-address {
    margin-bottom: 0.35rem;
}

.org-contact a {
    font-size: 0.9rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.5rem;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-age {
    text-align: right;
}

/* Raster für mehrspaltige Inhalte */

.grid {
    display: grid;
    gap: 1.25rem;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Responsives Verhalten für kleinere Bildschirme */

@media (max-width: 980px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        padding: 1.9rem 1.6rem;
    }

    .content-section {
        padding: 1.7rem 1.6rem;
    }

    .site-header {
        padding-inline: 1.4rem;
    }

    .footer-columns {
        grid-template-columns: minmax(0, 1fr);
    }

    .floating-play-button {
        left: 50%;
        transform: translateX(-50%);
        bottom: 1.4rem;
    }

    .floating-play-button:hover {
        transform: translateX(-50%) translateY(-2px) scale(1.02);
    }
}

@media (max-width: 780px) {
    .main-nav {
        display: none;
    }

    .site-header {
        justify-content: space-between;
        gap: 1rem;
    }
}

@media (max-width: 520px) {
    .header-actions {
        gap: 0.4rem;
    }

    .btn {
        padding-inline: 1.1rem;
    }

    .content-section h1,
    .content-section h2 {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.65rem;
    }
}
