    :root{
      --bg: #0b0d12;
      --card: #121622;
      --text: #e9ecf1;
      --muted: #aab2c0;
      --accent: #5aa7ff;
      --shadow: 0 10px 30px rgba(0,0,0,.35);
      --radius: 18px;
      --max: 1100px;
    }
    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
      background: radial-gradient(1200px 600px at 20% -10%, rgba(90,167,255,.20), transparent 60%),
                  radial-gradient(900px 500px at 90% 0%, rgba(170,90,255,.18), transparent 55%),
                  var(--bg);
      color:var(--text);
    }

    /* Topbar */
    header{
      position:sticky;
      top:0;
      z-index:10;
      backdrop-filter: blur(10px);
      background: rgba(11,13,18,.70);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .header-inner{
      max-width: var(--max);
      margin:0 auto;
      padding:14px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      text-decoration:none;
      color:var(--text);
      font-weight:700;
      letter-spacing:.2px;
    }
    .dot{
      width:12px;height:12px;border-radius:50%;
      background: var(--accent);
      box-shadow: 0 0 0 6px rgba(90,167,255,.16);
    }
    .search{
      flex:1;
      display:flex;
      justify-content:flex-end;
    }
    .search input{
      width:min(420px, 100%);
      padding:10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.06);
      color: var(--text);
      outline: none;
    }
    .search input::placeholder{ color: rgba(233,236,241,.55); }

    /* Hero */
    .hero{
      max-width: var(--max);
      margin: 0 auto;
      padding: 18px;
    }
    .hero-card{
      position:relative;
      overflow:hidden;
      border-radius: 26px;
      box-shadow: var(--shadow);
      min-height: 62vh;
      display:flex;
      align-items:flex-end;
      border: 1px solid rgba(255,255,255,.08);
      background:
        linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.70) 70%, rgba(0,0,0,.82) 100%),
        url("assets/hero.jpg") center/cover no-repeat;
    }
    /* Falls du noch kein Bild hast, kannst du dieses Fallback aktivieren:
       background: linear-gradient(135deg, rgba(90,167,255,.25), rgba(170,90,255,.18)), #101425;
    */
    .hero-content{
      padding: 28px;
      max-width: 760px;
    }
    .kicker{
      display:inline-block;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.10);
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 10px;
    }
    h1{
      margin:0 0 10px 0;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.05;
    }
    .lead{
      margin:0 0 18px 0;
      color: rgba(233,236,241,.85);
      line-height:1.5;
      font-size: 16px;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }
    .btn{
      appearance:none;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.08);
      color: var(--text);
      padding: 11px 14px;
      border-radius: 12px;
      cursor:pointer;
      text-decoration:none;
      font-weight:600;
      display:inline-flex;
      align-items:center;
      gap:10px;
    }
    .btn.primary{
      background: rgba(90,167,255,.18);
      border-color: rgba(90,167,255,.35);
    }
    .btn:hover{ filter: brightness(1.08); }

    /* Content section */
    main{
      max-width: var(--max);
      margin: 0 auto;
      padding: 10px 18px 60px;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-top: 26px;
      margin-bottom: 14px;
    }
    .section-head h2{
      margin:0;
      font-size: 20px;
      letter-spacing:.2px;
    }
    .section-head p{
      margin:0;
      color: var(--muted);
      font-size: 14px;
    }

    /* Grid */
    .grid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
    }
    .card{
      grid-column: span 3;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius);
      overflow:hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,.25);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      text-decoration:none;
      color: var(--text);
      display:flex;
      flex-direction:column;
      min-height: 260px;
    }
    .card:hover{
      transform: translateY(-3px);
      border-color: rgba(90,167,255,.32);
      background: rgba(255,255,255,.06);
    }
    .thumb{
      position:relative;
      aspect-ratio: 16/9;
      background: #0f1420;
    }
    .thumb img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    .badge{
      position:absolute;
      left:10px;
      top:10px;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(0,0,0,.45);
      border: 1px solid rgba(255,255,255,.12);
      font-size:12px;
      color: rgba(233,236,241,.92);
      backdrop-filter: blur(8px);
    }
    .meta{
      padding: 12px 12px 14px;
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .title{
      font-weight:700;
      font-size: 15px;
      line-height: 1.2;
      margin:0;
    }
    .sub{
      margin:0;
      color: var(--muted);
      font-size: 13px;
      line-height:1.35;
    }
    .row{
      display:flex;
      gap:10px;
      align-items:center;
      color: rgba(233,236,241,.75);
      font-size: 12px;
      margin-top: 4px;
    }
    .row span{
      padding:4px 8px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
    }

    /* Responsive */
    @media (max-width: 1100px){
      .card{ grid-column: span 4; }
    }
    @media (max-width: 760px){
      .hero-card{ min-height: 56vh; }
      .card{ grid-column: span 6; }
      .search{ display:none; }
    }
    @media (max-width: 460px){
      .card{ grid-column: span 12; }
      .hero-content{ padding: 18px; }
    }

    /* Smooth scroll target spacing (wegen sticky header) */
    #filme { scroll-margin-top: 86px; }

    /* Filmseite Layout */
.film-hero{
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px;
}

.film-cover{
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  min-height: 62vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.film-cover-overlay{
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.70) 70%, rgba(0,0,0,.85) 100%);
}

.film-hero-inner{
  padding: 28px;
  max-width: 820px;
}

.film-title{
  margin: 0 0 10px 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.film-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.film-page{
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 18px 60px;
}

.film-content{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

.film-content h2{
  margin: 14px 0 10px;
}

.film-gallery{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.film-figure{
  grid-column: span 6;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.film-figure img{
  width: 100%;
  height: auto;
  display: block;
}

.film-figure figcaption{
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
}

/* Video Overlay */
.video-overlay{
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 18px;
}

.video-overlay.open{
  display: grid;
}

.video-shell{
  width: min(1100px, 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,12,18,.92);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  position: relative;
}

.video-close{
  position: absolute;
  right: 10px;
  top: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
  z-index: 2;
}

.video-player{
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

/* Responsive */
@media (max-width: 760px){
  .film-cover, .film-cover-overlay{ min-height: 56vh; }
  .film-hero-inner{ padding: 18px; }
  .film-figure{ grid-column: span 12; }
}
