/* ============================================================
   PROJECT: dippedutt.com (site28-de)
   CSS ARCHITECTURE: Utility-first mit flux- Präfix + Aurora Komponenten
   NAMING: flux-[utility], aurora-[component]
   PALETTE: Aurora Vector (siehe :root)
   EFFECT: Animated Gradient Orbits
   TYPOGRAPHIE: Space Mono (Headings) + IBM Plex Sans (Body)
   BUTTON STYLE: Split Color Buttons (flux-btn--split)
   ============================================================ */

:root {
    --aurora-indigo: #221b3a;
    --aurora-violet: #4d1d78;
    --aurora-orchid: #a027ff;
    --aurora-coral: #ff6d8a;
    --aurora-mint: #44f1c3;
    --aurora-ice: #ebf7ff;
    --aurora-graphite: #101018;
    --aurora-smoke: #1a1f2b;
    --aurora-text: #f5f7ff;
    --aurora-shadow: rgba(17, 12, 32, 0.45);
    --aurora-border: rgba(255, 255, 255, 0.16);
    --aurora-signal: #ff9f1c;
    --aurora-success: #3ee398;
    --aurora-error: #ff3d6b;
    --header-height-desktop: 84px;
    --header-height-mobile: 68px;
    font-size: clamp(15px, 1.05vw, 18px);
}

*, *::before, *::after {
    box-sizing: border-box;
    max-width: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100% !important;
    overflow-x: hidden !important;
    background-color: var(--aurora-graphite);
    color: var(--aurora-text);
    font-family: 'IBM Plex Sans', sans-serif;
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.aurora-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.aurora-shell {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.aurora-section-title {
    font-family: 'Space Mono', monospace;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.aurora-section-copy {
    margin: 0 0 2rem;
    color: rgba(235, 247, 255, 0.72);
}

.aurora-tag,
.aurora-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(68, 241, 195, 0.12);
    color: var(--aurora-ice);
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}

.aurora-tag + .aurora-tag,
.aurora-chip + .aurora-chip {
    margin-left: 0.4rem;
}

/* Utility Buttons */
.flux-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    border: 2px solid transparent;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-position 0.45s ease;
    cursor: pointer;
}

.flux-btn--primary {
    background: linear-gradient(135deg, var(--aurora-coral) 0%, var(--aurora-orchid) 100%);
    color: var(--aurora-text);
    box-shadow: 0 12px 35px rgba(160, 39, 255, 0.3);
}

.flux-btn--ghost {
    background: transparent;
    color: var(--aurora-text);
    border-color: rgba(235, 247, 255, 0.32);
}

.flux-btn--split {
    background: linear-gradient(to right, var(--aurora-coral) 50%, var(--aurora-mint) 50%);
    background-size: 220% 100%;
    background-position: right;
    color: var(--aurora-graphite);
}

.flux-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
}

.flux-btn--split:hover {
    background-position: left;
}

.flux-btn:focus-visible {
    outline: 2px solid var(--aurora-mint);
    outline-offset: 2px;
}

/* Header */
.aurora-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(16, 16, 24, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem min(4vw, 2rem);
    gap: 1.2rem;
}

.aurora-header__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.aurora-header__home {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
}

.aurora-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background: rgba(68, 241, 195, 0.2);
    color: var(--aurora-mint);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.aurora-logo {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.aurora-burger {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(235, 247, 255, 0.18);
    border-radius: 50%;
    background: rgba(18, 18, 28, 0.9);
    color: var(--aurora-text);
    position: relative;
}

.aurora-burger span {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--aurora-mint);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.aurora-burger span:nth-child(1) { top: 16px; }
.aurora-burger span:nth-child(2) { top: 23px; }
.aurora-burger span:nth-child(3) { top: 30px; }

.aurora-burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.aurora-burger.is-open span:nth-child(2) {
    opacity: 0;
}

.aurora-burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.aurora-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    padding: 0.2rem 0 0.6rem;
}

.aurora-nav__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.aurora-nav__link {
    position: relative;
    padding: 0.25rem 0;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.aurora-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--aurora-coral), var(--aurora-orchid));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.aurora-nav__link:hover::after,
