:root {
    --bg: #060810;
    --text: rgba(255, 255, 255, .94);
    --muted: rgba(255, 255, 255, .74);
    --soft: rgba(255, 255, 255, .12);
    --line: rgba(255, 255, 255, .10);
    --shadow: rgba(0, 0, 0, .38);
    --gold: rgba(243, 225, 173, .95);
    --gold-soft: rgba(243, 225, 173, .18);
}

html, body {
    height: 100%;
    margin: 0
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif, "Viaoda Libre";
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

@font-face {
    font-family: "Viaoda Libre";
    src: url("./fonts/ViaodaLibre-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

a {
    color: inherit
}

.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 22px
}

.bgWrap {
    position: fixed;
    inset: 0;
    z-index: -3;
    opacity: 0;
    filter: blur(6px) saturate(1.1) brightness(.68);
    -webkit-filter: blur(6px) saturate(1.1) brightness(.68);
    transform: scale(1.08);
    transition: opacity 1700ms ease-in-out, transform 9000ms ease-in-out;
    pointer-events: none;
}

.bgWrap.show {
    opacity: 1;
    transform: scale(1.15)
}

.bgImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(900px 520px at 50% 18%, rgba(255, 255, 255, .05), rgba(0, 0, 0, 0) 55%),
    radial-gradient(900px 600px at 50% 30%, rgba(104, 145, 255, .08), rgba(0, 0, 0, 0) 65%),
    linear-gradient(to bottom, rgba(6, 8, 16, .28), rgba(6, 8, 16, .76) 58%, rgba(6, 8, 16, .94));
}

#magicCanvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .72
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(12px);
    background: linear-gradient(to bottom, rgba(8, 10, 20, .70), rgba(8, 10, 20, .18));
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nav {
    max-width: 1160px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .65px;
    font-weight: 800
}

.brandMark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 16px 40px var(--shadow), 0 0 28px rgba(243, 225, 173, .14);
}

.brandImg {
    width: 34px;
    height: 36px;
    object-fit: contain;
    display: block
}

.brandText {
    font-family: "Viaoda Libre";
    font-size: 15px;
    color: rgba(255, 255, 255, .88)
}

.topnav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end
}

.topnav a {
    text-decoration: none;
    font-size: 12px;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--muted);
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid transparent;
}

.topnav a:hover {
    color: var(--text);
    border-color: rgba(243, 225, 173, .22);
    background: rgba(243, 225, 173, .08);
}

@media (max-width: 980px) {
    .topnav {
        display: none
    }
}

.heroFull {
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
}

.heroInner {
    width: 100%;
    padding-top: 94px;
    padding-bottom: 80px;
    text-align: center;
}

.eyebrow {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    margin: 0 0 14px 0;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 12px;
}

.heroLogo {
    padding-top: 25px;
    width: 300px;
    height: 350px;
    margin: 0 auto 20px auto;
    border-radius: 36px;
    display: grid;
    place-items: center;
    overflow: hidden;
    /*background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));*/
    /*border:1px solid rgba(255,255,255,.16);*/
    /*box-shadow:0 24px 80px var(--shadow), 0 0 80px rgba(243,225,173,.12);*/
}

.heroLogoImg {
    width: 85%;
    height: 85%;
    object-fit: contain;
    display: block;
}

.heroText {
    font-family: "Viaoda Libre";
}

.heroLogoFallback {
    font-size: 48px;
    font-weight: 900;
    color: var(--text)
}

.hero h1 {
    margin: 0;
    font-size: clamp(40px, 6vw, 86px);
    letter-spacing: .8px;
    text-transform: uppercase;
    text-shadow: 0 12px 48px rgba(0, 0, 0, .45);
}

.heroLead {
    max-width: 900px;
    margin: 18px auto 0 auto;
    color: var(--muted);
    line-height: 1.7;
    font-size: clamp(16px, 1.6vw, 20px);
}

.heroMeta {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
}

.dot {
    opacity: .55
}

.heroPills {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(243, 225, 173, .08);
    border: 1px solid rgba(243, 225, 173, .18);
    color: rgba(255, 250, 236, .92);
    font-size: 12px;
    letter-spacing: .2px;
}

.heroScroll {
    margin: 34px auto 0 auto;
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: rgba(255, 255, 255, .84);
}

.heroScroll:hover {
    color: var(--gold)
}

.scrollArrow {
    font-size: 24px;
    animation: floatArrow 1.7s ease-in-out infinite;
}

@keyframes floatArrow {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(6px)
    }
}

