@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) */

.mob-break { display: none; }
@media (max-width: 600px) {
  .mob-break { display: inline; }
}

/* Kein blauer Touch-Highlight auf mobilen Geräten */
a, button, input, select, textarea, label, [role="button"] {
  -webkit-tap-highlight-color: transparent;
}

*, *::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;
  -webkit-touch-callout: none;
}

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

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

.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;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  outline: none;
  user-select: none;
}

.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 {
  opacity: 0;
  pointer-events: none;
}

/* 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-close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 52px;
  height: 52px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  z-index: 20;
  touch-action: manipulation;
}

.hero-nav__overlay-close span {
  position: absolute;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.hero-nav__overlay-close span:nth-child(1) { transform: rotate(45deg); }
.hero-nav__overlay-close span:nth-child(2) { transform: rotate(-45deg); }

.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);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero video.is-ready {
  opacity: 1;
}

/* 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;
  max-height: calc(52% - 80px);
  overflow: visible;
}

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

.logo {
  width: clamp(280px, 88vw, 900px);
  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 150px;
}

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

.beitraege__header {
  margin-top: 0;
  margin-bottom: 96px;
}

.beitraege__header .section-eyebrow,
.beitraege__heading {
  margin-left: 0;
  margin-top: 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;
  -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: 0;
  user-select: text;
  -webkit-user-select: text;
}

/* ── BEITRÄGE–AKTUELLES ÜBERGANGS-WOLKEN ── */
.beitraege-wolken {
  position: relative;
  width: 100%;
  height: 0;
  overflow: visible;
  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: 24px;
  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: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  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.75;
  color: #1a5c57;
  font-weight: 400;
  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: -6px;
}

.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;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
  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;
}

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

.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;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

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

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

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

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

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

/* Oberer Bereich – klein, dekorativ */
.s-cloud--6 {
  top: 24%;
  width: 78px;
  opacity: 0.45;
  z-index: 0;
  animation: cloud-ltr 175s linear infinite -55s;
}

/* Mittlere Ebene – mittelgroß, klickbar */
.s-cloud--7 {
  top: 43%;
  width: 108px;
  opacity: 0.75;
  z-index: 0;
  animation: cloud-rtl 148s linear infinite -38s;
}

@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 48px;
  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: #181818;
  padding: 56px 40px 140px;
  margin-top: -50px;
  padding-top: 81px;
}

.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;
}

/* ── PROJEKT-LISTE (ersetzt mehr-grid) ── */
.mehr-projekte {
  margin-top: 56px;
}

.mehr-projekt {
  display: grid;
  grid-template-columns: 48px 1fr 40px;
  gap: 0 32px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.2s;
  position: relative;
}

.mehr-projekt:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mehr-projekt__num {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3cab93;
  letter-spacing: 0.15em;
  padding-top: 3px;
}

.mehr-projekt__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.mehr-projekt__tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #3cab93;
}

.mehr-projekt__client {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
}

.mehr-projekt__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.mehr-projekt__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mehr-projekt__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #3cab93;
  border: 2px solid #3cab93;
  border-radius: 50%;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.mehr-projekt__link::after {
  content: '';
  position: absolute;
  inset: 0;
}

@media (hover: hover) {
  .mehr-projekt:hover .mehr-projekt__link,
  .mehr-projekt__link:hover {
    color: #E13278;
    border-color: #E13278;
  }
}

.mehr-projekt__link svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

.mehr-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 72px;
}

.mehr-cta__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  opacity: 0.85;
  transition: opacity 0.2s, gap 0.2s;
  text-decoration: none;
}

.mehr-cta__logo-link:hover {
  opacity: 1;
  gap: 26px;
}

.mehr-cta__logo {
  height: 90px;
  width: auto;
  display: block;
}

.mehr-cta__arrow {
  width: 22px;
  height: 22px;
  color: #fff;
  flex-shrink: 0;
}

.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: 48px 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: 5px;
}

.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__success {
  font-size: 1.1rem;
  color: #3cab93;
  font-weight: 600;
  padding: 24px 0;
}

.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 {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.kontakt-form__checkbox-box {
  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;
  display: inline-block;
}

.kontakt-form__checkbox:checked + .kontakt-form__checkbox-box {
  border-color: #3cab93;
}

.kontakt-form__checkbox:checked + .kontakt-form__checkbox-box::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 5px;
  height: 9px;
  border: 2px solid #3cab93;
  border-top: none;
  border-left: none;
  border-bottom-right-radius: 2px;
  transform: rotate(45deg) translateY(-1px);
}

.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(0);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

.js-cat-frame {
  height: 42px;
  width: auto;
  vertical-align: middle;
  pointer-events: none;
}

.kontakt-marquee__dot.kontakt-marquee__dot--red {
  color: #E82020;
  display: inline-block;
  animation: dot-bob 0.85s ease-in-out infinite;
  font-size: 1.4rem;
}

@keyframes dot-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

.kontakt-marquee {
  overflow: hidden;
  background: transparent;
  padding: 18px 0 4px;
  margin-bottom: -17px;
  position: relative;
  z-index: 0;
}

.boden-trenner {
  display: block;
  width: 100%;
  line-height: 0;
  background: transparent;
  margin: 0;
  position: relative;
  z-index: 1;
}

.boden-trenner img {
  width: 100%;
  display: block;
}

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

.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;
  font-size: 0.76rem;
}

.kontakt-marquee__item--b {
  color: #3cab93;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  cursor: pointer;
  touch-action: manipulation;
  font-size: 0.9rem;
}