.aurora-nav__link:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

main {
    padding-top: var(--header-height-desktop);
}

/* Hero with animated gradient */
.aurora-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(120px, 24vw, 220px) 0 clamp(80px, 16vw, 140px);
    background: radial-gradient(circle at 20% 20%, rgba(160, 39, 255, 0.28), transparent 55%),
                radial-gradient(circle at 80% 10%, rgba(68, 241, 195, 0.24), transparent 52%),
                var(--aurora-smoke);
}

.aurora-hero::before,
.aurora-hero::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: conic-gradient(from 180deg, rgba(255, 109, 138, 0.18), rgba(68, 241, 195, 0.08), rgba(160, 39, 255, 0.18), rgba(255, 159, 28, 0.12));
    animation: auroraGlow 18s infinite linear;
    opacity: 0.65;
    z-index: 0;
}

.aurora-hero::after {
    animation-duration: 24s;
    animation-direction: reverse;
    opacity: 0.4;
}

@keyframes auroraGlow {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

.aurora-hero__content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.aurora-hero__title {
    font-family: 'Space Mono', monospace;
    font-size: clamp(2.4rem, 6vw, 3.4rem);
    margin-bottom: 1rem;
}

.aurora-hero__title-line {
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 520px) {
    .aurora-hero__title-line {
        font-size: 0.78em;
    }
}

.aurora-hero__subtitle {
    color: rgba(235, 247, 255, 0.76);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.aurora-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.aurora-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.aurora-hero__visual {
    position: relative;
    z-index: 1;
}

.aurora-orbit {
    width: clamp(220px, 32vw, 360px);
    aspect-ratio: 1;
    margin-left: auto;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(235, 247, 255, 0.12), rgba(0, 0, 0, 0));
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aurora-orbit__pulse {
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.28);
    animation: orbitSpin 14s infinite linear;
}

.aurora-orbit__core {
    position: relative;
    z-index: 2;
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: var(--aurora-ice);
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Benefits */
.aurora-benefits {
    padding: clamp(70px, 14vw, 110px) 0;
    background: var(--aurora-graphite);
}

.aurora-benefits__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    justify-content: center;
}

.aurora-benefit-card {
    flex: 1 1 clamp(240px, 30vw, 320px);
    padding: 1.8rem;
    background: rgba(24, 24, 38, 0.92);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.36);
}

.aurora-benefit-card__title {
    font-family: 'Space Mono', monospace;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.aurora-benefit-card p {
    color: rgba(235, 247, 255, 0.75);
    line-height: 1.7;
}

/* Games */
.aurora-games {
    padding: clamp(80px, 16vw, 130px) 0;
    background: linear-gradient(180deg, rgba(34, 27, 58, 0.95), rgba(16, 16, 24, 1));
}

.aurora-games__grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: clamp(1.2rem, 2.6vw, 2.4rem);
    flex-wrap: wrap;
}

.aurora-game-card {
    flex: 0 0 auto;
    width: clamp(280px, 26vw, 340px);
    background: rgba(12, 12, 20, 0.85);
    border-radius: 24px;
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 30px 45px rgba(0, 0, 0, 0.42);
}

