/* index.html */
@font-face {
            font-family: "Ethnocentric ROG";
            src:
                url("../fonts/ethnocentric-rg.woff2") format("woff2"),
                url("../fonts/ethnocentric-rg.woff") format("woff");
            font-weight: 400 900;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --ink: #171316;
            --muted: #635d62;
            --paper: #fff9f0;
            --surface: #ffffff;
            --primary: #c400d4;
            --primary-dark: #840094;
            --orange: #ff7a1a;
            --yellow: #ffc928;
            --green: #1f9d68;
            --line: rgba(23, 19, 22, 0.13);
            --shadow: 0 22px 55px rgba(23, 19, 22, 0.16);
            --display-font: "Ethnocentric ROG", "Ethnocentric", "Orbitron", "Arial Black", sans-serif;
            --max: 1180px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--ink);
            background: var(--paper);
            line-height: 1.6;
        }

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

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

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

        h1,
        h2,
        h3 {
            margin: 0;
            font-family: var(--display-font);
            font-weight: 900;
            letter-spacing: 0;
            line-height: 1.02;
            text-transform: uppercase;
        }

        p {
            margin: 0;
        }

        .container {
            width: min(var(--max), calc(100% - 40px));
            margin: 0 auto;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(23, 19, 22, 0.94);
            backdrop-filter: blur(14px);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            min-height: 72px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            font-weight: 900;
            text-transform: uppercase;
        }

        .brand-mark {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 92px;
            height: 44px;
            padding: 7px 8px;
            border: 2px solid var(--primary);
            background: #fff;
        }

        .brand-mark img {
            width: 100%;
            height: auto;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            padding: 0 13px;
            border-radius: 6px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.88rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .nav-links a:hover,
        .nav-links a:focus-visible {
            background: rgba(196, 0, 212, 0.18);
            color: #fff;
            outline: none;
        }

        .hero {
            position: relative;
            overflow: hidden;
            min-height: min(780px, calc(100vh - 72px));
            display: flex;
            align-items: center;
            padding: 56px 0 72px;
            color: #fff;
            background:
                linear-gradient(120deg, rgba(23, 19, 22, 0.98), rgba(23, 19, 22, 0.94) 46%, rgba(132, 0, 148, 0.78)),
                #171316;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: 0.1;
            background:
                url("https://rog-fest.de/wp-content/uploads/2019/10/cropped-final-e1575916444290.png") right 8% center / min(720px, 62vw) auto no-repeat;
            pointer-events: none;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 10px;
            background: linear-gradient(90deg, var(--primary), var(--orange), var(--yellow), var(--green));
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
            align-items: start;
            gap: 44px;
        }

        .hero h1 {
            max-width: 780px;
            font-size: clamp(4.4rem, 13vw, 10rem);
        }

        .hero-logo {
            width: min(620px, 100%);
            padding: 22px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.94);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
        }

        .hero-logo img {
            width: 100%;
            height: auto;
        }

        .hero-copy {
            max-width: 650px;
            margin-top: 24px;
            color: rgba(255, 255, 255, 0.82);
            font-size: clamp(1.02rem, 2vw, 1.24rem);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 32px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 48px;
            padding: 0 18px;
            border: 2px solid transparent;
            border-radius: 7px;
            font-weight: 900;
            text-transform: uppercase;
            transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
        }

        .btn:hover,
        .btn:focus-visible {
            transform: translateY(-2px);
            outline: none;
        }

        .btn-primary {
            background: var(--orange);
            color: #1d1008;
        }

        .btn-ghost {
            border-color: rgba(255, 255, 255, 0.34);
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .hero-panel {
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.94);
            color: var(--ink);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .event-panel-body {
            display: grid;
            gap: 18px;
            padding: 24px;
        }

        .status-label {
            color: var(--primary-dark);
            font-size: 0.84rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .event-panel-body h2 {
            font-size: clamp(1.45rem, 2.5vw, 2.05rem);
            color: var(--primary-dark);
            line-height: 1.08;
            overflow-wrap: normal;
            word-break: normal;
            hyphens: none;
            max-width: 100%;
            padding-right: 10px;
        }

        .meta-grid {
            display: grid;
            gap: 10px;
        }

        .meta-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding-top: 12px;
            border-top: 1px solid var(--line);
        }

        .meta-item i {
            width: 20px;
            margin-top: 4px;
            color: var(--orange);
        }

        .meta-item strong {
            display: block;
            line-height: 1.35;
        }

        .section {
            padding: 82px 0;
        }

        .section-dark {
            color: #fff;
            background: var(--ink);
        }

        .section-compact {
            padding: 72px 0;
        }

        .section-header {
            display: grid;
            grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
            gap: 34px;
            align-items: end;
            margin-bottom: 34px;
        }

        .section-kicker {
            margin-bottom: 10px;
            color: var(--primary-dark);
            font-weight: 900;
            text-transform: uppercase;
        }

        .section-dark .section-kicker {
            color: var(--yellow);
        }

        .section h2 {
            font-size: clamp(3rem, 7vw, 6.4rem);
        }

        .section-lead {
            color: var(--muted);
            font-size: 1.05rem;
        }

        .section-dark .section-lead {
            color: rgba(255, 255, 255, 0.72);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .feature-card {
            min-height: 190px;
            padding: 22px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--surface);
            box-shadow: 0 12px 30px rgba(23, 19, 22, 0.07);
        }

        .feature-card i {
            margin-bottom: 24px;
            color: var(--primary);
            font-size: 1.7rem;
        }

        .feature-card h3 {
            margin-bottom: 8px;
            font-size: 2rem;
        }

        .feature-card p {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .program-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
            gap: 24px;
            align-items: stretch;
        }

        .timeline {
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 8px;
            overflow: hidden;
        }

        .timeline-row {
            display: grid;
            grid-template-columns: 112px minmax(0, 1fr);
            gap: 18px;
            padding: 18px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.13);
            background: rgba(255, 255, 255, 0.04);
        }

        .timeline-row:last-child {
            border-bottom: 0;
        }

        .timeline-time {
            color: var(--yellow);
            font-weight: 900;
        }

        .timeline-title {
            margin-bottom: 4px;
            font-weight: 900;
        }

        .timeline-text {
            color: rgba(255, 255, 255, 0.72);
        }

        .program-note {
            display: grid;
            align-content: space-between;
            min-height: 100%;
            padding: 24px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--primary-dark), #421247);
        }

        .program-note h3 {
            font-size: 2.5rem;
        }

        .program-note p {
            margin-top: 12px;
            color: rgba(255, 255, 255, 0.78);
        }

        .info-stack {
            display: grid;
            gap: 10px;
            margin-top: 20px;
        }

        .info-pill {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 12px 14px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.08);
        }

        .info-pill i {
            width: 20px;
            margin-top: 3px;
            color: var(--yellow);
        }

        .info-pill strong {
            display: block;
            margin-bottom: 2px;
        }

        .info-pill span {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.94rem;
        }

        .gallery-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
            gap: 28px;
            align-items: center;
        }

        .gallery-frame {
            position: relative;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #111;
            box-shadow: var(--shadow);
        }

        .gallery-frame img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
        }

        .gallery-frame.is-empty {
            display: grid;
            min-height: 360px;
            place-items: center;
            padding: 28px;
            color: rgba(255, 255, 255, 0.78);
            text-align: center;
        }

        .gallery-frame.is-empty img {
            display: none;
        }

        .gallery-caption {
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 14px;
            display: flex;
            justify-content: space-between;
            gap: 14px;
            padding: 10px 12px;
            border-radius: 7px;
            color: #fff;
            background: rgba(23, 19, 22, 0.74);
            font-size: 0.9rem;
            font-weight: 800;
        }

        .gallery-frame.is-empty .gallery-caption {
            position: static;
            display: block;
            background: transparent;
        }

        .section h2.gallery-title {
            font-size: clamp(1.8rem, 2.5vw, 2.2rem);
            line-height: 1.12;
        }

        .gallery-list {
            display: grid;
            gap: 12px;
            margin: 24px 0 0;
            padding: 0;
            list-style: none;
        }

        .gallery-list li {
            display: flex;
            gap: 12px;
            align-items: center;
            padding: 14px 0;
            border-top: 1px solid var(--line);
            font-weight: 800;
        }

        .gallery-list i {
            color: var(--green);
        }

        .contact-band {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(360px, 0.5fr);
            gap: 28px;
            align-items: stretch;
            padding: 34px;
            border-radius: 8px;
            color: #fff;
            background: var(--ink);
        }

        .contact-band h2 {
            margin-bottom: 10px;
            font-size: clamp(2.6rem, 6vw, 5rem);
        }

        .contact-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 22px;
        }

        .contact-row .contact-actions {
            margin-top: 10px;
        }

        .contact-card {
            display: grid;
            gap: 16px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.07);
        }

        .contact-row {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .contact-row:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }

        .contact-row i {
            width: 20px;
            margin-top: 4px;
            color: var(--orange);
        }

        .contact-row strong {
            display: block;
            margin-bottom: 2px;
        }

        .contact-row span,
        .contact-row a {
            color: rgba(255, 255, 255, 0.76);
        }

        .contact-row a:hover {
            color: #fff;
            text-decoration: underline;
        }

        @media (min-width: 1100px) {
            .section-compact .section-header {
                margin-bottom: 28px;
            }

            .program-note {
                align-content: start;
                gap: 24px;
            }

            .program-note .btn {
                width: fit-content;
            }

            .contact-band > div:first-child {
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
        }

        .social-link {
            display: inline-grid;
            width: 48px;
            height: 48px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 7px;
            color: #fff;
            font-size: 1.15rem;
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .social-link:hover,
        .social-link:focus-visible {
            transform: translateY(-2px);
            background: var(--primary);
            outline: none;
        }

        .footer {
            padding: 28px 0;
            color: rgba(255, 255, 255, 0.72);
            background: #0e0b0d;
            font-size: 0.92rem;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            flex-wrap: wrap;
        }

        .footer a {
            color: #fff;
            font-weight: 700;
        }

        @media (max-width: 920px) {
            .nav {
                align-items: flex-start;
                flex-direction: column;
                gap: 12px;
                padding: 14px 0;
            }

            .nav-links {
                width: 100%;
                overflow-x: auto;
                padding-bottom: 3px;
            }

            .hero {
                min-height: auto;
            }

            .hero-grid,
            .section-header,
            .program-layout,
            .gallery-layout,
            .contact-band {
                grid-template-columns: 1fr;
            }

            .feature-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 620px) {
            .container {
                width: min(100% - 28px, var(--max));
            }

            .hero {
                padding: 38px 0 56px;
                background-position: center top;
            }

            .hero h1 {
                font-size: 4.2rem;
            }

            .hero-copy,
            .section-lead {
                font-size: 1rem;
            }

            .hero-panel,
            .feature-card,
            .contact-band {
                border-radius: 8px;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .timeline-row {
                grid-template-columns: 1fr;
                gap: 6px;
            }

            .contact-actions {
                width: 100%;
            }

        }

/* events.html */
@font-face {
            font-family: "Ethnocentric ROG";
            src:
                url("../fonts/ethnocentric-rg.woff2") format("woff2"),
                url("../fonts/ethnocentric-rg.woff") format("woff");
            font-weight: 400 900;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --ink: #171316;
            --muted: #635d62;
            --paper: #fff9f0;
            --surface: #ffffff;
            --primary: #c400d4;
            --primary-dark: #840094;
            --orange: #ff7a1a;
            --yellow: #ffc928;
            --green: #1f9d68;
            --line: rgba(23, 19, 22, 0.13);
            --shadow: 0 22px 55px rgba(23, 19, 22, 0.16);
            --display-font: "Ethnocentric ROG", "Ethnocentric", "Orbitron", "Arial Black", sans-serif;
            --max: 1180px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--ink);
            background: var(--paper);
            line-height: 1.6;
        }

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

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

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

        h1,
        h2,
        h3 {
            margin: 0;
            font-family: var(--display-font);
            font-weight: 900;
            letter-spacing: 0;
            line-height: 1.02;
            text-transform: uppercase;
        }

        p {
            margin: 0;
        }

        .container {
            width: min(var(--max), calc(100% - 40px));
            margin: 0 auto;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(23, 19, 22, 0.94);
            backdrop-filter: blur(14px);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            min-height: 72px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            font-weight: 900;
            text-transform: uppercase;
        }

        .brand-mark {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 92px;
            height: 44px;
            padding: 7px 8px;
            border: 2px solid var(--primary);
            background: #fff;
        }

        .brand-mark img {
            width: 100%;
            height: auto;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            padding: 0 13px;
            border-radius: 6px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.88rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .nav-links a:hover,
        .nav-links a:focus-visible {
            background: rgba(196, 0, 212, 0.18);
            color: #fff;
            outline: none;
        }

        .hero {
            position: relative;
            overflow: hidden;
            min-height: min(780px, calc(100vh - 72px));
            display: flex;
            align-items: center;
            padding: 56px 0 72px;
            color: #fff;
            background:
                linear-gradient(120deg, rgba(23, 19, 22, 0.98), rgba(23, 19, 22, 0.94) 46%, rgba(132, 0, 148, 0.78)),
                #171316;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: 0.1;
            background:
                url("https://rog-fest.de/wp-content/uploads/2019/10/cropped-final-e1575916444290.png") right 8% center / min(720px, 62vw) auto no-repeat;
            pointer-events: none;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 10px;
            background: linear-gradient(90deg, var(--primary), var(--orange), var(--yellow), var(--green));
        }

        .page-hero {
            position: relative;
            overflow: hidden;
            padding: 92px 0 76px;
            color: #fff;
            background:
                linear-gradient(120deg, rgba(23, 19, 22, 0.98), rgba(23, 19, 22, 0.9) 52%, rgba(132, 0, 148, 0.78)),
                #171316;
        }

        .page-hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 10px;
            background: linear-gradient(90deg, var(--primary), var(--orange), var(--yellow), var(--green));
        }

        .page-hero h1 {
            max-width: 900px;
            font-size: clamp(3.8rem, 8vw, 7.6rem);
        }

        .page-hero p {
            max-width: 720px;
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 1.16rem;
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
            align-items: start;
            gap: 44px;
        }

        .hero h1 {
            max-width: 780px;
            font-size: clamp(4.4rem, 13vw, 10rem);
        }

        .hero-logo {
            width: min(620px, 100%);
            padding: 22px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.94);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
        }

        .hero-logo img {
            width: 100%;
            height: auto;
        }

        .hero-copy {
            max-width: 650px;
            margin-top: 24px;
            color: rgba(255, 255, 255, 0.82);
            font-size: clamp(1.02rem, 2vw, 1.24rem);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 32px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 48px;
            padding: 0 18px;
            border: 2px solid transparent;
            border-radius: 7px;
            font-weight: 900;
            text-transform: uppercase;
            transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
        }

        .btn:hover,
        .btn:focus-visible {
            transform: translateY(-2px);
            outline: none;
        }

        .btn-primary {
            background: var(--orange);
            color: #1d1008;
        }

        .btn-ghost {
            border-color: rgba(255, 255, 255, 0.34);
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .hero-panel {
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.94);
            color: var(--ink);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .event-panel-body {
            display: grid;
            gap: 18px;
            padding: 24px;
        }

        .status-label {
            color: var(--primary-dark);
            font-size: 0.84rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .event-panel-body h2 {
            font-size: 2.45rem;
            color: var(--primary-dark);
        }

        .meta-grid {
            display: grid;
            gap: 10px;
        }

        .meta-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding-top: 12px;
            border-top: 1px solid var(--line);
        }

        .meta-item i {
            width: 20px;
            margin-top: 4px;
            color: var(--orange);
        }

        .meta-item strong {
            display: block;
            line-height: 1.35;
        }

        .section {
            padding: 82px 0;
        }

        .section-dark {
            color: #fff;
            background: var(--ink);
        }

        .section-compact {
            padding: 72px 0;
        }

        .section-header {
            display: grid;
            grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
            gap: 34px;
            align-items: end;
            margin-bottom: 34px;
        }

        .section-kicker {
            margin-bottom: 10px;
            color: var(--primary-dark);
            font-weight: 900;
            text-transform: uppercase;
        }

        .section-dark .section-kicker {
            color: var(--yellow);
        }

        .section h2 {
            font-size: clamp(3rem, 7vw, 6.4rem);
        }

        .section-lead {
            color: var(--muted);
            font-size: 1.05rem;
        }

        .section-dark .section-lead {
            color: rgba(255, 255, 255, 0.72);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .feature-card {
            min-height: 190px;
            padding: 22px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--surface);
            box-shadow: 0 12px 30px rgba(23, 19, 22, 0.07);
        }

        .feature-card i {
            margin-bottom: 24px;
            color: var(--primary);
            font-size: 1.7rem;
        }

        .feature-card h3 {
            margin-bottom: 8px;
            font-size: 2rem;
        }

        .feature-card p {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .program-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
            gap: 24px;
            align-items: stretch;
        }

        .timeline {
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 8px;
            overflow: hidden;
        }

        .timeline-row {
            display: grid;
            grid-template-columns: 112px minmax(0, 1fr);
            gap: 18px;
            padding: 18px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.13);
            background: rgba(255, 255, 255, 0.04);
        }

        .timeline-row:last-child {
            border-bottom: 0;
        }

        .timeline-time {
            color: var(--yellow);
            font-weight: 900;
        }

        .timeline-title {
            margin-bottom: 4px;
            font-weight: 900;
        }

        .timeline-text {
            color: rgba(255, 255, 255, 0.72);
        }

        .program-note {
            display: grid;
            align-content: space-between;
            min-height: 100%;
            padding: 24px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--primary-dark), #421247);
        }

        .program-note h3 {
            font-size: 2.5rem;
        }

        .program-note p {
            margin-top: 12px;
            color: rgba(255, 255, 255, 0.78);
        }

        .info-stack {
            display: grid;
            gap: 10px;
            margin-top: 20px;
        }

        .info-pill {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 12px 14px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.08);
        }

        .info-pill i {
            width: 20px;
            margin-top: 3px;
            color: var(--yellow);
        }

        .info-pill strong {
            display: block;
            margin-bottom: 2px;
        }

        .info-pill span {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.94rem;
        }

        .events-board {
            display: grid;
            gap: 52px;
        }

        .event-year-group {
            display: grid;
            gap: 16px;
        }

        .event-year-board {
            display: grid;
            gap: 34px;
        }

        .event-year-title {
            display: flex;
            align-items: center;
            gap: 16px;
            color: var(--yellow);
            font-family: var(--display-font);
            font-size: clamp(1.35rem, 3vw, 2.2rem);
            font-weight: 900;
        }

        .event-year-title::after {
            content: "";
            height: 1px;
            flex: 1;
            background: rgba(255, 255, 255, 0.18);
        }

        .events-group-head {
            display: flex;
            justify-content: space-between;
            gap: 24px;
            align-items: end;
            margin-bottom: 16px;
        }

        .events-group-head h3 {
            font-size: clamp(2rem, 3vw, 3rem);
        }

        .events-group-head p {
            max-width: 520px;
            color: rgba(255, 255, 255, 0.64);
        }

        .event-list {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .event-card {
            display: grid;
            grid-template-rows: auto 1fr auto;
            gap: 18px;
            min-height: 100%;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 8px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
        }

        .event-card.is-past {
            background: rgba(255, 255, 255, 0.035);
            opacity: 0.82;
        }

        .event-card-head {
            display: grid;
            grid-template-columns: 86px minmax(0, 1fr);
            gap: 16px;
            align-items: start;
        }

        .event-date-tile {
            display: grid;
            min-height: 86px;
            place-items: center;
            border-radius: 8px;
            color: #1d1008;
            background: var(--yellow);
            font-weight: 900;
            text-transform: uppercase;
        }

        .event-date-tile strong {
            display: block;
            font-family: var(--display-font);
            font-size: 2rem;
            line-height: 1;
        }

        .event-date-tile span {
            font-size: 0.78rem;
            line-height: 1;
        }

        .event-card h3 {
            font-size: clamp(1.35rem, 1.8vw, 1.85rem);
            color: #fff;
            overflow-wrap: normal;
            word-break: normal;
            hyphens: none;
        }

        .event-card-title {
            grid-column: 1 / -1;
        }

        .event-card p {
            color: rgba(255, 255, 255, 0.72);
        }

        .event-card-meta + p {
            margin-top: 14px;
        }

        .event-card-meta {
            display: grid;
            gap: 9px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.94rem;
        }

        .event-card-meta span {
            display: flex;
            gap: 9px;
            align-items: flex-start;
        }

        .event-card-meta i {
            width: 18px;
            margin-top: 3px;
            color: var(--yellow);
        }

        .event-badge {
            width: fit-content;
            max-width: 100%;
            padding: 5px 8px;
            border-radius: 6px;
            background: rgba(255, 201, 40, 0.16);
            color: var(--yellow);
            font-size: 0.75rem;
            font-weight: 900;
            text-transform: uppercase;
            overflow-wrap: anywhere;
            word-break: normal;
            hyphens: none;
        }

        .event-card-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding-top: 4px;
        }

        .event-card-actions .btn {
            min-height: 42px;
            padding: 0 13px;
            font-size: 0.82rem;
        }

        .event-empty {
            padding: 20px;
            border: 1px dashed rgba(255, 255, 255, 0.22);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.68);
        }

        .gallery-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
            gap: 28px;
            align-items: center;
        }

        .gallery-frame {
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #111;
            box-shadow: var(--shadow);
        }

        .gallery-frame img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
        }

        .gallery-list {
            display: grid;
            gap: 12px;
            margin: 24px 0 0;
            padding: 0;
            list-style: none;
        }

        .gallery-list li {
            display: flex;
            gap: 12px;
            align-items: center;
            padding: 14px 0;
            border-top: 1px solid var(--line);
            font-weight: 800;
        }

        .gallery-list i {
            color: var(--green);
        }

        .contact-band {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(360px, 0.5fr);
            gap: 28px;
            align-items: stretch;
            padding: 34px;
            border-radius: 8px;
            color: #fff;
            background: var(--ink);
        }

        .contact-band h2 {
            margin-bottom: 10px;
            font-size: clamp(2.6rem, 6vw, 5rem);
        }

        .contact-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 22px;
        }

        .contact-row .contact-actions {
            margin-top: 10px;
        }

        .contact-card {
            display: grid;
            gap: 16px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.07);
        }

        .contact-row {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .contact-row:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }

        .contact-row i {
            width: 20px;
            margin-top: 4px;
            color: var(--orange);
        }

        .contact-row strong {
            display: block;
            margin-bottom: 2px;
        }

        .contact-row span,
        .contact-row a {
            color: rgba(255, 255, 255, 0.76);
        }

        .contact-row a:hover {
            color: #fff;
            text-decoration: underline;
        }

        @media (min-width: 1100px) {
            .section-compact .section-header {
                margin-bottom: 28px;
            }

            .program-note {
                align-content: start;
                gap: 24px;
            }

            .program-note .btn {
                width: fit-content;
            }

            .contact-band > div:first-child {
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
        }

        .social-link {
            display: inline-grid;
            width: 48px;
            height: 48px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 7px;
            color: #fff;
            font-size: 1.15rem;
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .social-link:hover,
        .social-link:focus-visible {
            transform: translateY(-2px);
            background: var(--primary);
            outline: none;
        }

        .footer {
            padding: 28px 0;
            color: rgba(255, 255, 255, 0.72);
            background: #0e0b0d;
            font-size: 0.92rem;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            flex-wrap: wrap;
        }

        .footer a {
            color: #fff;
            font-weight: 700;
        }

        @media (max-width: 920px) {
            .nav {
                align-items: flex-start;
                flex-direction: column;
                gap: 12px;
                padding: 14px 0;
            }

            .nav-links {
                width: 100%;
                overflow-x: auto;
                padding-bottom: 3px;
            }

            .events-group-head {
                display: grid;
            }

            .hero {
                min-height: auto;
            }

            .hero-grid,
            .section-header,
            .program-layout,
            .event-list,
            .gallery-layout,
            .contact-band {
                grid-template-columns: 1fr;
            }

            .feature-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 620px) {
            .container {
                width: min(100% - 28px, var(--max));
            }

            .hero {
                padding: 38px 0 56px;
                background-position: center top;
            }

            .hero h1 {
                font-size: 4.2rem;
            }

            .hero-copy,
            .section-lead {
                font-size: 1rem;
            }

            .hero-panel,
            .feature-card,
            .contact-band {
                border-radius: 8px;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .timeline-row {
                grid-template-columns: 1fr;
                gap: 6px;
            }

            .contact-actions {
                width: 100%;
            }
        }

/* programm.html */
@font-face {
            font-family: "Ethnocentric ROG";
            src:
                url("../fonts/ethnocentric-rg.woff2") format("woff2"),
                url("../fonts/ethnocentric-rg.woff") format("woff");
            font-weight: 400 900;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --ink: #171316;
            --muted: #635d62;
            --paper: #fff9f0;
            --surface: #ffffff;
            --primary: #c400d4;
            --primary-dark: #840094;
            --orange: #ff7a1a;
            --yellow: #ffc928;
            --green: #1f9d68;
            --line: rgba(23, 19, 22, 0.13);
            --shadow: 0 22px 55px rgba(23, 19, 22, 0.16);
            --display-font: "Ethnocentric ROG", "Ethnocentric", "Orbitron", "Arial Black", sans-serif;
            --max: 1180px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--ink);
            background: var(--paper);
            line-height: 1.6;
        }

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

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

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

        h1,
        h2,
        h3 {
            margin: 0;
            font-family: var(--display-font);
            font-weight: 900;
            letter-spacing: 0;
            line-height: 1.02;
            text-transform: uppercase;
        }

        p {
            margin: 0;
        }

        .container {
            width: min(var(--max), calc(100% - 40px));
            margin: 0 auto;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(23, 19, 22, 0.94);
            backdrop-filter: blur(14px);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            min-height: 72px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            font-weight: 900;
            text-transform: uppercase;
        }

        .brand-mark {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 92px;
            height: 44px;
            padding: 7px 8px;
            border: 2px solid var(--primary);
            background: #fff;
        }

        .brand-mark img {
            width: 100%;
            height: auto;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            padding: 0 13px;
            border-radius: 6px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.88rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .nav-links a:hover,
        .nav-links a:focus-visible {
            background: rgba(196, 0, 212, 0.18);
            color: #fff;
            outline: none;
        }

        .hero {
            position: relative;
            overflow: hidden;
            min-height: min(780px, calc(100vh - 72px));
            display: flex;
            align-items: center;
            padding: 56px 0 72px;
            color: #fff;
            background:
                linear-gradient(120deg, rgba(23, 19, 22, 0.98), rgba(23, 19, 22, 0.94) 46%, rgba(132, 0, 148, 0.78)),
                #171316;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: 0.1;
            background:
                url("https://rog-fest.de/wp-content/uploads/2019/10/cropped-final-e1575916444290.png") right 8% center / min(720px, 62vw) auto no-repeat;
            pointer-events: none;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 10px;
            background: linear-gradient(90deg, var(--primary), var(--orange), var(--yellow), var(--green));
        }

        .page-hero {
            position: relative;
            overflow: hidden;
            padding: 92px 0 76px;
            color: #fff;
            background:
                linear-gradient(120deg, rgba(23, 19, 22, 0.98), rgba(23, 19, 22, 0.9) 52%, rgba(132, 0, 148, 0.78)),
                #171316;
        }

        .page-hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 10px;
            background: linear-gradient(90deg, var(--primary), var(--orange), var(--yellow), var(--green));
        }

        .page-hero h1 {
            max-width: 900px;
            font-size: clamp(3.8rem, 8vw, 7.6rem);
        }

        .page-hero p {
            max-width: 720px;
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 1.16rem;
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
            align-items: start;
            gap: 44px;
        }

        .hero h1 {
            max-width: 780px;
            font-size: clamp(4.4rem, 13vw, 10rem);
        }

        .hero-logo {
            width: min(620px, 100%);
            padding: 22px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.94);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
        }

        .hero-logo img {
            width: 100%;
            height: auto;
        }

        .hero-copy {
            max-width: 650px;
            margin-top: 24px;
            color: rgba(255, 255, 255, 0.82);
            font-size: clamp(1.02rem, 2vw, 1.24rem);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 32px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 48px;
            padding: 0 18px;
            border: 2px solid transparent;
            border-radius: 7px;
            font-weight: 900;
            text-transform: uppercase;
            transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
        }

        .btn:hover,
        .btn:focus-visible {
            transform: translateY(-2px);
            outline: none;
        }

        .btn-primary {
            background: var(--orange);
            color: #1d1008;
        }

        .btn-ghost {
            border-color: rgba(255, 255, 255, 0.34);
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .hero-panel {
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.94);
            color: var(--ink);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .event-panel-body {
            display: grid;
            gap: 18px;
            padding: 24px;
        }

        .status-label {
            color: var(--primary-dark);
            font-size: 0.84rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .event-panel-body h2 {
            font-size: 2.45rem;
            color: var(--primary-dark);
        }

        .meta-grid {
            display: grid;
            gap: 10px;
        }

        .meta-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding-top: 12px;
            border-top: 1px solid var(--line);
        }

        .meta-item i {
            width: 20px;
            margin-top: 4px;
            color: var(--orange);
        }

        .meta-item strong {
            display: block;
            line-height: 1.35;
        }

        .section {
            padding: 82px 0;
        }

        .section-dark {
            color: #fff;
            background: var(--ink);
        }

        .section-compact {
            padding: 72px 0;
        }

        .section-header {
            display: grid;
            grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
            gap: 34px;
            align-items: end;
            margin-bottom: 34px;
        }

        .section-kicker {
            margin-bottom: 10px;
            color: var(--primary-dark);
            font-weight: 900;
            text-transform: uppercase;
        }

        .section-dark .section-kicker {
            color: var(--yellow);
        }

        .section h2 {
            font-size: clamp(3rem, 7vw, 6.4rem);
        }

        .section-lead {
            color: var(--muted);
            font-size: 1.05rem;
        }

        .section-dark .section-lead {
            color: rgba(255, 255, 255, 0.72);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .feature-card {
            min-height: 190px;
            padding: 22px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--surface);
            box-shadow: 0 12px 30px rgba(23, 19, 22, 0.07);
        }

        .feature-card i {
            margin-bottom: 24px;
            color: var(--primary);
            font-size: 1.7rem;
        }

        .feature-card h3 {
            margin-bottom: 8px;
            font-size: 2rem;
        }

        .feature-card p {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .program-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
            gap: 24px;
            align-items: stretch;
        }

        .timeline {
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 8px;
            overflow: hidden;
        }

        .timeline-row {
            display: grid;
            grid-template-columns: 112px minmax(0, 1fr);
            gap: 18px;
            padding: 18px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.13);
            background: rgba(255, 255, 255, 0.04);
        }

        .timeline-row:last-child {
            border-bottom: 0;
        }

        .timeline-time {
            color: var(--yellow);
            font-weight: 900;
        }

        .timeline-title {
            margin-bottom: 4px;
            font-weight: 900;
        }

        .timeline-text {
            color: rgba(255, 255, 255, 0.72);
        }

        .program-note {
            display: grid;
            align-content: space-between;
            min-height: 100%;
            padding: 24px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--primary-dark), #421247);
            scroll-margin-top: 96px;
        }

        .program-note h3 {
            font-size: 2.5rem;
        }

        .program-note p {
            margin-top: 12px;
            color: rgba(255, 255, 255, 0.78);
        }

        .info-stack {
            display: grid;
            gap: 10px;
            margin-top: 20px;
        }

        .info-pill {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 12px 14px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.08);
        }

        .info-pill i {
            width: 20px;
            margin-top: 3px;
            color: var(--yellow);
        }

        .info-pill strong {
            display: block;
            margin-bottom: 2px;
        }

        .info-pill span {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.94rem;
        }

        .events-board {
            display: grid;
            gap: 40px;
        }

        .program-divider {
            display: flex;
            align-items: center;
            gap: 16px;
            color: rgba(255, 255, 255, 0.62);
            font-size: 0.78rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .program-divider::before,
        .program-divider::after {
            content: "";
            height: 1px;
            flex: 1;
            background: rgba(255, 255, 255, 0.18);
        }

        .program-year-group {
            display: grid;
            gap: 18px;
        }

        .program-year-title {
            display: flex;
            align-items: center;
            gap: 16px;
            color: var(--yellow);
            font-family: var(--display-font);
            font-size: clamp(1.35rem, 3vw, 2.2rem);
            font-weight: 900;
        }

        .program-year-title::after {
            content: "";
            height: 1px;
            flex: 1;
            background: rgba(255, 255, 255, 0.18);
        }

        .program-note.is-next {
            border: 1px solid rgba(255, 201, 40, 0.46);
            box-shadow: 0 18px 50px rgba(255, 122, 26, 0.14);
        }

        .event-list {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .event-card {
            display: grid;
            gap: 16px;
            min-height: 100%;
            padding: 22px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.06);
        }

        .event-card h3 {
            font-size: 1.65rem;
            color: #fff;
        }

        .event-card p {
            color: rgba(255, 255, 255, 0.72);
        }

        .event-card-meta {
            display: grid;
            gap: 9px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.94rem;
        }

        .event-card-meta span {
            display: flex;
            gap: 9px;
            align-items: flex-start;
        }

        .event-card-meta i {
            width: 18px;
            margin-top: 3px;
            color: var(--yellow);
        }

        .event-badge {
            width: fit-content;
            padding: 5px 8px;
            border-radius: 6px;
            background: rgba(255, 201, 40, 0.16);
            color: var(--yellow);
            font-size: 0.75rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .event-empty {
            padding: 20px;
            border: 1px dashed rgba(255, 255, 255, 0.22);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.68);
        }

        .gallery-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
            gap: 28px;
            align-items: center;
        }

        .gallery-frame {
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #111;
            box-shadow: var(--shadow);
        }

        .gallery-frame img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
        }

        .gallery-list {
            display: grid;
            gap: 12px;
            margin: 24px 0 0;
            padding: 0;
            list-style: none;
        }

        .gallery-list li {
            display: flex;
            gap: 12px;
            align-items: center;
            padding: 14px 0;
            border-top: 1px solid var(--line);
            font-weight: 800;
        }

        .gallery-list i {
            color: var(--green);
        }

        .contact-band {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(360px, 0.5fr);
            gap: 28px;
            align-items: stretch;
            padding: 34px;
            border-radius: 8px;
            color: #fff;
            background: var(--ink);
        }

        .contact-band h2 {
            margin-bottom: 10px;
            font-size: clamp(2.6rem, 6vw, 5rem);
        }

        .contact-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 22px;
        }

        .contact-row .contact-actions {
            margin-top: 10px;
        }

        .contact-card {
            display: grid;
            gap: 16px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.07);
        }

        .contact-row {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .contact-row:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }

        .contact-row i {
            width: 20px;
            margin-top: 4px;
            color: var(--orange);
        }

        .contact-row strong {
            display: block;
            margin-bottom: 2px;
        }

        .contact-row span,
        .contact-row a {
            color: rgba(255, 255, 255, 0.76);
        }

        .contact-row a:hover {
            color: #fff;
            text-decoration: underline;
        }

        @media (min-width: 1100px) {
            .section-compact .section-header {
                margin-bottom: 28px;
            }

            .program-note {
                align-content: start;
                gap: 24px;
            }

            .program-note .btn {
                width: fit-content;
            }

            .contact-band > div:first-child {
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
        }

        .social-link {
            display: inline-grid;
            width: 48px;
            height: 48px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 7px;
            color: #fff;
            font-size: 1.15rem;
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .social-link:hover,
        .social-link:focus-visible {
            transform: translateY(-2px);
            background: var(--primary);
            outline: none;
        }

        .footer {
            padding: 28px 0;
            color: rgba(255, 255, 255, 0.72);
            background: #0e0b0d;
            font-size: 0.92rem;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            flex-wrap: wrap;
        }

        .footer a {
            color: #fff;
            font-weight: 700;
        }

        @media (max-width: 920px) {
            .nav {
                align-items: flex-start;
                flex-direction: column;
                gap: 12px;
                padding: 14px 0;
            }

            .nav-links {
                width: 100%;
                overflow-x: auto;
                padding-bottom: 3px;
            }

            .hero {
                min-height: auto;
            }

            .hero-grid,
            .section-header,
            .program-layout,
            .event-list,
            .gallery-layout,
            .contact-band {
                grid-template-columns: 1fr;
            }

            .feature-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 620px) {
            .container {
                width: min(100% - 28px, var(--max));
            }

            .hero {
                padding: 38px 0 56px;
                background-position: center top;
            }

            .hero h1 {
                font-size: 4.2rem;
            }

            .hero-copy,
            .section-lead {
                font-size: 1rem;
            }

            .hero-panel,
            .feature-card,
            .contact-band {
                border-radius: 8px;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .timeline-row {
                grid-template-columns: 1fr;
                gap: 6px;
            }

            .contact-actions {
                width: 100%;
            }
        }

/* galerie.html */
@font-face {
            font-family: "Ethnocentric ROG";
            src:
                url("../fonts/ethnocentric-rg.woff2") format("woff2"),
                url("../fonts/ethnocentric-rg.woff") format("woff");
            font-weight: 400 900;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --ink: #171316;
            --muted: #635d62;
            --paper: #fff9f0;
            --surface: #ffffff;
            --primary: #c400d4;
            --primary-dark: #840094;
            --orange: #ff7a1a;
            --yellow: #ffc928;
            --green: #1f9d68;
            --line: rgba(23, 19, 22, 0.13);
            --shadow: 0 22px 55px rgba(23, 19, 22, 0.16);
            --display-font: "Ethnocentric ROG", "Ethnocentric", "Orbitron", "Arial Black", sans-serif;
            --max: 1180px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--ink);
            background: var(--paper);
            line-height: 1.6;
        }

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

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

        h1,
        h2,
        h3 {
            margin: 0;
            font-family: var(--display-font);
            font-weight: 900;
            letter-spacing: 0;
            line-height: 1.02;
            text-transform: uppercase;
        }

        p {
            margin: 0;
        }

        .container {
            width: min(var(--max), calc(100% - 40px));
            margin: 0 auto;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(23, 19, 22, 0.94);
            backdrop-filter: blur(14px);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            min-height: 72px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            font-weight: 900;
            text-transform: uppercase;
        }

        .brand-mark {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 92px;
            height: 44px;
            padding: 7px 8px;
            border: 2px solid var(--primary);
            background: #fff;
        }

        .brand-mark img {
            width: 100%;
            height: auto;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            padding: 0 13px;
            border-radius: 6px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.88rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .nav-links a:hover,
        .nav-links a:focus-visible {
            background: rgba(196, 0, 212, 0.18);
            color: #fff;
            outline: none;
        }

        .page-hero {
            position: relative;
            overflow: hidden;
            padding: 92px 0 76px;
            color: #fff;
            background:
                linear-gradient(120deg, rgba(23, 19, 22, 0.98), rgba(23, 19, 22, 0.9) 52%, rgba(132, 0, 148, 0.78)),
                #171316;
        }

        .page-hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 10px;
            background: linear-gradient(90deg, var(--primary), var(--orange), var(--yellow), var(--green));
        }

        .page-hero h1 {
            max-width: 900px;
            font-size: clamp(3.8rem, 8vw, 7.6rem);
        }

        .page-hero p {
            max-width: 720px;
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 1.16rem;
        }

        .section {
            padding: 82px 0;
        }

        .section-dark {
            color: #fff;
            background: var(--ink);
        }

        .gallery-toolbar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }

        .gallery-filter {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 0 14px;
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 7px;
            color: #fff;
            background: rgba(255, 255, 255, 0.07);
            font: inherit;
            font-size: 0.84rem;
            font-weight: 900;
            text-transform: uppercase;
            cursor: pointer;
        }

        .gallery-filter.is-active,
        .gallery-filter:hover,
        .gallery-filter:focus-visible {
            color: #1d1008;
            background: var(--yellow);
            outline: none;
        }

        .gallery-event {
            display: grid;
            gap: 18px;
        }

        .gallery-event + .gallery-event {
            margin-top: 54px;
        }

        .gallery-event-head {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            align-items: end;
        }

        .gallery-event h2 {
            color: #fff;
            font-size: clamp(2rem, 4vw, 3.7rem);
        }

        .gallery-meta {
            color: rgba(255, 255, 255, 0.66);
            font-weight: 800;
        }

        .photo-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
        }

        .photo-card {
            position: relative;
            overflow: hidden;
            width: 100%;
            padding: 0;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 8px;
            color: inherit;
            background: #111;
            cursor: pointer;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
        }

        .photo-card img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .photo-card:hover img,
        .photo-card:focus-visible img {
            transform: scale(1.04);
            opacity: 0.88;
        }

        .photo-card:focus-visible {
            outline: 3px solid var(--yellow);
            outline-offset: 3px;
        }

        .gallery-empty {
            padding: 24px;
            border: 1px dashed rgba(255, 255, 255, 0.24);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.72);
        }

        .lightbox {
            position: fixed;
            inset: 0;
            z-index: 100;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
            background: rgba(8, 6, 8, 0.92);
        }

        .lightbox.is-open {
            display: flex;
        }

        .lightbox-inner {
            display: grid;
            gap: 14px;
            width: min(1100px, 100%);
        }

        .lightbox img {
            width: 100%;
            max-height: 78vh;
            object-fit: contain;
            border-radius: 8px;
            background: #000;
        }

        .lightbox-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            color: #fff;
            font-weight: 900;
        }

        .lightbox-close {
            display: inline-grid;
            width: 46px;
            height: 46px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.24);
            border-radius: 7px;
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
            font-size: 1.2rem;
            cursor: pointer;
        }

        .lightbox-close:hover,
        .lightbox-close:focus-visible {
            background: var(--primary);
            outline: none;
        }

        .footer {
            padding: 28px 0;
            color: rgba(255, 255, 255, 0.72);
            background: #0e0b0d;
            font-size: 0.92rem;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            flex-wrap: wrap;
        }

        .footer a {
            color: #fff;
            font-weight: 700;
        }

        @media (max-width: 920px) {
            .nav {
                align-items: flex-start;
                flex-direction: column;
                gap: 12px;
                padding: 14px 0;
            }

            .nav-links {
                width: 100%;
                overflow-x: auto;
                padding-bottom: 3px;
            }

            .photo-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 620px) {
            .container {
                width: min(100% - 28px, var(--max));
            }

            .gallery-event-head {
                align-items: flex-start;
                flex-direction: column;
            }

            .photo-grid {
                grid-template-columns: 1fr;
            }
        }