.contentSection {
    padding-top: 48px;
    padding-bottom: 10px
}

.contentSection + .contentSection {
    margin-top: 24px
}

.sectionIntro {
    font-family: "Viaoda Libre";
    max-width: 840px;
    margin-bottom: 18px
}

.sectionIntro h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15
}

.twoCol {
    display: grid;
    grid-template-columns:1.2fr .8fr;
    gap: 36px;
    padding-top: 18px;
    border-top: 1px solid var(--line)
}

@media (max-width: 900px) {
    .twoCol {
        grid-template-columns:1fr
    }
}

.bodyText {
    color: var(--muted);
    line-height: 1.72;
    font-size: 16px;
    margin: 0 0 14px 0
}

.linkColumn {
    display: grid;
    align-content: start;
    gap: 6px
}

.lineLink {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: rgba(255, 255, 255, .88)
}

.lineLink:hover {
    color: var(--gold)
}

.featureList {
    border-top: 1px solid var(--line);
    padding-top: 18px;
    display: grid;
    gap: 18px
}

.featureItem {
    display: grid;
    grid-template-columns:32px 1fr;
    gap: 14px;
    align-items: start
}

.featureRune {
    color: var(--gold);
    font-size: 22px;
    line-height: 1.1;
    padding-top: 2px;
    text-shadow: 0 0 18px rgba(243, 225, 173, .30)
}

.featureItem h3 {
    margin: 0 0 6px 0;
    font-size: 20px
}

.featureItem p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65
}

.actsSection .sectionIntro {
    max-width: 900px
}

.actsShowcase {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    display: grid;
    gap: 24px;
}

.spotlightStage {
    position: relative;
    min-height: 460px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
}

.stageGlow {
    position: absolute;
    inset: auto 50% 0 50%;
    width: 560px;
    height: 560px;
    transform: translate(-50%, -18%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 225, 173, .22) 0%, rgba(243, 225, 173, .10) 22%, rgba(243, 225, 173, 0) 60%);
    filter: blur(12px);
    pointer-events: none;
}

.spotlightStage::before {
    content: '';
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 720px;
    height: 520px;
    background: radial-gradient(ellipse at top, rgba(255, 255, 255, .24) 0%, rgba(243, 225, 173, .15) 12%, rgba(243, 225, 173, .05) 28%, rgba(243, 225, 173, 0) 62%);
    filter: blur(12px);
    pointer-events: none;
}

.spotlightShell {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
    padding: 34px 28px 28px 28px;
    display: grid;
    grid-template-columns:340px 1fr;
    gap: 34px;
    align-items: center;
    transition: opacity .32s ease, transform .32s ease;
}

.spotlightShell.is-changing {
    opacity: .36;
    transform: translateY(8px)
}

@media (max-width: 900px) {
    .spotlightShell {
        grid-template-columns:1fr;
        gap: 22px;
        padding: 24px 18px 22px 18px
    }

    .spotlightStage {
        min-height: unset
    }
}

.spotlightImageWrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04));
    border: 1px solid rgba(243, 225, 173, .18);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .30), 0 0 50px rgba(243, 225, 173, .10);
}

.spotlightImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.spotlightFallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 54px;
    color: var(--gold);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
}

.spotlightMeta {
    max-width: 520px
}

.spotlightBadge {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(243, 225, 173, .10);
    border: 1px solid rgba(243, 225, 173, .20);
    color: rgba(255, 248, 230, .95);
    font-size: 12px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.spotlightMeta h3 {
    margin: 16px 0 10px 0;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.08;
}

.spotlightMeta p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.72
}

.actsChooser {
    display: grid;
    gap: 16px
}

.actsRondell {
    display: grid;
    grid-template-columns:48px 1fr 48px;
    gap: 12px;
    align-items: center
}

.rBtn {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(243, 225, 173, .18);
    background: rgba(243, 225, 173, .07);
    color: rgba(255, 248, 230, .92);
    cursor: pointer;
    font-size: 26px;
    line-height: 1
}

.rBtn:hover {
    background: rgba(243, 225, 173, .12)
}

.rViewport {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(8px);
    padding: 16px 12px
}

.rTrack {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    transition: transform 500ms ease;
    will-change: transform
}

.rItem {
    width: 86px;
    text-align: center;
    user-select: none;
    cursor: pointer
}

.rImg {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .20);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .28), 0 0 20px rgba(243, 225, 173, .10)
}

.rLabel {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, .74);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.rItem.active .rImg {
    border-color: var(--gold);
    transform: scale(1.07);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .28), 0 0 30px rgba(243, 225, 173, .20)
}