.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;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: #242424;
  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: Großer Desktop (16" Mac, breite Monitore) ── */
@media (min-width: 1500px) {
  .logo {
    width: clamp(280px, 56vw, 920px);
  }
  .logo-wrap {
    bottom: 50%;
  }
}

/* ── RESPONSIVE: Breites Tablet (iPad Pro etc.) ── */
@media (max-width: 1400px) and (min-width: 821px) {
  .beitraege { padding-bottom: 190px; }
}

/* ── RESPONSIVE: Mittlerer Desktop (Mac 16" bei "More Space", Wacom etc.) ── */
@media (min-width: 821px) and (max-width: 1499px) {
  .logo {
    width: clamp(280px, 86vw, 720px);
  }
  .abschlusskante {
    bottom: -90px;
  }
  .kontakt-marquee {
    margin-top: -3px;
  }
  .kontakt-marquee__item--cat {
    transform: translateY(-5px);
  }
}

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

  /* Beiträge – Tablet: Swipe-Slider, Peek-Effekt */
  .beitraege {
    padding: 0 24px 110px;
  }
  .beitraege__header {
    margin-bottom: 48px;
  }

  .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;
  }

  .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 */
  .boden-trenner {
    overflow: hidden;
  }

  .boden-trenner img {
    width: 200%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .mehr {
    padding: 64px 24px 80px;
    margin-top: -40px;
    padding-top: 79px;
  }

  .mehr-projekt {
    grid-template-columns: 40px 1fr 36px;
    gap: 0 20px;
  }

  .mehr-projekt__desc {
    white-space: normal;
    font-size: 0.85rem;
  }

  .mehr-projekt__link {
    -webkit-tap-highlight-color: transparent;
  }

  .mehr-projekt__link::after {
    -webkit-tap-highlight-color: transparent;
  }

  .mehr-cta__logo {
    height: 80px;
  }

  /* 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;
  }

  .back-to-top {
    right: 16px;
    bottom: 24px;
  }

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

  .abschlusskante__desktop {
    display: none !important;
  }

  .abschlusskante__phone {
    display: block !important;
  }

  .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 20px 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 20px;
    margin-bottom: 28px;
  }

  .beitraege__slider {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: 20px;
    padding-right: 20px;
    scroll-padding-left: 20px;
  }

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

  .beitraege__track {
    gap: 14px;
    padding: 8px 0 32px;
    transition: none;
  }

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

  .beitraege__end-spacer {
    flex: 0 0 18px;
  }

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

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

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

  .beitrag-card__body {
    padding: 12px 14px 0;
    gap: 4px;
    flex: none;
  }

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

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

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

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

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

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

  .beitraege__heading {
    font-size: 18vw;
  }

  .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;
    animation-delay: -45s;
    animation-fill-mode: none;
  }

  .s-cloud--5 {
    animation-delay: -80s;
    animation-fill-mode: none;
  }

  .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: 280px;
    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 20px 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 */
  .boden-trenner {
    overflow: hidden;
  }

  .boden-trenner img {
    width: 439%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .mehr {
    padding: 72px 20px 64px;
    margin-top: -30px;
    padding-top: 67px;
  }

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

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

  .mehr-header .section-heading {
    font-size: 18vw;
    text-align: left;
  }

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

  .mehr-projekte {
    margin-top: 32px;
  }

  .mehr-projekt {
    grid-template-columns: 32px 1fr 32px;
    gap: 0 14px;
    padding: 20px 0;
    align-items: center;
  }

  .mehr-projekt__num {
    margin-bottom: 0;
    padding-top: 0;
    font-size: 0.75rem;
  }

  .mehr-projekt__meta {
    margin-bottom: 3px;
    gap: 8px;
  }

  .mehr-projekt__tag {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .mehr-projekt__title {
    font-size: 0.95rem;
    margin-bottom: 3px;
  }

  .mehr-projekt__desc {
    white-space: normal;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .mehr-projekt__link {
    display: flex;
    width: 28px;
    height: 28px;
    border-width: 1.5px;
  }

  .mehr-projekt__link svg {
    width: 13px;
    height: 13px;
  }

  .mehr-cta {
    margin-top: 36px;
    justify-content: flex-start;
  }

  .mehr-cta__logo {
    height: 64px;
  }

  /* Kontakt */
  .kontakt {
    padding: 60px 20px 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;
  }

  .kontakt-marquee__item--b {
    font-size: 0.82rem;
  }

  /* Footer */
  .footer {
    padding: 40px 20px 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;
  }
}

/* ── COPY TOAST ── */
/* ── COPY POPUP ── */
.copy-popup {
  position: fixed;
  inset: 0;
  z-index: 99998;
  pointer-events: none;
  background: rgba(0,0,0,0);
  transition: background 0.2s ease;
}
.copy-popup.is-open {
  background: rgba(0,0,0,0.22);
  pointer-events: all;
}
.copy-popup__sheet {
  position: absolute;
  width: 256px;
  background: rgba(36,36,36,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 16px 12px;
  transform-origin: bottom center;
  transform: scale(0.93) translateY(6px);
  opacity: 0;
  transition: transform 0.2s cubic-bezier(0.34,1.3,0.64,1), opacity 0.15s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.copy-popup.is-open .copy-popup__sheet {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.copy-popup__label {
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.copy-popup__value {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  word-break: break-all;
  text-align: center;
}
.copy-popup__btn {
  background: rgba(60,171,147,0.18);
  color: #3cab93;
  border: 1px solid rgba(60,171,147,0.3);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 11px 16px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s;
}
.copy-popup__btn:active { background: rgba(60,171,147,0.3); }
.copy-popup__cancel {
  background: transparent;
  color: rgba(255,255,255,0.35);
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  padding: 8px 16px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
/* ── END COPY POPUP ── */

.copy-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(26,26,26,0.92);
  color: #fff;
  padding: 9px 20px;
  border-radius: 24px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 99999;
  white-space: nowrap;
}
.copy-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
