@font-face {
  font-family: 'Smart Thinker';
  src: url('Material/Fonts/smart thinker/Smart Thinker.woff') format('woff'),
       url('Material/Fonts/smart thinker/Smart Thinker.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Inter wird via Google Fonts geladen (index.html) */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

img {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: #fff;
  font-family: 'Inter', sans-serif;
}

/* ── HERO ── */
.hero {
  background: #111;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 32px 48px;
}

.hero-nav__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-nav__link:hover {
  color: #E13278;
}

/* Burger-Button – nur auf Mobile sichtbar */
.hero-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 20;
}

.hero-nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hero-nav__burger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hero-nav__burger--open span:nth-child(2) {
  opacity: 0;
}
.hero-nav__burger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay-Menü */
.hero-nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 15;
  background: rgba(0, 0, 0, 0.92);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.hero-nav__overlay--open {
  display: flex;
}

.hero-nav__overlay-link {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.hero-nav__overlay-link:hover {
  color: #3cab93;
}

@media (max-width: 820px) {
  .hero-nav__link {
    display: none;
  }
  .hero-nav {
    justify-content: flex-end;
    padding: 24px 20px;
  }
  .hero-nav__burger {
    display: flex;
  }
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(1) contrast(1.12);
}

/* Sonnenreflexion: weiches Licht in der Bildmitte */
.hero::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(255,245,220,0.28) 0%, rgba(255,240,200,0.1) 40%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Dunkles Overlay über dem Video */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
  pointer-events: none;
}

/* ── LOGO-BLOCK: zentriert, Unterkante am Horizont ── */
.logo-wrap {
  position: absolute;
  bottom: 48%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.logo-block {
  position: relative;
  display: inline-block;
}

.logo {
  width: clamp(280px, 88vw, 1210px);
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

/* Studios-Schriftzug: klein, unterhalb und rechts vom M01N-Logo */
.logo-studios {
  position: absolute;
  top: 100%;
  right: 4%;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 3vw, 2.45rem);
  font-weight: 350;
  color: #E13278;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ── TEXT: direkt unterhalb des Horizonts ── */
.hero-text {
  position: absolute;
  top: 62%;              /* knapp unter dem Horizont */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  z-index: 2;
  white-space: nowrap;
  max-width: 90vw;
}

.hero-social {
  color: #fff;
  display: flex;
  opacity: 0.85;
  transition: opacity 0.25s ease;
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.4));
}

.hero-social:hover {
  opacity: 1;
}

.hero-social svg {
  width: 28px;
  height: 28px;
}

/* ── STERNE ── */
@keyframes twinkle {
  0%   { opacity: 0; }
  20%  { opacity: 1; }
  50%  { opacity: 0.4; }
  75%  { opacity: 1; }
  100% { opacity: 0; }
}

.stars {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.stars span {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  width: 3px;
  height: 3px;
  animation-name: twinkle;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  box-shadow: 0 0 3px 1px rgba(255,255,255,0.5);
}

.stars .star--bright {
  width: 5px;
  height: 5px;
  box-shadow: 0 0 6px 2px rgba(255,255,255,0.8), 0 0 12px 3px rgba(255,255,255,0.3);
}

/* ── ABSCHLUSSKANTE ── */
.abschlusskante {
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none;
}

.abschlusskante img {
  width: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

.abschlusskante__phone {
  display: none !important;
}

/* ── INTERLUDE / SOCIAL ── */
.interlude {
  background: #fff;
  padding: 14px 24px 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.social-link {
  color: #2a2a2a;
  display: flex;
  transition: color 0.25s ease;
}

.social-link:hover {
  color: #3cab93;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

/* ── BEITRÄGE ── */
.beitraege {
  background: #fff;
  padding: 0 40px clamp(80px, 14vw, 200px);
}

.beitraege__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.beitraege__header {
  margin-bottom: 96px;
}

.beitraege__header .section-eyebrow,
.beitraege__heading {
  margin-left: 0;
  padding-left: 0;
}

.beitraege__slider-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.beitraege__slider {
  flex: 1;
  overflow: hidden;
  container-type: inline-size;
  user-select: none;
  -webkit-user-select: none;
}

.beitraege__track {
  display: flex;
  gap: 44px;
  transition: transform 0.2s ease;
}

.beitraege__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  user-select: none;
  -webkit-user-select: none;
  border: 1.5px solid #d0d0d0;
  background: #fff;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.beitraege__arrow:hover {
  border-color: #3cab93;
  color: #3cab93;
}

.beitraege__arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.beitraege__arrow svg {
  width: 18px;
  height: 18px;
}

.beitraege__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.beitraege__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d0d0d0;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.beitraege__dot--active {
  background: #3cab93;
  transform: scale(1.25);
}

.beitrag-card {
  flex: 0 0 calc((100cqi - 88px) / 3);
  min-width: 0;
}

.beitrag-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.beitrag-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.beitrag-card__date {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: #aaa;
  letter-spacing: 0.04em;
}

.beitrag-card__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
}

.beitrag-card__placeholder {
  width: 100%;
  height: 100%;
  background: #e8e8e8;
  transition: background 0.25s ease;
}

.beitrag-card__link:hover .beitrag-card__placeholder {
  background: #d8d8d8;
}

.beitrag-card__placeholder--dark {
  background: linear-gradient(135deg, #1a2e2d 0%, #242424 50%, #2a1a2e 100%);
}

.beitrag-card__link:hover .beitrag-card__placeholder--dark {
  background: linear-gradient(135deg, #1f3836 0%, #2e2e2e 50%, #341f3a 100%);
}

.beitrag-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.beitrag-card__link:hover .beitrag-card__img img {
  transform: scale(1.04);
}

.beitrag-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.beitrag-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3cab93;
}

.beitrag-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.beitrag-card__link:hover .beitrag-card__title {
  color: #E13278;
}

.beitrag-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  margin: 14px 0 0;
  user-select: text;
  -webkit-user-select: text;
}

/* ── BEITRÄGE–AKTUELLES ÜBERGANGS-WOLKEN ── */
.beitraege-wolken {
  position: relative;
  width: 100%;
  height: 0;
  overflow-x: clip;
  pointer-events: none;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.beitraege-wolken.is-hidden {
  opacity: 0;
}

.beitraege-wolken img {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(calc(-50% + 23px));
  width: 100%;
  min-width: 2000px;
  image-rendering: pixelated;
  filter: drop-shadow(0 -3px 2px rgba(0, 0, 0, 0.12));
}


/* ── AKTUELLES DEKO-WOLKEN ── */
.aktuelles-deko-wolken {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  pointer-events: none;
  z-index: 1;
}

.aktuelles-deko-cloud {
  position: absolute;
  left: 0;
  image-rendering: pixelated;
}

.aktuelles-deko-cloud--a {
  top: 18%;
  width: 140px;
  opacity: 0.22;
  animation: cloud-ltr 85s linear infinite -30s;
}

.aktuelles-deko-cloud--b {
  top: 55%;
  width: 90px;
  opacity: 0.15;
  animation: cloud-rtl 115s linear infinite -70s;
}

/* ── AKTUELLES ── */
.aktuelles {
  position: relative;
  overflow-x: clip;
  z-index: auto;
  margin-top: 20px;
  background-color: #D0E5F8;
  background-image: radial-gradient(circle, rgba(0, 60, 160, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  padding: 140px 40px 210px;
  transition: background-color 0.25s ease;
}

/* ── GAMES TABS ── */
.games-tabs {
  display: flex;
  gap: 20px;
  margin-top: 48px;
}

.games-tab {
  flex: 0 0 140px;
  height: 76px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.games-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
}

.games-tab.is-active {
  background: rgba(255, 255, 255, 0.45);
  border-width: 3px;
  border-color: rgba(255, 255, 255, 0.9);
}

.games-tab__num {
  font-family: 'Smart Thinker', sans-serif;
  font-size: 0.92rem;
  color: rgba(60, 171, 147, 0.5);
  letter-spacing: 0.18em;
}

.games-tab__name {
  font-size: 0.93rem;
  font-weight: 700;
  color: rgba(60, 171, 147, 0.5);
  letter-spacing: 0.02em;
  min-height: 2.4em;
}

.games-tab.is-active .games-tab__num {
  color: #3cab93;
}

.games-tab.is-active .games-tab__name {
  color: #3cab93;
}

.games-tabs--dark .games-tab__num,
.games-tabs--dark .games-tab__name {
  color: rgba(255, 255, 255, 0.4);
}

.games-tabs--dark .games-tab.is-active .games-tab__num,
.games-tabs--dark .games-tab.is-active .games-tab__name {
  color: #fff;
}

/* ── GAMES SLIDES ── */
.games-slides {
  position: relative;
  margin-top: 16px;
  border: 3px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  padding: 0;
  transition: height 0.3s ease;
  overflow: hidden;
  height: 700px;
}

.games-slides--small {
  height: 662px;
}

.game-slide {
  position: absolute;
  top: 50%;
  left: 52px;
  right: 52px;
  width: auto;
  transform: translateY(-50%);
  transition: opacity 0.1s ease;
  padding: 48px 0;
}

.game-slide:not(.is-active) {
  opacity: 0;
  pointer-events: none;
}

.games-arrow {
  display: none;
}

/* ── GAME SOON LAYOUT ── */
.game-soon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: clamp(380px, 42vw, 520px);
  padding: 0 20px;
  position: relative;
  z-index: 20;
}

.game-soon__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.game-soon__num {
  font-family: 'Smart Thinker', sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: normal;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  letter-spacing: 0.04em;
}

.game-soon__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.game-soon__title {
  font-family: 'Smart Thinker', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: normal;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.game-soon__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.7;
  max-width: 380px;
}

.game-soon__gfx {
  font-family: 'Smart Thinker', sans-serif;
  font-size: clamp(8rem, 22vw, 18rem);
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
}

/* ── GAMES COUNTER ── */
.games-counter {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(60, 171, 147, 0.7);
  text-align: center;
  margin-top: 40px;
}

.aktuelles-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}


/* ── BENTO GRID ── */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 200px;
  grid-template-rows: repeat(4, 1fr);
  gap: 16px;
  height: 580px;
}

.bento-cell--main {
  grid-row: 1 / 5;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

/* ── BENTO VIEWS (animated switching) ── */
.bento-view {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.bento-view.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.bento-cell__content {
  flex: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}

.bento-cell__visual {
  width: 300px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  padding-bottom: 0;
}

/* ── COMING SOON VIEW ── */
.bento-view--soon,
.bento-view--mystery {
  align-items: center;
  justify-content: space-between;
  padding: 48px 52px;
  gap: 24px;
}

.bento-soon__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bento-soon__eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3cab93;
  background: rgba(60,171,147,0.1);
  border: 1px solid rgba(60,171,147,0.3);
  border-radius: 999px;
  padding: 4px 12px;
  width: fit-content;
}

.bento-soon__title {
  font-family: 'Smart Thinker', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: normal;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1;
}

.bento-soon__desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 360px;
}

.bento-soon__gfx {
  font-family: 'Smart Thinker', sans-serif;
  font-size: clamp(6rem, 14vw, 12rem);
  color: rgba(255,255,255,0.05);
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
}

/* ── SELECTOR CELLS ── */
.bento-cell--sm {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.bento-cell--sm:hover {
  border-color: rgba(60,171,147,0.4);
  background: rgba(60,171,147,0.04);
}

.bento-cell--sm.is-active {
  border-color: rgba(60,171,147,0.65);
  background: rgba(60,171,147,0.1);
  cursor: default;
}

.bento-cell--mystery {
  align-items: center;
  justify-content: center;
  text-align: center;
  border-style: dashed;
  opacity: 0.5;
}

.bento-cell--mystery.is-active {
  opacity: 1;
}

.bento-cell__badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3cab93;
  background: rgba(60,171,147,0.1);
  border: 1px solid rgba(60,171,147,0.3);
  border-radius: 999px;
  padding: 3px 10px;
  width: fit-content;
}

.bento-cell__title {
  font-family: 'Smart Thinker', sans-serif;
  font-size: 1.15rem;
  font-weight: normal;
  color: #fff;
  letter-spacing: 0.04em;
}

.bento-cell__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* ── CHAPTER DIVIDER ── */
.chapter-divider {
  display: block;
  width: 100%;
  line-height: 0;
  font-size: 0;
  overflow: visible;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 12;
}

.chapter-divider--pfuetze {
  margin-top: calc(-300px);
  z-index: 10;
}

/* Pfütze am unteren Rand von .aktuelles */
.aktuelles-pfuetze {
  display: none;
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1500px;
  pointer-events: none;
  z-index: 1;
}

.chapter-divider img {
  display: block;
  width: 100%;
  min-width: 2000px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.chapter-divider--pfuetze img {
  width: 59%;
  min-width: unset;
  left: 50%;
  transform: translateX(-50%);
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3cab93;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: #3cab93;
  display: block;
}

.section-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: 900;
  color: #E13278;
  letter-spacing: -0.02em;
  font-kerning: auto;
  line-height: 0.85;
  text-transform: uppercase;
  margin-bottom: 56px;
}

/* Stagger-Zeilen: jede Zeile als Block mit individuellem Versatz */
.hl {
  display: block;
}

/* ── SHOWCASE LAYOUT ── */
.project-card {
  display: grid;
  grid-template-columns: 46fr 54fr;
  align-items: stretch;
  gap: 0;
}

/* ── INFO PANEL ── */
.project-card__info {
  background: none;
  clip-path: none;
  box-shadow: none;
  padding: 0 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 2;
  justify-content: flex-start;
  align-self: stretch;
  margin-top: 30px;
}

.og-logo {
  width: 100%;
  max-width: 430px;
  height: auto;
  order: 10;
  margin-top: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 4px rgba(60, 171, 147, 0.18));
}

.og-desc {
  font-size: clamp(0.88rem, 1.2vw, 0.97rem);
  line-height: 1.82;
  color: #1a5c57;
  font-weight: 500;
  max-width: 420px;
  margin-top: 7px;
}

.og-desc + .og-desc {
  margin-top: -16px;
}

.og-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.og-tag {
  font-family: 'Jersey 10', sans-serif;
  font-size: 1.52rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-block;
  padding: 9.5px 17px;
  background-image: url('Ostfriesland_Games/Button_pixel.svg');
  background-size: 100% 100%;
  background-color: transparent;
  background-repeat: no-repeat;
  color: #348D93;
  border: none;
  border-radius: 0;
  text-decoration: none;
  image-rendering: pixelated;
  transition: color 0.2s, filter 0.2s;
}

a.og-tag:hover {
  color: #E13278;
  filter: brightness(0.92);
}

/* ── PIXEL PROGRESS BAR ── */
.og-status {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: -5px;
}

.og-status__label {
  font-family: 'Jersey 10', sans-serif;
  font-size: 1.75rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #348D93;
}

.og-progress {
  width: 200px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 0;
  padding: 2px;
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(
    4px 0,
    calc(100% - 4px) 0,
    calc(100% - 4px) 2px, calc(100% - 2px) 2px,
    calc(100% - 2px) 4px, 100% 4px,
    100% calc(100% - 4px),
    calc(100% - 2px) calc(100% - 4px), calc(100% - 2px) calc(100% - 2px),
    calc(100% - 4px) calc(100% - 2px), calc(100% - 4px) 100%,
    4px 100%,
    4px calc(100% - 2px), 2px calc(100% - 2px),
    2px calc(100% - 4px), 0 calc(100% - 4px),
    0 4px,
    2px 4px, 2px 2px, 4px 2px
  );
}

.og-progress__fill {
  height: 100%;
  width: 0%;
  border-radius: 0;
  background: repeating-linear-gradient(
    90deg,
    #fff 0px,
    #fff 10px,
    transparent 10px,
    transparent 13px
  );
  animation: pixel-load 9s ease-in-out infinite;
}

@keyframes pixel-load {
  0%        { width: 0%; }
  65%       { width: 68%; }
  85%, 95%  { width: 68%; }
  100%      { width: 0%; }
}

/* ── SCENE (open, no background) ── */
.project-card__visual {
  position: relative;
  z-index: 2;
  height: auto;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-left: 0;
  overflow: visible;
  padding-bottom: 56px;
}


.og-arcade {
  position: relative;
  z-index: 2;
  transform: rotate(8deg) translateY(95px);
  transform-origin: bottom center;
  filter: drop-shadow(0 0 36px rgba(255, 255, 255, 0.72)) drop-shadow(0 0 14px rgba(255, 255, 255, 0.55));
  animation: float 4s ease-in-out infinite;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
}

.og-arcade__img {
  display: block;
  height: auto;
  max-height: clamp(360px, 38vw, 510px);
  width: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  pointer-events: none;
}

.og-arcade__img--d1,
.og-arcade__img--d2 {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

@keyframes float {
  0%, 100% { transform: rotate(8deg) translateY(4px); }
  50%       { transform: rotate(8deg) translateY(-8px); }
}



/* ── SECTION CLOUDS ── */
.s-clouds-wrap {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 11;
}

.s-clouds-bg {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}

.s-cloud {
  position: absolute;
  left: 0;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  pointer-events: none;
  mix-blend-mode: normal;
}

/* Vordergrund – groß, klar sichtbar */
.s-cloud--1 {
  top: calc(5% - 21px);
  width: 130px;
  opacity: 0.72;
  z-index: 0;
  animation: cloud-ltr 130s linear infinite -40s;
}

/* Hintergrund – klein, weit weg */
.s-cloud--2 {
  top: 55%;
  width: 62px;
  opacity: 0.3;
  z-index: 0;
  animation: cloud-rtl 170s linear infinite -60s;
}

/* Mittelebene – mittelgroß */
.s-cloud--3 {
  top: 65%;
  width: 105px;
  opacity: 0.35;
  z-index: 0;
  animation: cloud-ltr 155s linear infinite -90s;
}

/* Sehr weit unten – groß, langsam */
.s-cloud--5 {
  top: 85%;
  width: 160px;
  opacity: 0.85;
  z-index: 0;
  animation: cloud-rtl 210s linear infinite -30s;
}

/* Hintergrund – mittel */
.s-cloud--4 {
  top: 62%;
  width: 78px;
  opacity: 0.25;
  z-index: 0;
  animation: cloud-rtl 190s linear infinite -110s;
}

@keyframes cloud-ltr {
  from { transform: translateX(-200px); }
  to   { transform: translateX(calc(100vw + 200px)); }
}

@keyframes cloud-rtl {
  from { transform: translateX(calc(100vw + 200px)); }
  to   { transform: translateX(-200px); }
}



/* ══════════════════════════════
   KAPITEL ZWEI
══════════════════════════════ */
.chapter-zwei {
  background: #fff;
  padding: 0 40px 80px;
  position: relative;
  z-index: 6;
}

.chapter-zwei__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.chapter-eyebrow {
  color: #aaa;
}

/* ── Zwei-Spalten Heading-Block (Heading links, Text rechts) ── */
.section-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 40px 56px;
  margin-bottom: 64px;
}

.section-header .section-heading,
.section-header .chapter-heading {
  margin-bottom: 0;
}

.section-header--dark .section-eyebrow {
  color: #3cab93;
}

.section-header--dark .chapter-text,
.section-header--dark .mehr-intro {
  color: rgba(255,255,255,0.72);
}

.chapter-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: 900;
  color: #E13278;
  letter-spacing: -0.02em;
  font-kerning: auto;
  line-height: 0.85;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: 12px;
}

.chapter-text {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: #555;
  max-width: 560px;
  font-weight: 300;
  padding-top: 8px;
}

/* ══════════════════════════════
   TEAM – CREATOR SQUAD
══════════════════════════════ */
.team {
  background: #ffffff;
  background-image: none;
  margin-top: -380px;
  padding: 520px 40px 120px;
  position: relative;
  z-index: 6;
  overflow-x: hidden;
}

.team__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header */
.team-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px 56px;
  margin-bottom: 40px;
}