.rItem.active .rLabel {
    color: rgba(255, 255, 255, .94)
}

.actInfo {
    margin-top: 2px;
    padding-top: 14px;
    border-top: 1px solid var(--line)
}

.actName {
    font-weight: 900;
    margin-bottom: 6px;
    font-size: 22px
}

.actText {
    color: var(--muted);
    line-height: 1.6
}

.sponsorRow {
    display: grid;
    grid-template-columns:150px 1fr;
    gap: 18px;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 18px
}

@media (max-width: 700px) {
    .sponsorRow {
        grid-template-columns:1fr
    }
}

.sponsorBadge {
    width: 150px;
    height: 150px;
    border-radius: 28px;
    border: 1px solid rgba(243, 225, 173, .18);
    background: linear-gradient(180deg, rgba(243, 225, 173, .10), rgba(255, 255, 255, .04));
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25), 0 0 40px rgba(243, 225, 173, .10)
}

.sponsorImg {
    width: 92%;
    height: 92%;
    object-fit: contain;
    display: block
}

.sponsorFallback {
    font-size: 30px;
    color: var(--gold)
}

.subHead {
    margin: 0 0 8px 0;
    font-size: 22px
}

.legalSection {
    padding-bottom: 28px
}

.legalLinks {
    padding-top: 16px;
    color: rgba(255, 255, 255, .82)
}

.legalLinks a {
    text-decoration: none;
    color: rgba(255, 255, 255, .82)
}

.legalLinks a:hover {
    color: var(--gold);
    text-decoration: underline
}

.sep {
    opacity: .6;
    padding: 0 6px
}

.footer {
    max-width: 1160px;
    margin: 0 auto;
    padding: 24px 22px 42px 22px;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center
}

.page main.wrap {
    padding-top: 42px;
    padding-bottom: 42px
}

.list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7
}

.actInfo {
    display:none !important;
}

body.page .bgWrap {
    filter: blur(28px) saturate(1.10) brightness(.65);
    -webkit-filter: blur(28px) saturate(1.10) brightness(.65);
}

body.page #magicCanvas{ opacity: .45}

/* Programm Accordion */
.progList{
    border-top:1px solid var(--line);
    padding-top:10px;
}
.progItem{
    border-bottom:1px solid var(--line);
    padding:10px 0;
}
.progItem summary{
    cursor:pointer;
    list-style:none;
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    gap:14px;
    padding:10px 0;
}
.progItem summary::-webkit-details-marker{display:none}

.progTitle{
    font-weight:800;
    font-size:18px;
    color:rgba(255,255,255,.92);
}
.progMeta{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.9px;
    color:rgba(255,255,255,.65);
    border:1px solid rgba(243,225,173,.18);
    background:rgba(243,225,173,.08);
    padding:6px 10px;
    border-radius:999px;
    white-space:nowrap;
}

.progBody{
    padding:10px 0 16px 0;
}
.progBody p{
    margin:0 0 12px 0;
    color:var(--muted);
    line-height:1.75;
    font-size:16px;
}
.progBullets{
    margin:8px 0 12px 18px;
    color:var(--muted);
    line-height:1.7;
}
.progNote{
    color:rgba(255,255,255,.78);
    border-left:2px solid rgba(243,225,173,.40);
    padding-left:12px;
}
.timeBadge{
    min-width:78px;
    text-align:center;
    padding:6px 10px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.16);
    background:rgba(255,255,255,.06);
    color:rgba(255,255,255,.92);
    font-size:12px;
    letter-spacing:.6px;
    text-transform:uppercase;
}
.timeText{
    color:var(--muted);
    line-height:1.5;
}
.timeBadge{
    display:inline-block;
    min-width:78px;
    text-align:center;
    padding:6px 10px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.16);
    background:rgba(255,255,255,.06);
    color:rgba(255,255,255,.92);
    font-size:12px;
    letter-spacing:.6px;
    text-transform:uppercase;
    margin-right:8px;
}
.timeText{ color:var(--muted); }

.progPills{
    margin: 0 0 14px 0;
}

.progPill{
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.90);
    font-size: 12px;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.downloadGrid{
    display:grid;
    gap:12px;
    margin-top:12px;
    max-width:520px;
}

.downloadCard{
    text-decoration:none;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.05);
    border-radius:16px;
    padding:14px 16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.downloadCard:hover{
    border-color: rgba(243,225,173,.22);
    background: rgba(243,225,173,.08);
}

