/* Grundlegende Seitengestaltung */
*,
*::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: #050b10;
    color: #f3f5f7;
    line-height: 1.7;
}

/* Layout-Helfer */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header und Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(4, 18, 24, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 20px;
    color: #ffd54a;
}

.main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 24px;
}

.main-nav a {
    text-decoration: none;
    color: #e5eaee;
    font-size: 15px;
    font-weight: 500;
}

.main-nav a:hover {
    color: #ffd54a;
}

.header-cta {
    display: flex;
    gap: 12px;
}

/* Schaltflächen */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #ff7a00, #ffb300);
    color: #0b1016;
    box-shadow: 0 8px 18px rgba(255, 140, 0, 0.45);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(255, 140, 0, 0.55);
}

.btn-secondary {
    background: transparent;
    color: #ffd54a;
    border-color: #ffd54a;
}

.btn-secondary:hover {
    background: rgba(255, 213, 74, 0.1);
}

.btn-ghost {
    background: transparent;
    color: #e5eaee;
    border-color: rgba(229, 234, 238, 0.5);
}

.btn-ghost:hover {
    background: rgba(229, 234, 238, 0.08);
}

.btn-accent {
    background: #ff7a00;
    color: #0b1016;
    box-shadow: 0 6px 14px rgba(255, 122, 0, 0.5);
}

.btn-accent:hover {
    background: #ff9800;
}

.btn-wide {
    padding-inline: 32px;
    font-size: 16px;
}

.btn-table {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 999px;
    background: #ff7a00;
    color: #0b1016;
    text-decoration: none;
}

.btn-table:hover {
    background: #ff9800;
}

/* Hero-Bereich */
.hero {
    background: radial-gradient(circle at top, #12302d 0, #050b10 55%);
    padding: 40px 0 32px;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.hero-content h1 {
    font-size: 34px;
    margin: 0 0 16px;
    color: #ffffff;
}

.hero-content p {
    margin: 0 0 12px;
    color: #cdd4dc;
    font-size: 15px;
}

.hero-image {
    min-height: 220px;
    border-radius: 24px;
    background-image: radial-gradient(circle at 20% 0%, rgba(255, 213, 74, 0.22), transparent 55%),
                      radial-gradient(circle at 90% 80%, rgba(255, 122, 0, 0.32), transparent 50%),
                      linear-gradient(145deg, #07161a, #112b29);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

/* Inhaltsbereiche */
.content-section {
    padding: 32px 0 56px;
}

.content-block + .content-block {
    margin-top: 40px;
}

.content-block h2 {
    font-size: 24px;
    margin: 0 0 16px;
    color: #ffffff;
}

.content-block p {
    margin: 0 0 14px;
    font-size: 15px;
    color: #d4dbe3;
}

.content-block ol {
    margin: 0 0 16px 24px;
    padding: 0;
    color: #d4dbe3;
    font-size: 15px;
}

.content-block li {
    margin-bottom: 6px;
}

/* Tabellen */
.table-wrapper {
    overflow-x: auto;
    margin: 16px 0 20px;
}

.bonus-table,
.payment-table,
.games-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 640px;
}

.bonus-table thead,
.payment-table thead,
.games-table thead {
    background: rgba(12, 35, 40, 0.9);
}

.bonus-table th,
.bonus-table td,
.payment-table th,
.payment-table td,
.games-table th,
.games-table td {
    padding: 10px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-align: left;
}

.bonus-table th,
.payment-table th,
.games-table th {
    font-weight: 600;
    color: #f3f5f7;
}

.bonus-table tbody tr:nth-child(odd),
.payment-table tbody tr:nth-child(odd),
.games-table tbody tr:nth-child(odd) {
    background: rgba(12, 30, 34, 0.7);
}

.bonus-table tbody tr:nth-child(even),
.payment-table tbody tr:nth-child(even),
.games-table tbody tr:nth-child(even) {
    background: rgba(7, 18, 22, 0.7);
}

/* Spiele-Bilder */
.games-table img {
    display: block;
    width: 96px;
    height: 54px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.7);
}

/* Links in Tabellen */
.games-table a,
.bonus-table a {
    color: #ffd54a;
    text-decoration: none;
}

.games-table a:hover,
.bonus-table a:hover {
    text-decoration: underline;
}

/* CTA-Block */
.cta-block {
    margin-top: 18px;
}

/* FAQ-Bereich */
.faq-schema {
    margin-top: 10px;
    border-radius: 16px;
    background: rgba(8, 24, 30, 0.9);
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-item + .faq-item {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #ffffff;
}

.faq-item p {
    margin: 0;
    font-size: 14px;
    color: #cdd4dc;
}

/* Fixierte Schaltfläche */
.floating-cta {
    position: fixed;
    left: 16px;
    bottom: 18px;
    z-index: 900;
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7a00, #ffb300);
    color: #0b1016;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(255, 140, 0, 0.7);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.floating-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(255, 140, 0, 0.85);
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #040a0f;
    margin-top: 8px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    padding: 24px 0 16px;
}

.footer-column h3 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 6px;
}

.footer-column a {
    color: #cdd4dc;
    text-decoration: none;
    font-size: 14px;
}

.footer-column a:hover {
    color: #ffd54a;
}

.rg-links {
    margin-top: 8px;
}

.age-warning {
    margin-top: 10px;
    font-size: 13px;
    color: #f29393;
}

.org-schema {
    font-size: 14px;
    color: #cdd4dc;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 10px 0 14px;
    background: #03070b;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #9aa3af;
}

/* Hilfsklasse für versteckte Überschrift */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsives Design */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-image {
        min-height: 160px;
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .bonus-table,
    .payment-table,
    .games-table {
        min-width: 520px;
    }
}

@media (max-width: 720px) {
    .header-inner {
        flex-wrap: wrap;
        gap: 10px;
        height: auto;
        padding: 8px 0 10px;
    }

    .main-nav ul {
        gap: 14px;
        font-size: 14px;
    }

    .header-cta {
        margin-left: auto;
    }

    .floating-cta {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 520px) {
    .header-cta {
        display: none;
    }

    .content-block h2 {
        font-size: 20px;
    }

    .hero-content h1 {
        font-size: 26px;
    }
}