.team-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.team-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: 900;
  color: #E13278;
  line-height: 0.85;
  letter-spacing: -0.02em;
  font-kerning: auto;
  text-transform: uppercase;
}

.team-intro {
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  line-height: 1.78;
  color: #1a1a1a;
  max-width: 460px;
  padding-top: 12px;
}

/* ── Charakter-Auswahl ── */
.char-select {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.char-select__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  transition: background 0.18s, transform 0.18s;
}

.char-select__tile:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.char-select__tile.is-active {
  background: #f5f5f5;
}

.char-select__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: rgba(0,0,0,0.55);
  outline: 2.5px solid transparent;
  outline-offset: 3px;
  transition: outline-color 0.18s;
}

.char-select__tile.is-active .char-select__avatar {
  outline-color: #3cab93;
}

.char-select__tile:hover .char-select__avatar {
  outline-color: rgba(60,171,147,0.35);
}

.char-select__name {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bbb;
  transition: color 0.18s;
}

.char-select__tile.is-active .char-select__name {
  color: #3cab93;
}

/* ── Character Viewer Layout ── */
.char-viewer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px minmax(0, 1.3fr);
  -webkit-user-select: none;
  user-select: none;
  gap: 48px;
  align-items: start;
  position: relative;
}

/* ── Links: Attribute ── */
.char-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 0;
  min-width: 0;
}