.aurora-game-card__thumb {
    border-radius: 20px;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.aurora-game-card__body {
    text-align: center;
}

.aurora-game-card__title {
    font-family: 'Space Mono', monospace;
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
}

.aurora-game-card__text {
    color: rgba(235, 247, 255, 0.74);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.aurora-game-card__meta-text {
    font-size: 0.9rem;
    color: rgba(235, 247, 255, 0.62);
    line-height: 1.6;
}

.aurora-game-card__meta {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.4rem;
}

/* Forms */
.aurora-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.aurora-form__label {
    font-size: 0.95rem;
    color: rgba(235, 247, 255, 0.82);
    letter-spacing: 0.02em;
}

.aurora-form__input,
.aurora-form__textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(12, 12, 20, 0.85);
    color: var(--aurora-text);
    font-size: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.aurora-form__textarea {
    min-height: 140px;
    resize: vertical;
}

.aurora-form__input:focus,
.aurora-form__textarea:focus {
    outline: none;
    border-color: var(--aurora-mint);
    box-shadow: 0 0 0 3px rgba(68, 241, 195, 0.18);
}

.aurora-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(235, 247, 255, 0.72);
}

.aurora-form__checkbox input[type="checkbox"] {
    accent-color: var(--aurora-mint);
    margin-top: 0.2rem;
}

.form-status {
    min-height: 1.2rem;
    font-size: 0.85rem;
    color: var(--aurora-mint);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-status.is-visible {
    opacity: 1;
}

.aurora-account-groups {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.aurora-form-group {
    background: rgba(16, 16, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: clamp(14px, 2.5vw, 18px);
    box-shadow: 0 22px 42px rgba(8, 8, 16, 0.35);
}

.aurora-form-toggle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    background: rgba(22, 22, 34, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1rem 1.4rem;
    cursor: pointer;
    color: rgba(235, 247, 255, 0.86);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.aurora-form-toggle:hover,
.aurora-form-toggle:focus-visible {
    border-color: var(--aurora-coral);
    box-shadow: 0 14px 28px rgba(12, 12, 24, 0.45);
    background: rgba(28, 28, 44, 0.96);
}

.aurora-form-toggle.is-active {
    border-color: var(--aurora-mint);
    background: rgba(34, 27, 58, 0.95);
    box-shadow: 0 14px 28px rgba(68, 241, 195, 0.15);
}

.aurora-form-toggle__title {
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.08em;
    font-size: 1rem;
}

.aurora-form-toggle__hint {
    font-size: 0.85rem;
    color: rgba(235, 247, 255, 0.6);
}

.aurora-form-toggle__icon {
    display: none;
}

/* Account Section */
.aurora-games:has(.aurora-account-header) {
    background: linear-gradient(180deg, rgba(34, 27, 58, 0.95), rgba(16, 16, 24, 1));
    padding: clamp(40px, 8vw, 60px) 0;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--header-height-desktop));
}

.aurora-games:has(.aurora-account-header) .aurora-shell {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

/* Account Header */
.aurora-account-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.aurora-account-title {
    font-family: 'Space Mono', monospace;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--aurora-mint);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
    font-weight: 700;
    text-transform: uppercase;
}

.aurora-account-subtitle {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    color: rgba(235, 247, 255, 0.7);
    margin: 0;
}

/* Tabs */
.aurora-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0;
    border-bottom: 2px solid var(--aurora-mint);
    padding-bottom: 0;
}

.aurora-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(22, 22, 34, 0.92);
    border: 2px solid var(--aurora-mint);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    color: var(--aurora-mint);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.aurora-tab:hover {
    background: rgba(34, 27, 58, 0.95);
    box-shadow: 0 2px 8px rgba(68, 241, 195, 0.2);
}

.aurora-tab.is-active {
    background: var(--aurora-mint);
    color: var(--aurora-graphite);
    border-color: var(--aurora-mint);
    box-shadow: 0 4px 12px rgba(68, 241, 195, 0.3);
}

@media (max-width: 640px) {
    .aurora-games:has(.aurora-account-header) {
        min-height: calc(100vh - var(--header-height-mobile));
        padding: clamp(30px, 6vw, 40px) 1rem;
    }
    
    .aurora-games:has(.aurora-account-header) .aurora-shell {
        max-width: 100%;
    }
    
    .aurora-tabs {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .aurora-tab {
        border-radius: 12px;
        border: 2px solid var(--aurora-mint);
        margin-bottom: 0.25rem;
    }
    
    .aurora-account-content {
        border-radius: 12px;
        margin-top: 0.5rem;
        border: 2px solid var(--aurora-mint);
        padding: 1.2rem;
    }
}

/* Account Content */
.aurora-account-content {
    background: rgba(18, 18, 30, 0.92);
    border-radius: 0 12px 12px 12px;
    border: 2px solid var(--aurora-mint);
    border-top: none;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.aurora-account-content .aurora-form {
    gap: 0.7rem;
}

.aurora-account-content .aurora-form__label {
    color: rgba(235, 247, 255, 0.82);
    font-weight: 500;
    font-size: 0.9rem;
}

.aurora-account-content .aurora-form__input,
.aurora-account-content .aurora-form__textarea {
    background: rgba(12, 12, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--aurora-text);
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
}

.aurora-account-content .aurora-form__input:focus,
.aurora-account-content .aurora-form__textarea:focus {
    border-color: var(--aurora-mint);
    box-shadow: 0 0 0 3px rgba(68, 241, 195, 0.18);
}

.aurora-account-content .aurora-form__checkbox {
    color: rgba(235, 247, 255, 0.72);
}

.aurora-account-content .flux-btn--split {
    background: linear-gradient(to right, var(--aurora-coral) 50%, var(--aurora-mint) 50%);
    background-size: 220% 100%;
    background-position: right;
    color: var(--aurora-graphite);
    border: none;
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.aurora-account-content .flux-btn--split:hover {
    background-position: left;
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
}

.aurora-form-panel {
    display: none;
    padding: 0;
    animation: auroraFadeIn 0.3s ease;
}

.aurora-form-panel.is-open {
    display: block;
}

.aurora-form-panel.is-open {
    display: block;
}

.aurora-form-panel__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

@keyframes auroraFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aurora-form.is-sending,
.aurora-form.is-sending * {
    pointer-events: none;
}

/* Leaderboard */
.aurora-leaderboard {
    padding: clamp(70px, 14vw, 110px) 0;
    background: var(--aurora-graphite);
}

.aurora-leaderboard__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.aurora-leaderboard__item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.4rem;
    border-radius: 18px;
    background: rgba(24, 24, 38, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.32);
    font-family: 'Space Mono', monospace;
}

.aurora-leaderboard__score {
    color: var(--aurora-mint);
}

.aurora-leaderboard__note {
    margin-top: clamp(24px, 5vw, 40px);
    text-align: center;
    max-width: clamp(280px, 60vw, 640px);
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials */
.aurora-testimonials {
    padding: clamp(70px, 14vw, 110px) 0;
    background: linear-gradient(180deg, rgba(10, 10, 16, 1), rgba(35, 28, 58, 0.96));
}

.aurora-testimonials__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    justify-content: center;
}

.aurora-testimonial-card {
    flex: 1 1 clamp(260px, 32vw, 360px);
    padding: 1.8rem;
    border-radius: 22px;
    background: rgba(18, 18, 28, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.aurora-testimonial-card::before {
    content: "“";
    position: absolute;
    top: 1rem;
    left: 1.2rem;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.12);
    font-family: 'Space Mono', monospace;
}

.aurora-testimonial-card__quote {
    margin: 1.6rem 0 1rem;
    line-height: 1.8;
}

.aurora-testimonial-card__author {
    font-family: 'Space Mono', monospace;
    color: rgba(235, 247, 255, 0.62);
}

/* FAQ */
.aurora-faq {
    padding: clamp(70px, 14vw, 110px) 0;
    background: var(--aurora-graphite);
}

.aurora-faq__item {
    margin-bottom: 1rem;
    background: rgba(24, 24, 38, 0.92);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.1rem 1.4rem;
    box-shadow: 0 16px 26px rgba(0, 0, 0, 0.32);
}

.aurora-faq__item summary {
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.02em;
    list-style: none;
}

.aurora-faq__item summary::-webkit-details-marker {
    display: none;
}

.aurora-faq__item[open] summary {
    color: var(--aurora-mint);
}

.aurora-faq__item p {
    margin-top: 0.9rem;
    color: rgba(235, 247, 255, 0.76);
    line-height: 1.7;
}

/* Disclaimer */
.aurora-disclaimer {
    padding: clamp(70px, 14vw, 110px) 0;
    background: linear-gradient(180deg, rgba(32, 24, 48, 1), rgba(10, 10, 16, 1));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.aurora-disclaimer__title {
    font-family: 'Space Mono', monospace;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.aurora-disclaimer p {
    color: rgba(235, 247, 255, 0.76);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.aurora-disclaimer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

/* Footer */
.aurora-footer {
    background: rgba(10, 10, 16, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 0 2rem;
}

.aurora-footer__grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.aurora-footer__section {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    width: 100%;
}

.aurora-footer__heading {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.08em;
}

.aurora-footer__link {
    color: rgba(235, 247, 255, 0.72);
    font-size: 0.95rem;
}

.aurora-footer__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.aurora-footer__logo {
    height: 72px !important;
    width: auto !important;
    min-width: 140px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 0.75rem;
    border: 1px solid rgba(16, 16, 24, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aurora-footer__logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3);
}

.aurora-footer__age {
    height: 44px;
    width: auto;
    margin-top: 1rem;
}

.aurora-footer__legal {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(235, 247, 255, 0.6);
    text-align: center;
}

.aurora-footer__logos-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 900px) {
    .aurora-footer__grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2.5rem;
        justify-items: stretch;
        align-items: start;
        text-align: left;
        width: 100%;
    }

    .aurora-footer__section {
        align-items: flex-start;
        width: 100%;
    }

    .aurora-footer__section:nth-child(1) {
        justify-self: flex-start;
    }

    .aurora-footer__section:nth-child(2) {
        justify-self: center;
        align-items: center;
        text-align: center;
    }

    .aurora-footer__section:nth-child(3) {
        justify-self: flex-end;
        align-items: flex-end;
        text-align: right;
    }

    .aurora-footer__logos-row {
        margin-top: 2rem;
    }
}

/* Overlays: Age Gate */
.aurora-age {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 18, 0.9);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    padding: 1.5rem;
}

.aurora-age.is-visible {
    display: flex;
}

.aurora-age__window {
    width: min(520px, 92vw);
    background: rgba(16, 16, 24, 0.98);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 35px 55px rgba(0, 0, 0, 0.48);
    padding: 1.8rem;
}

.aurora-age__title {
    font-family: 'Space Mono', monospace;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.aurora-age__content p {
    line-height: 1.7;
    color: rgba(235, 247, 255, 0.78);
}

.aurora-age__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.4rem 0;
}

.aurora-age__notice {
    font-size: 0.85rem;
    color: rgba(235, 247, 255, 0.6);
}

/* Cookie banner */
.aurora-cookie {
    position: fixed;
    right: 1.6rem;
    bottom: 1.6rem;
    width: min(340px, 90vw);
    background: linear-gradient(135deg, rgba(16, 16, 24, 0.95), rgba(34, 27, 58, 0.92));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.4rem;
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.42);
    z-index: 1100;
    display: none;
}

.aurora-cookie p {
    color: rgba(235, 247, 255, 0.76);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.aurora-cookie__actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.aurora-cookie.is-visible {
    display: block;
}

/* Responsive rules */
@media (max-width: 960px) {
    :root {
        --header-height-desktop: var(--header-height-mobile);
    }

    .aurora-burger {
        display: inline-flex;
    }

    .aurora-nav {
        position: fixed;
        inset: var(--header-height-mobile) 0 auto 0;
        background: rgba(10, 10, 16, 0.96);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        flex-direction: column;
        padding: 1.2rem 1.6rem 2rem;
        z-index: 999;
        justify-content: flex-start;
        margin-left: 0;
    }

    .aurora-nav.is-open {
        transform: translateY(0);
    }

    .aurora-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .aurora-hero {
        padding-top: 120px;
    }

    .aurora-shell {
        width: min(620px, 92vw);
    }

    .aurora-benefits__grid,
    .aurora-testimonials__grid,
    .aurora-games__grid {
        flex-direction: column;
        align-items: center;
    }

    .aurora-game-card {
        width: min(360px, 100%);
    }
}

@media (max-width: 540px) {
    .aurora-cookie {
        right: 0.6rem;
        left: 0.6rem;
        bottom: 0.6rem;
        width: auto;
    }

    .aurora-age__window {
        padding: 1.4rem;
    }

    .aurora-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .aurora-tag {
        width: 100%;
        justify-content: center;
    }

    .aurora-leaderboard__item {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }
}

/* Accessibility helpers */
.aurora-nav__link:focus-visible,
.aurora-footer__link:focus-visible {
    outline: 2px solid var(--aurora-mint);
    outline-offset: 4px;
}

.aurora-game-card a:focus-visible {
    outline: 2px solid var(--aurora-coral);
    outline-offset: 4px;
}