/* mitglieder.html */
@font-face {
            font-family: "Ethnocentric ROG";
            src:
                url("../fonts/ethnocentric-rg.woff2") format("woff2"),
                url("../fonts/ethnocentric-rg.woff") format("woff");
            font-weight: 400 900;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --ink: #171316;
            --muted: #635d62;
            --paper: #fff9f0;
            --surface: #ffffff;
            --primary: #c400d4;
            --primary-dark: #840094;
            --orange: #ff7a1a;
            --yellow: #ffc928;
            --green: #1f9d68;
            --line: rgba(23, 19, 22, 0.13);
            --shadow: 0 22px 55px rgba(23, 19, 22, 0.16);
            --display-font: "Ethnocentric ROG", "Ethnocentric", "Orbitron", "Arial Black", sans-serif;
            --max: 1180px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--ink);
            background: var(--paper);
            line-height: 1.6;
        }

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

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

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

        h1,
        h2,
        h3 {
            margin: 0;
            font-family: var(--display-font);
            font-weight: 900;
            letter-spacing: 0;
            line-height: 1.02;
            text-transform: uppercase;
        }

        p {
            margin: 0;
        }

        .container {
            width: min(var(--max), calc(100% - 40px));
            margin: 0 auto;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(23, 19, 22, 0.94);
            backdrop-filter: blur(14px);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            min-height: 72px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            font-weight: 900;
            text-transform: uppercase;
        }

        .brand-mark {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 92px;
            height: 44px;
            padding: 7px 8px;
            border: 2px solid var(--primary);
            background: #fff;
        }

        .brand-mark img {
            width: 100%;
            height: auto;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            padding: 0 13px;
            border-radius: 6px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.88rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .nav-links a:hover,
        .nav-links a:focus-visible {
            background: rgba(196, 0, 212, 0.18);
            color: #fff;
            outline: none;
        }

        .hero {
            position: relative;
            overflow: hidden;
            min-height: min(780px, calc(100vh - 72px));
            display: flex;
            align-items: center;
            padding: 56px 0 72px;
            color: #fff;
            background:
                linear-gradient(120deg, rgba(23, 19, 22, 0.98), rgba(23, 19, 22, 0.94) 46%, rgba(132, 0, 148, 0.78)),
                #171316;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: 0.1;
            background:
                url("https://rog-fest.de/wp-content/uploads/2019/10/cropped-final-e1575916444290.png") right 8% center / min(720px, 62vw) auto no-repeat;
            pointer-events: none;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 10px;
            background: linear-gradient(90deg, var(--primary), var(--orange), var(--yellow), var(--green));
        }

        .page-hero {
            position: relative;
            overflow: hidden;
            padding: 92px 0 76px;
            color: #fff;
            background:
                linear-gradient(120deg, rgba(23, 19, 22, 0.98), rgba(23, 19, 22, 0.9) 52%, rgba(132, 0, 148, 0.78)),
                #171316;
        }

        .page-hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 10px;
            background: linear-gradient(90deg, var(--primary), var(--orange), var(--yellow), var(--green));
        }

        .page-hero h1 {
            max-width: 900px;
            font-size: clamp(3.8rem, 8vw, 7.6rem);
        }

        .page-hero p {
            max-width: 720px;
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 1.16rem;
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
            align-items: start;
            gap: 44px;
        }

        .hero h1 {
            max-width: 780px;
            font-size: clamp(4.4rem, 13vw, 10rem);
        }

        .hero-logo {
            width: min(620px, 100%);
            padding: 22px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.94);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
        }

        .hero-logo img {
            width: 100%;
            height: auto;
        }

        .hero-copy {
            max-width: 650px;
            margin-top: 24px;
            color: rgba(255, 255, 255, 0.82);
            font-size: clamp(1.02rem, 2vw, 1.24rem);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 32px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 48px;
            padding: 0 18px;
            border: 2px solid transparent;
            border-radius: 7px;
            font-weight: 900;
            text-transform: uppercase;
            transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
        }

        .btn:hover,
        .btn:focus-visible {
            transform: translateY(-2px);
            outline: none;
        }

        .btn-primary {
            background: var(--orange);
            color: #1d1008;
        }

        .btn-ghost {
            border-color: rgba(255, 255, 255, 0.34);
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .hero-panel {
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.94);
            color: var(--ink);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .event-panel-body {
            display: grid;
            gap: 18px;
            padding: 24px;
        }

        .status-label {
            color: var(--primary-dark);
            font-size: 0.84rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .event-panel-body h2 {
            font-size: 2.45rem;
            color: var(--primary-dark);
        }

        .meta-grid {
            display: grid;
            gap: 10px;
        }

        .meta-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding-top: 12px;
            border-top: 1px solid var(--line);
        }

        .meta-item i {
            width: 20px;
            margin-top: 4px;
            color: var(--orange);
        }

        .meta-item strong {
            display: block;
            line-height: 1.35;
        }

        .section {
            padding: 82px 0;
        }

        .section-dark {
            color: #fff;
            background: var(--ink);
        }

        .section-compact {
            padding: 72px 0;
        }

        .section-header {
            display: grid;
            grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
            gap: 34px;
            align-items: end;
            margin-bottom: 34px;
        }

        .section-kicker {
            margin-bottom: 10px;
            color: var(--primary-dark);
            font-weight: 900;
            text-transform: uppercase;
        }

        .section-dark .section-kicker {
            color: var(--yellow);
        }

        .section h2 {
            font-size: clamp(3rem, 7vw, 6.4rem);
        }

        .section-lead {
            color: var(--muted);
            font-size: 1.05rem;
        }

        .section-dark .section-lead {
            color: rgba(255, 255, 255, 0.72);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .feature-card {
            min-height: 190px;
            padding: 22px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--surface);
            box-shadow: 0 12px 30px rgba(23, 19, 22, 0.07);
        }

        .feature-card i {
            margin-bottom: 24px;
            color: var(--primary);
            font-size: 1.7rem;
        }

        .feature-card h3 {
            margin-bottom: 8px;
            font-size: 2rem;
        }

        .feature-card p {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .program-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
            gap: 24px;
            align-items: stretch;
        }

        .timeline {
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 8px;
            overflow: hidden;
        }

        .timeline-row {
            display: grid;
            grid-template-columns: 112px minmax(0, 1fr);
            gap: 18px;
            padding: 18px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.13);
            background: rgba(255, 255, 255, 0.04);
        }

        .timeline-row:last-child {
            border-bottom: 0;
        }

        .timeline-time {
            color: var(--yellow);
            font-weight: 900;
        }

        .timeline-title {
            margin-bottom: 4px;
            font-weight: 900;
        }

        .timeline-text {
            color: rgba(255, 255, 255, 0.72);
        }

        .program-note {
            display: grid;
            align-content: space-between;
            min-height: 100%;
            padding: 24px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--primary-dark), #421247);
        }

        .program-note h3 {
            font-size: 2.5rem;
        }

        .program-note p {
            margin-top: 12px;
            color: rgba(255, 255, 255, 0.78);
        }

        .info-stack {
            display: grid;
            gap: 10px;
            margin-top: 20px;
        }

        .info-pill {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 12px 14px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.08);
        }

        .info-pill i {
            width: 20px;
            margin-top: 3px;
            color: var(--yellow);
        }

        .info-pill strong {
            display: block;
            margin-bottom: 2px;
        }

        .info-pill span {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.94rem;
        }

        .events-board {
            display: grid;
            gap: 52px;
        }

        .events-group-head {
            display: flex;
            justify-content: space-between;
            gap: 24px;
            align-items: end;
            margin-bottom: 16px;
        }

        .events-group-head h3 {
            font-size: clamp(2rem, 3vw, 3rem);
        }

        .events-group-head p {
            max-width: 520px;
            color: rgba(255, 255, 255, 0.64);
        }

        .event-list {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .event-card {
            display: grid;
            grid-template-rows: auto 1fr auto;
            gap: 18px;
            min-height: 100%;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 8px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
        }

        .event-card.is-past {
            background: rgba(255, 255, 255, 0.035);
            opacity: 0.82;
        }

        .event-card-head {
            display: grid;
            grid-template-columns: 86px minmax(0, 1fr);
            gap: 16px;
            align-items: start;
        }

        .event-date-tile {
            display: grid;
            min-height: 86px;
            place-items: center;
            border-radius: 8px;
            color: #1d1008;
            background: var(--yellow);
            font-weight: 900;
            text-transform: uppercase;
        }

        .event-date-tile strong {
            display: block;
            font-family: var(--display-font);
            font-size: 2rem;
            line-height: 1;
        }

        .event-date-tile span {
            font-size: 0.78rem;
            line-height: 1;
        }

        .event-card h3 {
            font-size: clamp(1.35rem, 1.8vw, 1.85rem);
            color: #fff;
            overflow-wrap: normal;
            word-break: normal;
            hyphens: none;
        }

        .event-card p {
            color: rgba(255, 255, 255, 0.72);
        }

        .event-card-meta + p {
            margin-top: 14px;
        }

        .event-card-meta {
            display: grid;
            gap: 9px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.94rem;
        }

        .event-card-meta span {
            display: flex;
            gap: 9px;
            align-items: flex-start;
        }

        .event-card-meta i {
            width: 18px;
            margin-top: 3px;
            color: var(--yellow);
        }

        .event-badge {
            width: fit-content;
            max-width: 100%;
            padding: 5px 8px;
            border-radius: 6px;
            background: rgba(255, 201, 40, 0.16);
            color: var(--yellow);
            font-size: 0.75rem;
            font-weight: 900;
            text-transform: uppercase;
            overflow-wrap: normal;
            word-break: normal;
            hyphens: none;
        }

        .event-card-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding-top: 4px;
        }

        .event-card-actions .btn {
            min-height: 42px;
            padding: 0 13px;
            font-size: 0.82rem;
        }

        .event-empty {
            padding: 20px;
            border: 1px dashed rgba(255, 255, 255, 0.22);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.68);
        }

        .member-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .member-card {
            display: grid;
            gap: 14px;
            padding: 22px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--surface);
            box-shadow: 0 12px 30px rgba(23, 19, 22, 0.07);
        }

        .member-card i {
            color: var(--primary);
            font-size: 1.5rem;
        }

        .member-card h3 {
            font-size: 1.8rem;
        }

        .member-card p,
        .member-card li {
            color: var(--muted);
        }

        .member-card ul,
        .notice-list {
            display: grid;
            gap: 10px;
            margin: 0;
            padding-left: 18px;
        }

        .notice-list {
            padding-left: 0;
            list-style: none;
        }

        .notice-item {
            display: grid;
            grid-template-columns: 130px minmax(0, 1fr);
            gap: 16px;
            padding: 18px 0;
            border-top: 1px solid var(--line);
        }

        .notice-date {
            color: var(--primary-dark);
            font-weight: 900;
            text-transform: uppercase;
        }

        .notice-title {
            font-weight: 900;
        }

        .notice-text {
            color: var(--muted);
        }

        .member-calendar {
            display: grid;
            grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
            gap: 22px;
            margin-top: 32px;
        }

        .calendar-card,
        .calendar-list {
            padding: 22px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.07);
        }

        .calendar-card {
            display: grid;
            gap: 18px;
            align-content: start;
        }

        .calendar-card h3,
        .calendar-list h3 {
            color: #fff;
            font-size: 1.55rem;
        }

        .calendar-month {
            display: grid;
            grid-template-columns: repeat(7, minmax(0, 1fr));
            gap: 6px;
        }

        .calendar-day,
        .calendar-date {
            display: grid;
            place-items: center;
            min-height: 34px;
            border-radius: 6px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.78rem;
            font-weight: 900;
        }

        .calendar-day {
            color: var(--yellow);
            text-transform: uppercase;
        }

        .calendar-date {
            position: relative;
            background: rgba(255, 255, 255, 0.08);
        }

        .calendar-date.is-muted {
            color: rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.03);
        }

        .calendar-date.has-event {
            color: #171316;
            background: var(--yellow);
        }

        .calendar-date.has-event::after {
            content: "";
            position: absolute;
            inset: auto 8px 5px;
            height: 3px;
            border-radius: 999px;
            background: var(--primary);
        }

        .calendar-events {
            display: grid;
            gap: 12px;
            margin: 18px 0 0;
            padding: 0;
            list-style: none;
        }

        .calendar-event {
            display: grid;
            grid-template-columns: 78px minmax(0, 1fr);
            gap: 14px;
            align-items: start;
            padding: 14px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.08);
        }

        .calendar-event-date {
            display: grid;
            place-items: center;
            min-height: 56px;
            border-radius: 7px;
            color: #171316;
            background: var(--yellow);
            font-weight: 900;
            text-align: center;
            line-height: 1.05;
        }

        .calendar-event-date span {
            display: block;
            font-size: 1.4rem;
        }

        .calendar-event-tag {
            display: inline-flex;
            width: fit-content;
            margin-bottom: 5px;
            padding: 3px 8px;
            border-radius: 999px;
            color: #fff;
            background: var(--primary-dark);
            font-size: 0.72rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .calendar-event h4 {
            margin: 0 0 4px;
            color: #fff;
            font-size: 1rem;
        }

        .calendar-event p {
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.92rem;
        }

        .member-band {
            padding: 30px;
            border-radius: 8px;
            color: #fff;
            background:
                linear-gradient(135deg, rgba(132, 0, 148, 0.94), rgba(23, 19, 22, 0.96));
        }

        .member-band-top {
            margin-bottom: 54px;
        }

        .member-band .section-kicker {
            color: var(--yellow);
        }

        .member-band h2 {
            margin-bottom: 12px;
        }

        .member-band p {
            max-width: 820px;
            color: rgba(255, 255, 255, 0.78);
        }

        .gallery-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
            gap: 28px;
            align-items: center;
        }

        .gallery-frame {
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #111;
            box-shadow: var(--shadow);
        }

        .gallery-frame img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
        }

        .gallery-list {
            display: grid;
            gap: 12px;
            margin: 24px 0 0;
            padding: 0;
            list-style: none;
        }

        .gallery-list li {
            display: flex;
            gap: 12px;
            align-items: center;
            padding: 14px 0;
            border-top: 1px solid var(--line);
            font-weight: 800;
        }

        .gallery-list i {
            color: var(--green);
        }

        .contact-band {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(360px, 0.5fr);
            gap: 28px;
            align-items: stretch;
            padding: 34px;
            border-radius: 8px;
            color: #fff;
            background: var(--ink);
        }

        .contact-band h2 {
            margin-bottom: 10px;
            font-size: clamp(2.6rem, 6vw, 5rem);
        }

        .contact-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 22px;
        }

        .contact-row .contact-actions {
            margin-top: 10px;
        }

        .contact-card {
            display: grid;
            gap: 16px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.07);
        }

        .contact-row {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .contact-row:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }

        .contact-row i {
            width: 20px;
            margin-top: 4px;
            color: var(--orange);
        }

        .contact-row strong {
            display: block;
            margin-bottom: 2px;
        }

        .contact-row span,
        .contact-row a {
            color: rgba(255, 255, 255, 0.76);
        }

        .contact-row a:hover {
            color: #fff;
            text-decoration: underline;
        }

        @media (min-width: 1100px) {
            .section-compact .section-header {
                margin-bottom: 28px;
            }

            .program-note {
                align-content: start;
                gap: 24px;
            }

            .program-note .btn {
                width: fit-content;
            }

            .contact-band > div:first-child {
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
        }

        .social-link {
            display: inline-grid;
            width: 48px;
            height: 48px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 7px;
            color: #fff;
            font-size: 1.15rem;
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .social-link:hover,
        .social-link:focus-visible {
            transform: translateY(-2px);
            background: var(--primary);
            outline: none;
        }

        .footer {
            padding: 28px 0;
            color: rgba(255, 255, 255, 0.72);
            background: #0e0b0d;
            font-size: 0.92rem;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            flex-wrap: wrap;
        }

        .footer a {
            color: #fff;
            font-weight: 700;
        }

        @media (max-width: 920px) {
            .nav {
                align-items: flex-start;
                flex-direction: column;
                gap: 12px;
                padding: 14px 0;
            }

            .nav-links {
                width: 100%;
                overflow-x: auto;
                padding-bottom: 3px;
            }

            .events-group-head {
                display: grid;
            }

            .hero {
                min-height: auto;
            }

            .hero-grid,
            .section-header,
            .program-layout,
            .event-list,
            .member-grid,
            .member-calendar,
            .gallery-layout,
            .contact-band {
                grid-template-columns: 1fr;
            }

            .feature-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 620px) {
            .container {
                width: min(100% - 28px, var(--max));
            }

            .hero {
                padding: 38px 0 56px;
                background-position: center top;
            }

            .hero h1 {
                font-size: 4.2rem;
            }

            .hero-copy,
            .section-lead {
                font-size: 1rem;
            }

            .hero-panel,
            .feature-card,
            .contact-band {
                border-radius: 8px;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .timeline-row {
                grid-template-columns: 1fr;
                gap: 6px;
            }

            .contact-actions {
                width: 100%;
            }
        }

/* mitgliedsantrag.html */
@font-face {
            font-family: "Ethnocentric ROG";
            src:
                url("../fonts/ethnocentric-rg.woff2") format("woff2"),
                url("../fonts/ethnocentric-rg.woff") format("woff");
            font-weight: 400 900;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --ink: #171316;
            --muted: #635d62;
            --paper: #fff9f0;
            --surface: #ffffff;
            --primary: #c400d4;
            --primary-dark: #840094;
            --orange: #ff7a1a;
            --yellow: #ffc928;
            --green: #1f9d68;
            --line: rgba(23, 19, 22, 0.13);
            --shadow: 0 22px 55px rgba(23, 19, 22, 0.16);
            --display-font: "Ethnocentric ROG", "Ethnocentric", "Orbitron", "Arial Black", sans-serif;
            --max: 1180px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--ink);
            background: var(--paper);
            line-height: 1.6;
        }

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

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

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

        h1,
        h2,
        h3 {
            margin: 0;
            font-family: var(--display-font);
            font-weight: 900;
            letter-spacing: 0;
            line-height: 1.02;
            text-transform: uppercase;
        }

        p {
            margin: 0;
        }

        .container {
            width: min(var(--max), calc(100% - 40px));
            margin: 0 auto;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(23, 19, 22, 0.94);
            backdrop-filter: blur(14px);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            min-height: 72px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            font-weight: 900;
            text-transform: uppercase;
        }

        .brand-mark {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 92px;
            height: 44px;
            padding: 7px 8px;
            border: 2px solid var(--primary);
            background: #fff;
        }

        .brand-mark img {
            width: 100%;
            height: auto;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            padding: 0 13px;
            border-radius: 6px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.88rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .nav-links a:hover,
        .nav-links a:focus-visible {
            background: rgba(196, 0, 212, 0.18);
            color: #fff;
            outline: none;
        }

        .hero {
            position: relative;
            overflow: hidden;
            min-height: min(780px, calc(100vh - 72px));
            display: flex;
            align-items: center;
            padding: 56px 0 72px;
            color: #fff;
            background:
                linear-gradient(120deg, rgba(23, 19, 22, 0.98), rgba(23, 19, 22, 0.94) 46%, rgba(132, 0, 148, 0.78)),
                #171316;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: 0.1;
            background:
                url("https://rog-fest.de/wp-content/uploads/2019/10/cropped-final-e1575916444290.png") right 8% center / min(720px, 62vw) auto no-repeat;
            pointer-events: none;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 10px;
            background: linear-gradient(90deg, var(--primary), var(--orange), var(--yellow), var(--green));
        }

        .page-hero {
            position: relative;
            overflow: hidden;
            padding: 92px 0 76px;
            color: #fff;
            background:
                linear-gradient(120deg, rgba(23, 19, 22, 0.98), rgba(23, 19, 22, 0.9) 52%, rgba(132, 0, 148, 0.78)),
                #171316;
        }

        .page-hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 10px;
            background: linear-gradient(90deg, var(--primary), var(--orange), var(--yellow), var(--green));
        }

        .page-hero h1 {
            max-width: 900px;
            font-size: clamp(3.8rem, 8vw, 7.6rem);
        }

        .page-hero p {
            max-width: 720px;
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 1.16rem;
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
            align-items: start;
            gap: 44px;
        }

        .hero h1 {
            max-width: 780px;
            font-size: clamp(4.4rem, 13vw, 10rem);
        }

        .hero-logo {
            width: min(620px, 100%);
            padding: 22px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.94);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
        }

        .hero-logo img {
            width: 100%;
            height: auto;
        }

        .hero-copy {
            max-width: 650px;
            margin-top: 24px;
            color: rgba(255, 255, 255, 0.82);
            font-size: clamp(1.02rem, 2vw, 1.24rem);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 32px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 48px;
            padding: 0 18px;
            border: 2px solid transparent;
            border-radius: 7px;
            font-weight: 900;
            text-transform: uppercase;
            transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
        }

        .btn:hover,
        .btn:focus-visible {
            transform: translateY(-2px);
            outline: none;
        }

        .btn-primary {
            background: var(--orange);
            color: #1d1008;
        }

        .btn-ghost {
            border-color: rgba(255, 255, 255, 0.34);
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .hero-panel {
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.94);
            color: var(--ink);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .event-panel-body {
            display: grid;
            gap: 18px;
            padding: 24px;
        }

        .status-label {
            color: var(--primary-dark);
            font-size: 0.84rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .event-panel-body h2 {
            font-size: 2.45rem;
            color: var(--primary-dark);
        }

        .meta-grid {
            display: grid;
            gap: 10px;
        }

        .meta-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding-top: 12px;
            border-top: 1px solid var(--line);
        }

        .meta-item i {
            width: 20px;
            margin-top: 4px;
            color: var(--orange);
        }

        .meta-item strong {
            display: block;
            line-height: 1.35;
        }

        .section {
            padding: 82px 0;
        }

        .section-dark {
            color: #fff;
            background: var(--ink);
        }

        .section-compact {
            padding: 72px 0;
        }

        .section-header {
            display: grid;
            grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
            gap: 34px;
            align-items: end;
            margin-bottom: 34px;
        }

        .section-kicker {
            margin-bottom: 10px;
            color: var(--primary-dark);
            font-weight: 900;
            text-transform: uppercase;
        }

        .section-dark .section-kicker {
            color: var(--yellow);
        }

        .section h2 {
            font-size: clamp(3rem, 7vw, 6.4rem);
        }

        .section-lead {
            color: var(--muted);
            font-size: 1.05rem;
        }

        .section-dark .section-lead {
            color: rgba(255, 255, 255, 0.72);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .feature-card {
            min-height: 190px;
            padding: 22px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--surface);
            box-shadow: 0 12px 30px rgba(23, 19, 22, 0.07);
        }

        .feature-card i {
            margin-bottom: 24px;
            color: var(--primary);
            font-size: 1.7rem;
        }

        .feature-card h3 {
            margin-bottom: 8px;
            font-size: 2rem;
        }

        .feature-card p {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .program-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
            gap: 24px;
            align-items: stretch;
        }

        .timeline {
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 8px;
            overflow: hidden;
        }

        .timeline-row {
            display: grid;
            grid-template-columns: 112px minmax(0, 1fr);
            gap: 18px;
            padding: 18px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.13);
            background: rgba(255, 255, 255, 0.04);
        }

        .timeline-row:last-child {
            border-bottom: 0;
        }

        .timeline-time {
            color: var(--yellow);
            font-weight: 900;
        }

        .timeline-title {
            margin-bottom: 4px;
            font-weight: 900;
        }

        .timeline-text {
            color: rgba(255, 255, 255, 0.72);
        }

        .program-note {
            display: grid;
            align-content: space-between;
            min-height: 100%;
            padding: 24px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--primary-dark), #421247);
        }

        .program-note h3 {
            font-size: 2.5rem;
        }

        .program-note p {
            margin-top: 12px;
            color: rgba(255, 255, 255, 0.78);
        }

        .info-stack {
            display: grid;
            gap: 10px;
            margin-top: 20px;
        }

        .info-pill {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 12px 14px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.08);
        }

        .info-pill i {
            width: 20px;
            margin-top: 3px;
            color: var(--yellow);
        }

        .info-pill strong {
            display: block;
            margin-bottom: 2px;
        }

        .info-pill span {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.94rem;
        }

        .events-board {
            display: grid;
            gap: 52px;
        }

        .events-group-head {
            display: flex;
            justify-content: space-between;
            gap: 24px;
            align-items: end;
            margin-bottom: 16px;
        }

        .events-group-head h3 {
            font-size: clamp(2rem, 3vw, 3rem);
        }

        .events-group-head p {
            max-width: 520px;
            color: rgba(255, 255, 255, 0.64);
        }

        .event-list {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .event-card {
            display: grid;
            grid-template-rows: auto 1fr auto;
            gap: 18px;
            min-height: 100%;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 8px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
        }

        .event-card.is-past {
            background: rgba(255, 255, 255, 0.035);
            opacity: 0.82;
        }

        .event-card-head {
            display: grid;
            grid-template-columns: 86px minmax(0, 1fr);
            gap: 16px;
            align-items: start;
        }

        .event-date-tile {
            display: grid;
            min-height: 86px;
            place-items: center;
            border-radius: 8px;
            color: #1d1008;
            background: var(--yellow);
            font-weight: 900;
            text-transform: uppercase;
        }

        .event-date-tile strong {
            display: block;
            font-family: var(--display-font);
            font-size: 2rem;
            line-height: 1;
        }

        .event-date-tile span {
            font-size: 0.78rem;
            line-height: 1;
        }

        .event-card h3 {
            font-size: clamp(1.35rem, 1.8vw, 1.85rem);
            color: #fff;
            overflow-wrap: normal;
            word-break: normal;
            hyphens: none;
        }

        .event-card p {
            color: rgba(255, 255, 255, 0.72);
        }

        .event-card-meta + p {
            margin-top: 14px;
        }

        .event-card-meta {
            display: grid;
            gap: 9px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.94rem;
        }

        .event-card-meta span {
            display: flex;
            gap: 9px;
            align-items: flex-start;
        }

        .event-card-meta i {
            width: 18px;
            margin-top: 3px;
            color: var(--yellow);
        }

        .event-badge {
            width: fit-content;
            max-width: 100%;
            padding: 5px 8px;
            border-radius: 6px;
            background: rgba(255, 201, 40, 0.16);
            color: var(--yellow);
            font-size: 0.75rem;
            font-weight: 900;
            text-transform: uppercase;
            overflow-wrap: normal;
            word-break: normal;
            hyphens: none;
        }

        .event-card-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding-top: 4px;
        }

        .event-card-actions .btn {
            min-height: 42px;
            padding: 0 13px;
            font-size: 0.82rem;
        }

        .event-empty {
            padding: 20px;
            border: 1px dashed rgba(255, 255, 255, 0.22);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.68);
        }

        .member-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .member-card {
            display: grid;
            gap: 14px;
            padding: 22px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--surface);
            box-shadow: 0 12px 30px rgba(23, 19, 22, 0.07);
        }

        .member-card i {
            color: var(--primary);
            font-size: 1.5rem;
        }

        .member-card h3 {
            font-size: 1.8rem;
        }

        .member-card p,
        .member-card li {
            color: var(--muted);
        }

        .member-card ul,
        .notice-list {
            display: grid;
            gap: 10px;
            margin: 0;
            padding-left: 18px;
        }

        .notice-list {
            padding-left: 0;
            list-style: none;
        }

        .notice-item {
            display: grid;
            grid-template-columns: 130px minmax(0, 1fr);
            gap: 16px;
            padding: 18px 0;
            border-top: 1px solid var(--line);
        }

        .notice-date {
            color: var(--primary-dark);
            font-weight: 900;
            text-transform: uppercase;
        }

        .notice-title {
            font-weight: 900;
        }

        .notice-text {
            color: var(--muted);
        }

        .member-band {
            padding: 30px;
            border-radius: 8px;
            color: #fff;
            background:
                linear-gradient(135deg, rgba(132, 0, 148, 0.94), rgba(23, 19, 22, 0.96));
        }

        .member-band-top {
            margin-bottom: 54px;
        }

        .member-band .section-kicker {
            color: var(--yellow);
        }

        .member-band h2 {
            margin-bottom: 12px;
        }

        .member-band p {
            max-width: 820px;
            color: rgba(255, 255, 255, 0.78);
        }

        .application-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.7fr) minmax(340px, 0.3fr);
            gap: 28px;
            align-items: start;
        }

        .application-form {
            display: grid;
            gap: 22px;
        }

        .form-panel {
            padding: 24px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--surface);
            box-shadow: 0 12px 30px rgba(23, 19, 22, 0.07);
        }

        .form-panel h2 {
            margin-bottom: 18px;
            font-size: clamp(1.8rem, 3vw, 2.8rem);
        }

        .form-panel h3 {
            margin-bottom: 12px;
            font-size: 1.45rem;
        }

        .form-panel p {
            color: var(--muted);
        }

        .field-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .field {
            display: grid;
            gap: 7px;
        }

        .field-wide {
            grid-column: 1 / -1;
        }

        .field label,
        .choice-card strong,
        .check-row strong {
            font-weight: 900;
        }

        .field input,
        .field textarea {
            width: 100%;
            min-height: 46px;
            padding: 11px 12px;
            border: 1px solid rgba(23, 19, 22, 0.18);
            border-radius: 6px;
            background: #fffdf8;
            color: var(--ink);
            font: inherit;
        }

        .field textarea {
            min-height: 88px;
            resize: vertical;
        }

        .choice-grid {
            display: grid;
            gap: 12px;
        }

        .choice-card,
        .check-row {
            display: grid;
            grid-template-columns: 24px minmax(0, 1fr);
            gap: 12px;
            align-items: start;
            padding: 16px;
            border: 1px solid rgba(23, 19, 22, 0.14);
            border-radius: 8px;
            background: #fffdf8;
        }

        .choice-card input,
        .check-row input {
            width: 18px;
            height: 18px;
            margin-top: 3px;
            accent-color: var(--primary);
        }

        .group-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }

        .signature-box {
            position: relative;
            min-height: 150px;
            margin-top: 12px;
            border: 2px dashed rgba(23, 19, 22, 0.22);
            border-radius: 8px;
            background: #fffdf8;
            color: var(--muted);
            font-weight: 800;
            overflow: hidden;
            touch-action: none;
        }

        .signature-box canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            cursor: crosshair;
        }

        .signature-box span {
            position: absolute;
            inset: 0;
            display: grid;
            place-items: center;
            pointer-events: none;
        }

        .signature-box.has-signature span {
            display: none;
        }

        .signature-clear {
            margin-top: 10px;
            min-height: 40px;
            padding: 0 13px;
            font-size: 0.78rem;
        }

        .application-aside {
            position: sticky;
            top: 98px;
            display: grid;
            gap: 16px;
        }

        .aside-card {
            padding: 20px;
            border-radius: 8px;
            background: #171316;
            color: #fff;
        }

        .aside-card h2 {
            margin-bottom: 12px;
            font-size: 1.7rem;
        }

        .aside-card p,
        .aside-list {
            color: rgba(255, 255, 255, 0.76);
        }

        .aside-list {
            display: grid;
            gap: 10px;
            margin: 16px 0 0;
            padding-left: 18px;
        }

        .form-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            padding-top: 4px;
        }

        .btn-print-preview {
            color: #171316;
            background: var(--yellow);
            border-color: rgba(23, 19, 22, 0.18);
            box-shadow: 0 10px 24px rgba(23, 19, 22, 0.16);
        }

        .btn-print-preview:hover,
        .btn-print-preview:focus-visible {
            background: #fff;
            color: var(--primary-dark);
        }

        .gallery-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
            gap: 28px;
            align-items: center;
        }

        .gallery-frame {
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #111;
            box-shadow: var(--shadow);
        }

        .gallery-frame img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
        }

        .gallery-list {
            display: grid;
            gap: 12px;
            margin: 24px 0 0;
            padding: 0;
            list-style: none;
        }

        .gallery-list li {
            display: flex;
            gap: 12px;
            align-items: center;
            padding: 14px 0;
            border-top: 1px solid var(--line);
            font-weight: 800;
        }

        .gallery-list i {
            color: var(--green);
        }

        .contact-band {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(360px, 0.5fr);
            gap: 28px;
            align-items: stretch;
            padding: 34px;
            border-radius: 8px;
            color: #fff;
            background: var(--ink);
        }

        .contact-band h2 {
            margin-bottom: 10px;
            font-size: clamp(2.6rem, 6vw, 5rem);
        }

        .contact-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 22px;
        }

        .contact-row .contact-actions {
            margin-top: 10px;
        }

        .contact-card {
            display: grid;
            gap: 16px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.07);
        }

        .contact-row {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .contact-row:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }

        .contact-row i {
            width: 20px;
            margin-top: 4px;
            color: var(--orange);
        }

        .contact-row strong {
            display: block;
            margin-bottom: 2px;
        }

        .contact-row span,
        .contact-row a {
            color: rgba(255, 255, 255, 0.76);
        }

        .contact-row a:hover {
            color: #fff;
            text-decoration: underline;
        }

        @media (min-width: 1100px) {
            .section-compact .section-header {
                margin-bottom: 28px;
            }

            .program-note {
                align-content: start;
                gap: 24px;
            }

            .program-note .btn {
                width: fit-content;
            }

            .contact-band > div:first-child {
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
        }

        .social-link {
            display: inline-grid;
            width: 48px;
            height: 48px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 7px;
            color: #fff;
            font-size: 1.15rem;
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .social-link:hover,
        .social-link:focus-visible {
            transform: translateY(-2px);
            background: var(--primary);
            outline: none;
        }

        .footer {
            padding: 28px 0;
            color: rgba(255, 255, 255, 0.72);
            background: #0e0b0d;
            font-size: 0.92rem;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            flex-wrap: wrap;
        }

        .footer a {
            color: #fff;
            font-weight: 700;
        }

        @media (max-width: 920px) {
            .nav {
                align-items: flex-start;
                flex-direction: column;
                gap: 12px;
                padding: 14px 0;
            }

            .nav-links {
                width: 100%;
                overflow-x: auto;
                padding-bottom: 3px;
            }

            .events-group-head {
                display: grid;
            }

            .hero {
                min-height: auto;
            }

            .hero-grid,
            .section-header,
            .program-layout,
            .event-list,
            .member-grid,
            .gallery-layout,
            .application-layout,
            .contact-band {
                grid-template-columns: 1fr;
            }

            .application-aside {
                position: static;
            }

            .feature-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 620px) {
            .container {
                width: min(100% - 28px, var(--max));
            }

            .hero {
                padding: 38px 0 56px;
                background-position: center top;
            }

            .hero h1 {
                font-size: 4.2rem;
            }

            .hero-copy,
            .section-lead {
                font-size: 1rem;
            }

            .hero-panel,
            .feature-card,
            .contact-band {
                border-radius: 8px;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .field-grid,
            .group-list {
                grid-template-columns: 1fr;
            }

            .timeline-row {
                grid-template-columns: 1fr;
                gap: 6px;
            }

            .contact-actions {
                width: 100%;
            }
        }

        @media print {
            @page {
                size: A4;
                margin: 14mm;
            }

            * {
                box-shadow: none !important;
                text-shadow: none !important;
            }

            body {
                color: #000;
                background: #fff;
                font-size: 10.5pt;
                line-height: 1.35;
            }

            .site-header,
            .page-hero,
            .application-aside,
            .form-actions,
            .footer {
                display: none !important;
            }

            .container {
                width: 100%;
                margin: 0;
            }

            .section {
                padding: 0;
            }

            .application-layout,
            .application-form,
            .field-grid,
            .group-list {
                display: block;
            }

            .application-form::before {
                content: "reinsberg.er.leben e.V.    Sandweg 43    09629 Reinsberg    VR 3725";
                display: block;
                margin-bottom: 12mm;
                font-weight: 700;
            }

            .form-panel {
                break-inside: avoid;
                padding: 0;
                margin: 0 0 7mm;
                border: 0;
                background: transparent;
            }

            .form-panel h2 {
                margin: 0 0 4mm;
                font-family: Arial, sans-serif;
                font-size: 15pt;
                line-height: 1.15;
            }

            .section-kicker {
                color: #000;
                font-family: Arial, sans-serif;
                font-size: 17pt;
            }

            .choice-grid {
                display: grid;
                gap: 3mm;
            }

            .choice-card,
            .check-row {
                display: grid;
                grid-template-columns: 7mm 1fr;
                gap: 3mm;
                padding: 0;
                border: 0;
                background: transparent;
            }

            .field {
                display: grid;
                grid-template-columns: 36mm 1fr;
                gap: 4mm;
                align-items: end;
                margin-bottom: 4mm;
            }

            .field label {
                font-weight: 700;
            }

            .field input,
            .field textarea {
                min-height: 8mm;
                padding: 0;
                border: 0;
                border-bottom: 1px solid #000;
                border-radius: 0;
                background: transparent;
            }

            .field textarea {
                min-height: 18mm;
            }

            .group-list {
                columns: 1;
            }

            .group-list .check-row {
                margin-bottom: 2mm;
            }

            .signature-box {
                min-height: 24mm;
                border: 0;
                border-bottom: 1px solid #000;
                border-radius: 0;
                background: transparent;
                color: transparent;
            }
        }

/* mitgliedsantrag-druck.html */
* {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            color: #111;
            background: #d9d9d9;
            font-family: Arial, sans-serif;
            line-height: 1.35;
        }

        .toolbar {
            position: sticky;
            top: 0;
            z-index: 10;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
            padding: 14px 18px;
            color: #fff;
            background: #171316;
        }

        .toolbar a,
        .toolbar button {
            display: inline-flex;
            align-items: center;
            min-height: 38px;
            padding: 0 14px;
            border: 0;
            border-radius: 6px;
            color: #111;
            background: #ff7a1a;
            font: inherit;
            font-weight: 800;
            text-decoration: none;
            cursor: pointer;
        }

        .toolbar a {
            color: #fff;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.35);
        }

        .page {
            width: min(210mm, calc(100% - 24px));
            min-height: 297mm;
            margin: 18px auto;
            padding: clamp(20px, 7vw, 16mm) clamp(18px, 7vw, 17mm);
            background: #fff;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
        }

        .letterhead {
            margin-bottom: 12mm;
            font-size: 10pt;
            font-weight: 700;
        }

        h1 {
            margin: 0 0 7mm;
            font-size: 14pt;
            letter-spacing: 0.02em;
        }

        h2 {
            margin: 8mm 0 4mm;
            font-size: 13pt;
        }

        p {
            margin: 0 0 4mm;
        }

        .choice {
            display: grid;
            grid-template-columns: 7mm 1fr;
            gap: 3mm;
            margin-bottom: 4mm;
        }

        .dot,
        .box {
            width: 4.5mm;
            height: 4.5mm;
            margin-top: 0.7mm;
            border: 1px solid #111;
        }

        .dot {
            border-radius: 50%;
        }

        .dot.active::after,
        .box.active::after {
            content: "";
            display: block;
            width: 2.4mm;
            height: 2.4mm;
            margin: 0.7mm;
            background: #111;
        }

        .dot.active::after {
            border-radius: 50%;
        }

        .line-row {
            display: grid;
            grid-template-columns: 38mm 1fr;
            gap: 4mm;
            align-items: end;
            margin-bottom: 4mm;
        }

        .line {
            min-height: 7mm;
            border-bottom: 1px solid #111;
        }

        .line.filled {
            padding: 0 1mm 1mm;
            font-weight: 700;
        }

        .signature-line {
            position: relative;
            min-height: 16mm;
        }

        .signature-line img {
            position: absolute;
            left: 2mm;
            right: 2mm;
            bottom: 1mm;
            display: block;
            width: calc(100% - 4mm);
            max-height: 15mm;
            object-fit: contain;
            object-position: left bottom;
        }

        .signature-line img:not([src]) {
            display: none;
        }

        .address-line {
            min-height: 13mm;
            white-space: pre-line;
        }

        .groups {
            display: grid;
            gap: 2.2mm;
            margin: 3mm 0 7mm;
        }

        .bank-box {
            margin: 5mm 0 7mm;
            padding: 4mm;
            border: 1px solid #111;
        }

        .bank-grid {
            display: grid;
            grid-template-columns: 42mm 1fr;
            gap: 1.5mm 4mm;
            margin-top: 2mm;
        }

        .privacy {
            margin-top: 6mm;
            font-size: 9.5pt;
        }

        .signature {
            margin-top: 10mm;
        }

        .small {
            font-size: 9pt;
        }

        @media screen and (max-width: 760px) {
            body {
                background: #efefef;
            }

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

            .toolbar a,
            .toolbar button {
                justify-content: center;
                width: 100%;
                text-align: center;
            }

            .page {
                min-height: auto;
                margin: 12px auto;
                font-size: 0.95rem;
            }

            .letterhead {
                margin-bottom: 24px;
                font-size: 0.78rem;
            }

            h1 {
                font-size: clamp(1.15rem, 6vw, 1.65rem);
                overflow-wrap: normal;
                word-break: normal;
                hyphens: none;
            }

            h2 {
                font-size: 1.1rem;
            }

            .choice,
            .line-row,
            .bank-grid {
                grid-template-columns: 1fr;
            }

            .dot,
            .box {
                margin-top: 0;
            }

            .line-row {
                gap: 2mm;
                align-items: start;
            }

            .bank-box {
                padding: 16px;
            }
        }

        @media print {
            @page {
                size: A4;
                margin: 0;
            }

            body {
                background: #fff;
            }

            .toolbar {
                display: none;
            }

            .page {
                width: auto;
                min-height: auto;
                margin: 0;
                padding: 10mm 13mm;
                box-shadow: none;
            }

            .letterhead {
                margin-bottom: 6mm;
                font-size: 8pt;
            }

            h1 {
                margin-bottom: 4mm;
                font-size: 13pt;
            }

            h2 {
                margin: 5mm 0 2.5mm;
                font-size: 10.5pt;
            }

            p {
                margin-bottom: 2.5mm;
            }

            .choice {
                margin-bottom: 2.5mm;
            }

            .privacy {
                margin-top: 3mm;
                font-size: 8pt;
            }

            .signature {
                margin-top: 6mm;
            }
        }

/* impressum.html */
@font-face {
            font-family: "Ethnocentric ROG";
            src:
                url("../fonts/ethnocentric-rg.woff2") format("woff2"),
                url("../fonts/ethnocentric-rg.woff") format("woff");
            font-weight: 400 900;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --ink: #171316;
            --muted: #635d62;
            --paper: #fff9f0;
            --surface: #ffffff;
            --primary: #c400d4;
            --primary-dark: #840094;
            --orange: #ff7a1a;
            --yellow: #ffc928;
            --green: #1f9d68;
            --line: rgba(23, 19, 22, 0.13);
            --shadow: 0 22px 55px rgba(23, 19, 22, 0.16);
            --display-font: "Ethnocentric ROG", "Ethnocentric", "Orbitron", "Arial Black", sans-serif;
            --max: 1180px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--ink);
            background: var(--paper);
            line-height: 1.6;
        }

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

        p {
            margin: 0;
        }

        h1,
        h2,
        h3 {
            margin: 0;
            font-family: var(--display-font);
            font-weight: 900;
            letter-spacing: 0;
            line-height: 1.02;
            text-transform: uppercase;
        }

        .container {
            width: min(var(--max), calc(100% - 40px));
            margin: 0 auto;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(23, 19, 22, 0.94);
            backdrop-filter: blur(14px);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            min-height: 72px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            font-weight: 900;
            text-transform: uppercase;
        }

        .brand-mark {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 92px;
            height: 44px;
            padding: 7px 8px;
            border: 2px solid var(--primary);
            background: #fff;
        }

        .brand-mark img {
            display: block;
            width: 100%;
            height: auto;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            padding: 0 13px;
            border-radius: 6px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.88rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .nav-links a:hover,
        .nav-links a:focus-visible {
            background: rgba(196, 0, 212, 0.18);
            color: #fff;
            outline: none;
        }

        .page-hero {
            position: relative;
            overflow: hidden;
            padding: 92px 0 72px;
            color: #fff;
            background:
                linear-gradient(120deg, rgba(23, 19, 22, 0.98), rgba(23, 19, 22, 0.94) 48%, rgba(132, 0, 148, 0.76)),
                #171316;
        }

        .page-hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 10px;
            background: linear-gradient(90deg, var(--primary), var(--orange), var(--yellow), var(--green));
        }

        .page-hero h1 {
            max-width: 900px;
            font-size: clamp(3.2rem, 9vw, 7.2rem);
        }

        .page-hero p {
            max-width: 760px;
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.76);
            font-size: 1.08rem;
            font-weight: 700;
        }

        .legal-section {
            padding: 72px 0 84px;
        }

        .legal-layout {
            display: grid;
            grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
            gap: 36px;
            align-items: start;
        }

        .legal-nav {
            position: sticky;
            top: 100px;
            display: grid;
            gap: 10px;
            padding: 18px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #fff;
            box-shadow: 0 12px 32px rgba(23, 19, 22, 0.08);
        }

        .legal-nav a {
            display: flex;
            align-items: center;
            gap: 9px;
            min-height: 38px;
            padding: 0 10px;
            border-radius: 6px;
            color: var(--muted);
            font-size: 0.86rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .legal-nav a:hover,
        .legal-nav a:focus-visible {
            background: rgba(196, 0, 212, 0.1);
            color: var(--primary-dark);
            outline: none;
        }

        .legal-card {
            padding: clamp(24px, 4vw, 44px);
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--surface);
            box-shadow: var(--shadow);
        }

        .legal-card + .legal-card {
            margin-top: 24px;
        }

        .legal-card h2 {
            color: var(--primary-dark);
            font-size: clamp(1.8rem, 4vw, 3rem);
        }

        .legal-card h3 {
            margin-top: 32px;
            font-size: 1.15rem;
        }

        .legal-card p,
        .legal-card ul {
            margin-top: 18px;
            color: #393236;
        }

        .legal-card ul {
            padding-left: 22px;
        }

        .legal-card strong {
            color: var(--ink);
        }

        .legal-card a {
            color: var(--primary-dark);
            font-weight: 800;
            text-decoration: underline;
            text-decoration-thickness: 2px;
            text-underline-offset: 3px;
        }

        .footer {
            padding: 26px 0;
            color: rgba(255, 255, 255, 0.72);
            background: #171316;
        }

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            font-size: 0.9rem;
            font-weight: 700;
        }

        .footer a {
            color: #fff;
        }

        @media (max-width: 840px) {
            .nav {
                align-items: flex-start;
                flex-direction: column;
                padding: 16px 0;
            }

            .nav-links {
                width: 100%;
                overflow-x: auto;
            }

            .legal-layout {
                grid-template-columns: 1fr;
            }

            .legal-nav {
                position: static;
            }

            .footer-inner {
                align-items: flex-start;
                flex-direction: column;
            }
        }