/* ── Name (oben links in der Attributspalte) ── */
.char-name {
  margin-bottom: 12px;
  position: relative;
  z-index: 20;
  min-height: calc(clamp(2.4rem, 4vw, 4.5rem) * 1.8 + 24px);
  /* 2 Zeilen × line-height 0.9 + Platz für optionale Alias-Zeile */
}

.char-name__top,
.char-name__bot {
  font-family: 'Smart Thinker', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: normal;
  color: #1a1a1a;
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.char-name__alias {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(0,0,0,0.4);
  letter-spacing: 0.08em;
  font-style: italic;
  display: block;
  margin-top: 4px;
}

.char-attrs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.char-attr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.char-attr-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3cab93;
  margin-bottom: 9px;
}

.char-attr-icons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

#js-char-skills {
  display: grid;
  grid-template-columns: repeat(2, 70px);
  gap: 6px;
}

.char-attr-icon {
  width: 70px;
  height: 70px;
  background: #f4f4f4;
  border: 1.5px solid #ebebeb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.char-spirit-wrap {
  margin-top: 0;
}

.char-spirit-box {
  padding: 5px;
  width: 88px !important;
  height: 88px !important;
  background: #ffffff !important;
}

.char-spirit-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.char-spirit-img svg,
.char-spirit-img-inner {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Mitte: Stage ── */
.char-center {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 96px;
  align-self: start; /* verhindert Grid-Stretching → feste Höhe, Pfeile springen nicht */
}

.char-nav {
  position: absolute;
  top: 648px; /* immer direkt unter der fixen 600px-Bühne */
  bottom: auto;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #bbb;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  font-family: monospace;
  z-index: 5;
}

#js-char-prev { left: calc(50% - 48px); }
#js-char-next { left: calc(50% + 8px); right: auto; }

.char-nav:hover {
  border-color: #E13278;
  color: #E13278;
}

.char-stage {
  flex: none;
  height: 600px;
  background: transparent !important;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.char-figure {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.char-pixel-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  mix-blend-mode: multiply;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Pixel-Art Silhouette */
.char-silhouette {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.char-sil__head {
  width: 50px;
  height: 50px;
  background: #3a3a3a;
  border-radius: 50%;
}

.char-sil__body {
  width: 76px;
  height: 170px;
  background: linear-gradient(180deg, #404040 0%, #303030 100%);
  border-radius: 6px 6px 3px 3px;
  position: relative;
}

/* Arme */
.char-sil__body::before,
.char-sil__body::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 90px;
  background: #383838;
  border-radius: 4px;
  top: 10px;
}

.char-sil__body::before { left: -24px; }
.char-sil__body::after  { right: -24px; }

/* Beine per extra Div wäre schöner, hier via box-shadow simuliert */

.char-glow {
  position: absolute;
  bottom: 20px;
  left: 8%;
  right: 25%;
  height: 22px;
  background: radial-gradient(ellipse 100% 100% at 85% 50%, rgba(0,0,0,0.22) 0%, transparent 100%);
  border-radius: 50%;
  filter: blur(7px);
  transform: skewX(-18deg);
  transform-origin: right bottom;
  z-index: 1;
  pointer-events: none;
}

.char-counter {
  display: none;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #bbb;
  white-space: nowrap;
}

/* ── Rechts: Outfits + Code ── */
.char-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding-top: calc(clamp(2.4rem, 4vw, 4.5rem) * 1.8 + 24px + 32px);
  /* = .char-name min-height + 12px margin-bottom + 20px gap */
  padding-left: 40px;
  min-width: 0;
}

.char-outfit-grid {
  display: grid;
  grid-template-columns: repeat(3, 70px);
  gap: 7px;
}

.char-outfit {
  width: 70px;
  height: 70px;
  background: #f4f4f4;
  border: 1.5px solid #c8c8c8;
  border-radius: 10px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}

.char-outfit--active {
  border-color: #3cab93;
  background: rgba(60,171,147,0.1);
  box-shadow: 0 0 0 3px rgba(60,171,147,0.15);
}

.char-outfit--locked {
  opacity: 0.45;
  cursor: default;
}

.char-outfit--wide {
  grid-column: 1 / -1;
  width: 100%;
}

.char-outfit__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777;
}

.char-outfit__icon {
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.char-outfit__icon svg {
  width: 65%;
  height: 65%;
}

.char-code-wrap {
  margin-top: 6px;
  width: 224px; /* 3 × 70px + 2 × 7px gap */
}

.char-code-input {
  width: 100%;
  background: #fafafa;
  border: 1.5px solid #b0b0b0;
  border-radius: 8px;
  padding: 8px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
}

.char-code-input::placeholder {
  color: #ccc;
}

.char-code-input:focus {
  border-color: #3cab93;
}

.char-code-hint {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  line-height: 1.6;
  color: #bbb;
  max-width: 224px;
  margin-top: 4px;
  transition: color 0.15s;
}

.char-code-hint.is-flash {
  color: #E13278;
}

@keyframes outfit-shake {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(-5px); }
  40%  { transform: translateX(5px); }
  60%  { transform: translateX(-4px); }
  80%  { transform: translateX(3px); }
  100% { transform: translateX(0); }
}

.char-outfit--shake {
  animation: outfit-shake 0.35s ease;
}


/* ══════════════════════════════
   WEITERE PROJEKTE
══════════════════════════════ */
.mehr {
  background: linear-gradient(to bottom, #2a2a2a 0%, #363636 100%);
  padding: 56px 40px 140px;
}

.mehr__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mehr-header {
  margin-bottom: 64px;
}

.mehr-header .section-heading {
  margin-bottom: 28px;
  font-size: clamp(3rem, 12vw, 10rem);
  text-align: right;
}

.mehr-intro {
  font-size: clamp(0.88rem, 1.2vw, 0.97rem);
  line-height: 1.78;
  color: rgba(255,255,255,0.72);
  max-width: 100%;
  font-weight: 400;
  text-align: left;
  margin-left: 0;
}

.mehr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.mehr-card {
  background: #242424;
  border: none;
  border-radius: 12px;
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mehr-card::before {
  display: none;
}

.mehr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.mehr-card--mystery {
  border-style: dashed;
  opacity: 0.5;
}

.mehr-card__icon {
  font-size: 1.6rem;
  color: #3cab93;
  line-height: 1;
  margin-bottom: 4px;
}

.mehr-card__badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3cab93;
  background: rgba(60,171,147,0.08);
  border: none;
  border-radius: 999px;
  padding: 4px 12px;
  width: fit-content;
}

.mehr-card__badge--dim {
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}

.mehr-card__title {
  font-family: 'Smart Thinker', sans-serif;
  font-size: 2.6rem;
  font-weight: normal;
  color: #fff;
  letter-spacing: 0.04em;
}

.mehr-card__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin-top: -6px;
}

.mehr-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.mehr-cta__btn {
  display: inline-block;
  background: #3cab93;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 17px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.mehr-cta__btn:hover {
  background: #2d9e86;
}


/* ══════════════════════════════
   KONTAKT
══════════════════════════════ */
.kontakt {
  background: #fff;
  padding: 72px 40px 80px;
}

.kontakt__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.kontakt__eyebrow {
  color: #3cab93;
}

.kontakt__heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: 900;
  color: #E13278;
  letter-spacing: -0.02em;
  font-kerning: auto;
  line-height: 0.85;
  text-transform: uppercase;
  margin: 16px 0 28px;
}

.kontakt__sub {
  font-size: clamp(0.88rem, 1.2vw, 0.97rem);
  color: #1a1a1a;
  line-height: 1.75;
  margin-bottom: 40px;
}

.kontakt__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.kontakt__btn {
  background: #3cab93;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.kontakt__btn:hover {
  background: #2d7d76;
}

.kontakt__link {
  color: rgba(0,0,0,0.35);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.kontakt__link:hover {
  color: #3cab93;
}


/* ── KONTAKT BUTTON MIT ICON ── */
.kontakt__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.kontakt__btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.kontakt__btn[aria-expanded="true"] .kontakt__btn-icon {
  transform: rotate(45deg);
}

/* ── KONTAKT FORMULAR ── */
.kontakt-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.kontakt-form-wrap {
  margin-top: 48px;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kontakt-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.kontakt-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kontakt-form__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.kontakt-form__input {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
  background: #f5f5f5;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 16px 20px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.kontakt-form__input:focus {
  border-color: #3cab93;
  background: #fff;
}

.kontakt-form__input::placeholder {
  color: rgba(0,0,0,0.22);
}

.kontakt-form__textarea {
  resize: vertical;
  min-height: 150px;
}

.kontakt-form__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 0;
}

.kontakt-form__submit {
  background: #3cab93;
  color: #fff;
  border: none;
  margin-top: 8px;
  border-radius: 10px;
  padding: 17px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.kontakt-form__submit:hover {
  background: #2d9e86;
}

.kontakt-form__consent {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.78rem;
  color: rgba(0,0,0,0.45);
  line-height: 1.5;
}

.kontakt-form__checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: -2px;
  cursor: pointer;
  border: 2px solid rgba(0,0,0,0.25);
  border-radius: 4px;
  background: #fff;
  transition: border-color 0.2s;
  position: relative;
}

.kontakt-form__checkbox:checked {
  border-color: #3cab93;
  background: #fff;
}

.kontakt-form__checkbox:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: 2.5px solid #3cab93;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.kontakt-form__consent a {
  color: rgba(0,0,0,0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kontakt-form__consent a:hover {
  color: #3cab93;
}

/* ── KONTAKT STÖRER ── */
/* ── KONTAKT MARQUEE ── */
.kontakt-marquee__item--cat {
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  transform: translateY(-2px);
}

.js-cat-frame {
  height: 43px;
  width: auto;
  vertical-align: middle;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.kontakt-marquee__dot.kontakt-marquee__dot--red {
  color: #E82020;
  display: inline-block;
  animation: dot-bob 1.8s linear infinite;
  font-size: 1.4rem;
  position: relative;
  top: -8px;
}

@keyframes dot-bob {
  0%   { transform: translate(0px,    0px)    rotate(0deg);   }
  12%  { transform: translate(2px,   -3px)   rotate(8deg);   }
  24%  { transform: translate(-2px,  -5px)   rotate(-5deg);  }
  33%  { transform: translate(3px,   -2px)   rotate(12deg);  }
  45%  { transform: translate(-1px,  -6px)   rotate(-9deg);  }
  55%  { transform: translate(3px,   -3px)   rotate(6deg);   }
  66%  { transform: translate(-3px,  -1px)   rotate(-12deg); }
  78%  { transform: translate(1px,   -5px)   rotate(4deg);   }
  88%  { transform: translate(-2px,  -2px)   rotate(-7deg);  }
  100% { transform: translate(0px,    0px)   rotate(0deg);   }
}

.kontakt-marquee {
  overflow: hidden;
  background: transparent;
  padding: 18px 0;
  margin-bottom: -16px;
}

.kontakt-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: kontakt-scroll 105s linear infinite;
}

.kontakt-marquee__item {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  white-space: nowrap;
  padding: 0 36px;
}

.kontakt-marquee__item--a {
  color: #E13278;
  text-transform: uppercase;
}

.kontakt-marquee__item--b {
  color: #3cab93;
}

.kontakt-marquee__dot {
  color: rgba(0,0,0,0.35);
  font-size: 1.9rem;
  flex-shrink: 0;
  line-height: 1;
}

@keyframes kontakt-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.kontakt-stoerer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.kontakt-stoerer__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3cab93;
}

.kontakt-stoerer__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}

.kontakt-stoerer__link:hover {
  color: #3cab93;
}

.kontakt-stoerer__divider {
  color: rgba(0,0,0,0.2);
}

.kontakt-stoerer__loc {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.35);
}