.downloadTitle{
    font-weight:800;
    color:rgba(255,255,255,.92);
}

.downloadHint{
    font-size:12px;
    letter-spacing:.8px;
    text-transform:uppercase;
    color:rgba(255,255,255,.70);
}

.mapBox{
    margin-top:12px;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(255,255,255,.04);
    border-radius:18px;
    overflow:hidden;
}

.mapPlaceholder{
    padding:16px;
}

.mapTitle{
    font-weight:900;
    margin-bottom:6px;
}

.mapText{
    color:var(--muted);
    margin-bottom:12px;
}

.mapBtn{
    cursor:pointer;
    border-radius:999px;
    padding:10px 14px;
    border:1px solid rgba(243,225,173,.22);
    background:rgba(243,225,173,.10);
    color:rgba(255,255,255,.92);
}

.mapBtn:hover{
    background:rgba(243,225,173,.14);
}

.mapSmall{
    margin-top:10px;
    color:rgba(255,255,255,.70);
    font-size:12px;
}

.mapLink{ color:rgba(255,255,255,.85); }

.mapFrame{
    width:100%;
    height:420px;
    border:0;
    display:block;
}

/* Programm Accordion: Chevron (geometrisch, rotiert sauber) */
.progItem summary{
    position: relative;
    padding-right: 46px;
}

.progItem summary::after{
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;

    width: 12px;
    height: 12px;

    /* Chevron-Form */
    border-right: 3px solid rgba(255,255,255,.70);
    border-bottom: 3px solid rgba(255,255,255,.70);

    /* Rotation um Mittelpunkt */
    transform-origin: 50% 50%;
    transform: translateY(-50%) rotate(45deg);

    transition: transform 180ms ease, border-color 180ms ease;
}

.progItem[open] summary::after{
    transform: translateY(-50%) rotate(-135deg);
    border-right-color: rgba(243,225,173,.95);
    border-bottom-color: rgba(243,225,173,.95);
}

.ytBox{
    margin-top:12px;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(255,255,255,.04);
    border-radius:18px;
    overflow:hidden;
}

.ytPlaceholder{ padding:16px; }

.ytTitle{ font-weight:900; margin-bottom:6px; }
.ytText{ color:var(--muted); margin-bottom:12px; }

.ytBtn{
    cursor:pointer;
    border-radius:999px;
    padding:10px 14px;
    border:1px solid rgba(243,225,173,.22);
    background:rgba(243,225,173,.10);
    color:rgba(255,255,255,.92);
}
.ytBtn:hover{ background:rgba(243,225,173,.14); }

.ytFrame{
    width:100%;
    height:420px;
    border:0;
    display:block;
}
@media (max-width:600px){ .ytFrame{ height:320px; } }


/* Disclaimer inline, ohne Zeilenumbruch */
.disclaimerLink{
    margin:0;
    font-size: 11px;
    color: rgba(255,255,255,.55);
    white-space: nowrap;
}

.disclaimerLink a{
    color: rgba(255,255,255,.75);
    text-decoration: underline;
}
.disclaimerLink a:hover{
    color: rgba(243,225,173,.95);
}

.menuBtn{
    display:none;
    width:42px;
    height:42px;
    border-radius:14px;
    border:1px solid rgba(243,225,173,.18);
    background:rgba(243,225,173,.08);
    color:rgba(255,255,255,.92);
    font-size:20px;
    cursor:pointer;
}

@media (max-width:980px){
    .menuBtn{ display:inline-flex; align-items:center; justify-content:center; }

    /* topnav nicht komplett killen, sondern als Dropdown benutzen */
    .topnav{
        display:none;
        position:absolute;
        right:22px;
        top:62px;
        flex-direction:column;
        gap:6px;
        padding:10px;
        border-radius:18px;
        border:1px solid rgba(255,255,255,.10);
        background:rgba(8,10,20,.88);
        backdrop-filter: blur(12px);
        min-width: 220px;
    }

    .topnav a{
        width:90%;
        justify-content:space-between;
    }

    .topnav.open{ display:flex; }
}

.innerProg{
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.innerProgItem{
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    border-radius: 16px;
    padding: 12px 14px;
}

.innerProgHead{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.innerProgTitle{
    font-weight: 900;
    color: rgba(255,255,255,.92);
}

.innerProgTag{
    font-size: 12px;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(255,255,255,.70);
    border: 1px solid rgba(243,225,173,.18);
    background: rgba(243,225,173,.08);
    padding: 6px 10px;
    border-radius: 999px;
    white-space: nowrap;
}