/* responsive.css */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    width: 100%;
}

body {
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.site-header,
main,
.hero,
.section,
.section-compact,
.footer {
    width: 100%;
}

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
}

:where(
    .container,
    .nav,
    .brand,
    .nav-links,
    .hero-grid,
    .section-header,
    .program-layout,
    .event-list,
    .events-board,
    .event-card,
    .event-card-head,
    .feature-grid,
    .feature-card,
    .member-grid,
    .member-card,
    .member-calendar,
    .calendar-card,
    .calendar-list,
    .calendar-event,
    .gallery-layout,
    .contact-band,
    .contact-card,
    .application-layout,
    .application-form,
    .application-aside,
    .form-panel,
    .field-grid,
    .choice-grid,
    .group-list,
    .program-note,
    .hero-panel,
    .legal-layout,
    .legal-card,
    .legal-nav
) {
    min-width: 0;
}

:where(h1, h2, h3, h4, .btn, .event-badge, .section-kicker, .brand, .notice-date, .calendar-event-tag) {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

h1,
h2,
h3,
h4 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

:where(p, li, span, strong, label, input, textarea, a) {
    min-width: 0;
}

.btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px 6px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.nav-links a {
    white-space: nowrap;
    padding-inline: clamp(7px, 0.75vw, 13px);
    font-size: clamp(0.72rem, 0.76vw, 0.88rem);
}

.field input,
.field textarea {
    width: 100%;
}

.event-search {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 10px;
    align-items: center;
    margin-bottom: 26px;
    padding: 8px;
    border: 2px solid var(--yellow);
    border-radius: 8px;
    color: #fff;
    background: #050405;
    box-shadow:
        0 0 0 1px rgba(255, 201, 40, 0.16),
        0 16px 42px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.event-search::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--orange), var(--yellow));
}