/* ══════════════════════════════
   DATENSCHUTZ MODAL
══════════════════════════════ */
.ds-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ds-modal--open {
  display: flex;
}

.ds-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.ds-modal__box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 82vh;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}

.ds-modal__scroll {
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  padding: 48px 44px 44px;
}

.ds-modal__scroll::-webkit-scrollbar {
  width: 6px;
}

.ds-modal__scroll::-webkit-scrollbar-track {
  background: transparent;
}

.ds-modal__scroll::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 3px;
}

.ds-modal__scroll::-webkit-scrollbar-button {
  display: none;
}

.ds-modal__close {
  position: sticky;
  top: 0;
  float: right;
  margin: -28px -24px 8px 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(0,0,0,0.4);
  padding: 4px;
  transition: color 0.2s;
  line-height: 0;
}

.ds-modal__close:hover {
  color: #1a1a1a;
}

.ds-modal__close svg {
  width: 18px;
  height: 18px;
}

.ds-modal__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #E13278;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.ds-modal__intro {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.65;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.ds-modal__content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3cab93;
  margin-top: 24px;
  margin-bottom: 8px;
}

.ds-modal__content p,
.ds-modal__content ul {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.65;
}

.ds-modal__content ul {
  padding-left: 20px;
}

.ds-modal__content ul li {
  margin-bottom: 4px;
}

@media (max-width: 600px) {
  .ds-modal__box {
    max-height: 88vh;
  }
  .ds-modal__scroll {
    padding: 32px 24px 28px;
  }
}

/* ══════════════════════════════
   BACK TO TOP
══════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 3px solid #3cab93;
  border-radius: 8px;
  color: #3cab93;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.back-to-top--visible {
  opacity: 0.85;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  opacity: 1;
  border-color: rgba(60,171,147,0.7);
}

.back-to-top--on-footer {
  border-color: #fff;
  color: #fff;
}

.back-to-top--on-footer:hover {
  border-color: rgba(255,255,255,0.7);
}

.back-to-top svg { 
  width: 18px;
  height: 18px;
  display: block;
}

@media (max-width: 768px) {
  .back-to-top {
    width: 32px;
    height: 32px;
    border-width: 2px;
    bottom: 14px;
    right: 20px;
  }
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
  .back-to-top svg path {
    stroke-width: 1.2;
  }
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: #181818;
  padding: 56px 40px 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0 40px;
}

.footer__logo {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: #E13278;
}

.footer__social {
  display: flex;
  gap: 18px;
}

.footer__social-link {
  color: #fff;
  display: flex;
  transition: color 0.2s;
}

.footer__social-link:hover {
  color: #E13278;
}

.footer__social-link svg {
  width: 22px;
  height: 22px;
}

.footer__copy {
  grid-column: 1 / -1;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}


/* ── RESPONSIVE: Tablet ── */
@media (max-width: 1080px) {
  .beitraege__track {
    gap: 28px;
  }
  .beitrag-card__img {
    aspect-ratio: 4 / 3;
  }
  .beitrag-card__text {
    margin-top: 8px;
  }
}