.event-search i {
    position: relative;
    z-index: 1;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 6px;
    color: #171316;
    background: var(--yellow);
}

.event-search input {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: transparent;
    font: inherit;
    font-size: 1rem;
    font-weight: 900;
    outline: none;
}

.event-search input::-webkit-search-decoration,
.event-search input::-webkit-search-cancel-button,
.event-search input::-webkit-search-results-button,
.event-search input::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.event-search input::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.event-search button {
    position: relative;
    z-index: 1;
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    color: var(--yellow);
    background: #171316;
    font: inherit;
    font-size: 0;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.event-search button::before {
    content: "\00d7";
    font-size: 1.45rem;
    line-height: 1;
}

.event-search button:hover,
.event-search button:focus-visible {
    color: #1d1008;
    background: var(--yellow);
    border-color: var(--yellow);
    transform: translateY(-1px);
    outline: none;
}

.search-result-note {
    min-height: 1.4em;
    margin: -12px 0 26px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
}

.application-layout-solo {
    display: block;
}

.application-layout-solo .application-form {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 1180px) {
    .site-header {
        position: static;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        padding: 12px 0;
    }

    .brand {
        width: 100%;
        justify-content: center;
        line-height: 1.15;
    }

    .nav-links {
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 760px) {
    .event-search {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        padding: 7px;
    }

    .event-search i,
    .event-search button {
        width: 38px;
        height: 38px;
    }

    .event-search input {
        min-height: 42px;
    }

    .nav-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        overflow: visible;
        padding-bottom: 0;
        width: 100%;
    }

    .nav-links a {
        justify-content: center;
        white-space: normal;
        text-align: center;
        line-height: 1.15;
        min-height: 40px;
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    .page-hero {
        padding: 58px 0 50px;
    }

    .page-hero h1 {
        font-size: clamp(2.1rem, 13vw, 4.2rem);
    }

    .page-hero p {
        font-size: 1rem;
        max-width: 30rem;
    }

    .section,
    .section-compact,
    .legal-section {
        padding: 54px 0;
    }

    .section h2,
    .contact-band h2,
    .member-band h2 {
        font-size: clamp(2rem, 12vw, 3.55rem);
    }

    .events-group-head h3,
    .calendar-card h3,
    .calendar-list h3 {
        font-size: clamp(1.55rem, 8vw, 2.35rem);
    }

    .hero-logo {
        padding: 14px;
    }

    .hero-actions,
    .contact-actions,
    .form-actions,
    .event-card-actions {
        align-items: stretch;
    }

    .hero-actions .btn,
    .contact-actions .btn,
    .form-actions .btn {
        width: 100%;
    }

    .event-card-actions .btn {
        flex: 1 1 150px;
    }

    .event-panel-body,
    .event-card,
    .member-card,
    .form-panel,
    .aside-card,
    .legal-card,
    .calendar-card,
    .calendar-list,
    .contact-card {
        padding: 18px;
    }

    .member-band,
    .contact-band {
        padding: 22px;
    }

    .program-note {
        padding: 20px;
    }

    .program-note h3,
    .feature-card h3,
    .member-card h3 {
        font-size: clamp(1.45rem, 8vw, 2rem);
    }

    .member-card {
        gap: 12px;
    }

    .member-card h3 {
        font-size: clamp(1.25rem, 6.8vw, 1.65rem);
        line-height: 1.08;
    }

    .member-card p,
    .member-card li {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .event-card-head {
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 12px;
    }

    .event-card h3 {
        font-size: clamp(1.05rem, 5.8vw, 1.38rem);
        line-height: 1.06;
    }

    .event-badge {
        font-size: 0.68rem;
        line-height: 1.25;
    }

    .event-date-tile {
        min-height: 74px;
    }

    .event-date-tile strong {
        font-size: 1.65rem;
    }

    .notice-item,
    .calendar-event {
        grid-template-columns: 1fr;
    }

    .notice-date {
        font-size: 0.82rem;
    }

    .calendar-month {
        gap: 4px;
    }

    .calendar-day,
    .calendar-date {
        min-height: 30px;
        font-size: 0.72rem;
    }

    .legal-nav {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 14px;
    }

    .legal-nav a {
        flex: 1 1 135px;
        justify-content: center;
        width: auto;
        padding: 8px 10px;
        text-align: center;
    }
}

@media (max-width: 430px) {
    .container {
        width: min(100% - 24px, var(--max));
    }

    .nav {
        gap: 10px;
    }

    .brand {
        gap: 10px;
        font-size: 0.72rem;
    }

    .brand-mark {
        width: 78px;
        height: 38px;
        padding: 6px;
        flex: 0 0 auto;
    }

    .nav-links a {
        min-height: 38px;
        padding: 8px 7px;
        font-size: 0.68rem;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 12vw, 3.2rem);
    }

    .section h2,
    .contact-band h2,
    .member-band h2 {
        font-size: clamp(1.7rem, 10vw, 2.6rem);
    }

    .event-panel-body h2,
    .form-panel h2,
    .legal-card h2 {
        font-size: clamp(1.45rem, 7.2vw, 1.95rem);
    }

    .events-group-head h3,
    .calendar-card h3,
    .calendar-list h3 {
        font-size: clamp(1.45rem, 10vw, 2.05rem);
    }

    .member-card h3 {
        font-size: clamp(1.05rem, 5vw, 1.22rem);
    }

    .member-card p,
    .member-card li {
        font-size: 0.9rem;
    }

    .event-card-head {
        grid-template-columns: 1fr;
    }

    .event-card h3 {
        font-size: clamp(0.98rem, 4.8vw, 1.18rem);
        line-height: 1.08;
    }

    .event-date-tile {
        width: 76px;
    }

    .field-grid,
    .choice-grid,
    .group-list {
        gap: 12px;
    }

    .choice-card,
    .check-row {
        align-items: start;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

.event-panel-body h2 {
    font-size: clamp(1.22rem, 2vw, 1.9rem);
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}

.meta-item > div {
    min-width: 0;
}

.meta-item strong,
.meta-item span {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
}

.meta-item span {
    display: block;
    line-height: 1.35;
}

@media (max-width: 760px) {
    .event-panel-body {
        padding: 18px;
    }

    .event-panel-body h2 {
        font-size: clamp(1.12rem, 7vw, 1.65rem);
        line-height: 1.12;
    }

    .meta-item {
        gap: 10px;
    }
}

/* Launch guard: keep long German labels and event titles inside their boxes. */
:where(
    h1,
    h2,
    h3,
    h4,
    p,
    li,
    span,
    strong,
    a,
    label,
    .btn,
    .brand,
    .section-kicker,
    .event-badge,
    .event-card h3,
    .program-event h3,
    .gallery-title,
    .calendar-event-title,
    .notice-date
) {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}

:where(.btn, .nav-links a, .event-card-actions .btn, .form-actions .btn) {
    white-space: normal;
    min-width: 0;
}

@media (max-width: 760px) {
    h1 {
        font-size: clamp(2rem, 12vw, 4rem);
    }

    .section h2,
    .gallery-title,
    .contact-band h2,
    .member-band h2 {
        font-size: clamp(1.75rem, 10vw, 3rem);
        line-height: 0.98;
    }

    .hero-copy,
    .section-lead,
    .event-card p,
    .program-note p,
    .member-card p,
    .legal-card p {
        font-size: clamp(0.92rem, 4vw, 1rem);
    }
}

@media (max-width: 430px) {
    .container {
        width: min(100% - 20px, var(--max));
    }

    .hero {
        padding-top: 34px;
    }

    .hero-grid,
    .gallery-layout,
    .contact-band,
    .program-layout,
    .legal-layout {
        gap: 18px;
    }

    .event-panel-body,
    .event-card,
    .form-panel,
    .legal-card,
    .contact-card,
    .member-card {
        padding: 16px;
    }
}

.contact-band h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.contact-card .contact-row strong {
    font-size: clamp(0.95rem, 2vw, 1.08rem);
    line-height: 1.15;
    margin-bottom: 8px;
}

.contact-card .contact-row {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
}

.contact-card .contact-row i {
    width: 24px;
}

.application-status {
    min-height: 1.4em;
    margin-top: 12px;
    color: var(--primary-dark);
    font-weight: 900;
}

.choice-card,
.check-row {
    font-size: clamp(0.88rem, 1.6vw, 1rem);
    line-height: 1.35;
}

.choice-card > span,
.check-row > span,
.check-row > strong {
    min-width: 0;
    overflow-wrap: anywhere;
}

.choice-card strong,
.check-row strong {
    font-size: clamp(0.82rem, 1.5vw, 0.94rem);
    line-height: 1.2;
    text-transform: none;
}

@media (max-width: 760px) {
    .group-list {
        grid-template-columns: 1fr;
    }

    .application-form .form-panel h2 {
        font-size: clamp(1rem, 5.2vw, 1.35rem) !important;
        line-height: 1.08;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .choice-card,
    .check-row {
        grid-template-columns: 18px minmax(0, 1fr);
        padding: 13px;
        gap: 8px;
        overflow: hidden;
    }

    .choice-card strong,
    .check-row strong {
        display: block;
        max-width: 100%;
        font-size: clamp(0.46rem, 2vw, 0.55rem) !important;
        line-height: 1.18;
        overflow-wrap: anywhere;
        word-break: break-word;
        hyphens: auto;
    }

    .choice-card > span,
    .check-row > span,
    .check-row > strong {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

@media (max-width: 760px) {
    html,
    body {
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #171316;
    }

    .site-header,
    main,
    .hero,
    .page-hero,
    .section,
    .section-compact,
    .legal-section,
    .footer {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-right: calc(50% - 50vw) !important;
        margin-left: calc(50% - 50vw) !important;
    }

    .container {
        width: 100% !important;
        max-width: none !important;
        padding-right: 14px;
        padding-left: 14px;
    }
}

@media (max-width: 760px) {
    .contact-band h2 {
        font-size: clamp(1.8rem, 9vw, 2.45rem);
    }
}