@media (max-width: 820px) {
  /* Hero */
  .logo {
    width: clamp(240px, 86vw, 760px);
  }

  /* Beiträge – Tablet: Swipe-Slider, Peek-Effekt */
  .beitraege {
    padding: 0 24px 100px;
  }

  .beitraege__arrow {
    display: none;
  }

  .beitraege__dots {
    display: none;
  }

  .beitraege__slider {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .beitraege__slider::-webkit-scrollbar {
    display: none;
  }

  .beitraege__track {
    transform: none !important;
    gap: 16px;
  }

  .beitrag-card {
    flex: 0 0 38%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .beitrag-card__text {
    display: none;
  }

  /* Aktuelles */
  .aktuelles {
    padding: 56px 24px 120px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  /* Bento Grid – Tablet */
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 12px;
  }

  .bento-cell--main {
    grid-row: auto;
    height: 400px;
  }

  .bento-view--soon,
  .bento-view--mystery {
    padding: 32px 36px;
  }

  .bento-soon__gfx {
    font-size: clamp(5rem, 15vw, 8rem);
  }

  .bento-cell--sm {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
  }

  .games-slides {
    height: auto;
    overflow: visible;
    transition: none;
  }

  .game-slide {
    position: relative;
    top: auto;
    left: 0;
    right: 0;
    width: auto;
    transform: none;
    padding: 32px 28px;
  }

  .game-slide:not(.is-active) {
    display: none;
    opacity: 1;
  }

  .project-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .project-card__info {
    clip-path: none;
    padding: 40px 28px;
    border-radius: 12px 12px 0 0;
  }

  .project-card__visual {
    height: auto;
    align-self: center;
    min-height: 260px;
    overflow: visible;
    padding: 24px 0 40px;
    align-items: center;
  }

  @keyframes float-tablet {
    0%, 100% { transform: rotate(5deg) translateY(4px); }
    50%       { transform: rotate(5deg) translateY(-10px); }
  }

  .og-arcade {
    animation: float-tablet 4s ease-in-out infinite;
  }

  .og-arcade__img {
    max-height: 400px;
  }

  .og-logo {
    max-width: 280px;
  }

  .deco-moewe {
    width: 38px;
  }


  .chapter-zwei {
    padding: 32px 24px 80px;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  /* Team */
  .team {
    padding: 72px 24px 80px;
    margin-top: -40px;
  }
  .team-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  .char-viewer {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .char-left {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
  }
  .char-stage {
    min-height: 360px;
  }
  .char-right {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .char-outfit-grid {
    grid-template-columns: repeat(5, 1fr);
    flex: 1;
  }
  .char-outfit--wide {
    grid-column: auto;
  }

  /* Mehr */
  .mehr {
    padding: 64px 24px 80px;
  }
  .mehr-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Kontakt */
  .kontakt {
    padding: 72px 24px 80px;
  }

  /* Footer */
  .footer {
    padding: 48px 24px 32px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer__nav {
    gap: 20px;
  }
}

/* ── RESPONSIVE: Phone ── */
@media (max-width: 600px) {
  .team {
    padding-top: 8px;
  }

  /* Hero – kürzer auf Phone */
  .hero {
    height: 72vh;
  }

  .abschlusskante__desktop {
    display: none !important;
  }

  .abschlusskante__phone {
    display: block !important;
    width: auto;
    min-width: 160%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .abschlusskante {
    bottom: -8px;
  }

  /* Hero – seitliche Abdunklung */
  .hero::after {
    background: linear-gradient(to right,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.28) 30%,
      rgba(0,0,0,0.28) 70%,
      rgba(0,0,0,0.55) 100%
    );
  }

  /* Hero */
  .logo {
    width: 88vw;
  }

  .hero-text {
    white-space: normal;
    text-align: center;
    width: 90%;
  }

  .coords {
    font-size: 0.72rem;
    letter-spacing: 0.07em;
  }

  .logo-studios {
    font-size: 1.7rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  }

  /* Aktuelles */
  .aktuelles {
    padding: 72px 16px calc(13.6vw + 40px);
    z-index: auto;
    transform: none;
  }

  .games-tab {
    flex: 0 0 100px;
    height: 58px;
    padding: 10px 12px;
    gap: 3px;
  }

  .games-tab__num {
    font-size: 0.75rem;
  }

  .games-tab__name {
    font-size: 0.78rem;
  }

  /* Beiträge – Phone: Swipe-Carousel */
  .beitraege {
    padding: 0 0 100px;
    margin-top: -24px;
    position: relative;
    z-index: 4;
  }

  .beitraege__header {
    padding: 0 16px;
    margin-bottom: 28px;
  }

  .beitraege__slider-wrap {
    display: block;
  }

  .beitraege__slider {
    display: flex;
    overflow: scroll hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    container-type: normal;
    gap: 14px;
    padding: 8px 20px 32px;
    scroll-padding-left: 20px;
    align-items: stretch;
    flex: unset;
    width: 100%;
  }
  .beitraege__slider::-webkit-scrollbar {
    display: none;
  }

  .beitraege__track {
    display: contents;
  }

  /* Karte: kein overflow:hidden – Bild-Container clippt selbst */
  .beitrag-card {
    flex: 0 0 78vw;
    width: 78vw;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .beitrag-card:last-child {
    margin-right: 20px;
  }

  .beitrag-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
  }

  /* Bild clippt sich selbst + runde Oberkante passend zur Karte */
  .beitrag-card__img {
    height: 175px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .beitrag-card__body {
    padding: 14px 16px 2px;
    gap: 6px;
  }

  .beitrag-card__meta {
    margin-bottom: 4px;
  }

  .beitrag-card__label {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .beitrag-card__date {
    font-size: 0.75rem;
  }

  .beitrag-card__title {
    font-size: 1rem;
    line-height: 1.3;
  }

  .beitrag-card__text {
    display: block;
    font-size: 0.875rem;
    color: #777;
    line-height: 1.6;
    padding: 5px 16px 20px;
    margin: 0;
  }

  .section-heading,
  .team-title,
  .chapter-heading,
  .kontakt__heading {
    font-size: 18vw;
    margin-bottom: 32px;
  }

  .beitraege__heading {
    font-size: 14vw;
  }

  .section-heading .hl,
  .team-title .hl,
  .chapter-heading .hl,
  .kontakt__heading .hl,
  .beitraege__heading .hl {
    padding-left: 0 !important;
  }

  /* Wolke – auf Höhe der Wolken07_Spiegel-Formation, im Vordergrund */
  .s-clouds-wrap {
    overflow: visible;
    z-index: 11;
  }

  .s-cloud--1 {
    top: -31px;
  }

  .game-slide {
    padding: 16px 20px 16px;
  }

  .project-card__info {
    padding: 0 0 20px;
    gap: 20px;
    margin-top: 0;
  }

  /* Bento Grid – Phone */
  .bento-cell--main {
    height: 340px;
  }

  .bento-soon__title {
    font-size: 2.2rem;
  }

  .bento-soon__gfx {
    font-size: 5rem;
  }

  .og-logo {
    max-width: 320px;
    order: 0;
    margin-top: 0;
    margin-bottom: 16px;
  }

  .og-desc {
    font-size: 1rem;
    max-width: 100%;
    line-height: 1.7;
  }

  .og-progress {
    width: 160px;
  }

  .project-card__visual {
    min-height: 0;
    padding: 12px 0 20px;
    margin-top: 0;
  }

  .og-arcade {
    animation: none;
    transform: rotate(8deg) translateX(-24px);
    margin-top: 8px;
  }

  .og-arcade__img {
    max-height: 343px;
    animation: none;
  }


  .chapter-zwei {
    padding: 48px 20px 64px;
  }

  /* Team */
  .team {
    padding: 72px 16px 64px;
    margin-top: -20px;
  }
  .team-header {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 20px;
  }

  .team-intro {
    padding-top: 0;
    max-width: none;
  }

  /* ── Creator Squad Phone – Character Card Layout ── */
  /* [Name + Attrs links] | [Stage rechts, groß]     */
  /*          [Outfits – volle Breite unten]          */
  .char-viewer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    align-items: stretch;
  }

  /* Avatar-Auswahl: kompakte Reihe */
  .char-select {
    justify-content: flex-start;
    gap: 4px;
    margin-bottom: 16px;
  }

  .char-select__tile {
    padding: 4px 6px;
    gap: 4px;
  }

  .char-select__avatar {
    width: 32px;
    height: 32px;
  }

  .char-select__name {
    font-size: 0.5rem;
  }

  /* Links: Name + Attribute (38%) */
  .char-left {
    order: 1;
    flex: 0 0 38%;
    flex-direction: column;
    gap: 8px;
    background: none;
    padding: 0 10px 0 0;
    align-self: flex-start;
    min-width: 0;
  }

  .char-name {
    margin-bottom: 10px;
    min-height: calc(2.8rem * 1.76 + 22px);
    /* 2 Zeilen × line-height 0.88 + Platz für optionale Alias-Zeile */
  }

  .char-name__top,
  .char-name__bot {
    font-size: 2.8rem;
    line-height: 0.88;
    white-space: nowrap;
  }

  .char-attrs {
    gap: 8px;
  }

  /* Skills + Waffe untereinander (nicht nebeneinander) */
  .char-attr-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .char-attr-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    border-radius: 7px;
  }

  .char-spirit-box {
    width: 72px !important;
    height: 72px !important;
  }

  .char-attr-icons {
    display: grid;
    grid-template-columns: repeat(2, 50px);
    gap: 5px;
  }

  #js-char-skills {
    grid-template-columns: repeat(2, 50px);
    gap: 5px;
  }

  .char-attr-label {
    font-size: 0.68rem;
    margin-bottom: 5px;
  }

  /* Rechts: Stage (62%) – feste Höhe, unabhängig von char-left */
  .char-center {
    order: 2;
    flex: 0 0 62%;
    flex-direction: column;
    position: relative;
    z-index: 1;
    padding-bottom: 0;
    gap: 0;
    align-self: flex-start;
  }

  .char-stage {
    flex: none;
    height: 420px;
    min-height: 0;
    border-radius: 16px;
    overflow: hidden;
  }

  /* Figur füllt Stage vollständig */
  .char-figure {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    overflow: hidden;
  }

  /* Bild immer auf volle Stage-Höhe, Breite proportional */
  .char-pixel-img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: unset;
    object-position: unset;
  }

  .char-glow {
    bottom: 12px;
    left: 5%;
    right: 5%;
  }

  /* Carousel-Pfeile an den Seiten der Stage */
  .char-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.92);
    border: none;
    color: #333;
    border-radius: 50%;
    z-index: 20;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    pointer-events: auto;
  }

  #js-char-prev { left: 8px; right: auto; }
  #js-char-next { right: 8px; left: auto; }

  /* Unten: Outfits – volle Breite (6er-Reihe) */
  .char-right {
    order: 3;
    flex: 0 0 100%;
    flex-direction: column;
    background: none;
    border-radius: 0;
    padding: 20px 0 0;
    gap: 8px;
    align-items: flex-start;
  }

  .char-outfit-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    width: 100%;
  }

  .char-outfit {
    width: auto;
    height: 50px;
    border-radius: 9px;
    background: #f4f4f4;
    border-color: #e0e0e0;
  }

  .char-outfit--active {
    background: rgba(60,171,147,0.1);
    border-color: #3cab93;
    box-shadow: 0 0 0 2px rgba(60,171,147,0.2);
  }

  .char-outfit--wide {
    grid-column: span 2;
  }

  .char-outfit__label {
    color: #777;
  }

  .char-outfit__icon {
    font-size: 1.25rem;
  }

  .char-code-wrap {
    width: 100%;
    max-width: none;
    margin-top: 4px;
  }

  .char-code-input {
    width: 100%;
    background: #fafafa;
    border-color: #b0b0b0;
    color: #1a1a1a;
  }

  .char-code-input::placeholder {
    color: #ccc;
  }

  .char-code-hint {
    width: 100%;
    max-width: none;
  }

  /* Mehr */
  .mehr {
    padding: 72px 16px 64px;
  }

  .mehr-header {
    margin-bottom: 24px;
  }

  .mehr-intro {
    font-size: 1rem;
    line-height: 1.7;
  }

  .mehr-header .section-heading {
    font-size: calc((100vw - 52px) / 7.5);
    text-align: left;
  }

  .mehr-header .section-heading .hl {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .mehr-grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 4px;
    margin: 0;
  }

  .mehr-grid::-webkit-scrollbar {
    display: none;
  }

  .mehr-card {
    flex: 0 0 74%;
    scroll-snap-align: start;
    padding: 20px 16px;
  }

  .mehr-card:first-child {
    margin-left: 0;
  }

  .mehr-card:last-child {
    margin-right: 16px;
  }

  .mehr-cta {
    margin-top: 28px;
    justify-content: flex-start;
  }
  .mehr-cta__btn {
    padding: 17px 24px;
  }

  /* Kontakt */
  .kontakt {
    padding: 60px 16px 72px;
  }
  .kontakt__sub {
    margin-top: -8px;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .kontakt-form-wrap {
    margin-top: 36px;
  }
  .kontakt-form__row {
    grid-template-columns: 1fr;
  }

  /* Ticker */
  .kontakt-marquee__item {
    font-size: 0.75rem;
    padding: 0 24px;
  }

  /* Footer */
  .footer {
    padding: 40px 16px 28px;
  }
  .footer__inner {
    gap: 20px;
    justify-items: center;
  }
  .footer__logo {
    height: 22px;
  }
  .footer__nav {
    justify-content: center;
    gap: 10px 20px;
    text-align: center;
  }
  .footer__social {
    justify-content: center;
  }
  .footer__copy {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
  }
}
