/* =========================
   BASE
   ========================= */
*{ box-sizing:border-box; }

html,body{
  margin:0;
  overflow-x:hidden;
}

body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #202020 0, #050505 50%, #000 100%);
  color:#fff;
}

.tg-app-shell{
  min-height:100vh;
  padding:0 0 40px;
}

.tg-frame{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  background:#05070a;
  border-radius:18px;
  box-shadow:0 18px 40px rgba(0,0,0,.7);
  padding:12px 14px 18px;
}

/* =========================
   HEADER / NAV
   ========================= */
.tg-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.tg-logo-block{
  display:flex;
  align-items:center;
  gap:12px;
}

/* Logo etwas kompakter + responsive */
.tg-logo-img{
  height:110px;
  max-width:100%;
  object-fit:contain;
  display:block;
}

@media (max-width:768px){
  .tg-logo-img{ height:82px; }
}

.tg-main-nav{
  display:flex;
  flex-wrap:nowrap;
  gap:6px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  justify-content:center;
}
.tg-main-nav::-webkit-scrollbar{ display:none; }

.tg-nav-btn{
  border:none;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-weight:600;
  font-size:.85rem;
  cursor:pointer;
  letter-spacing:.03em;
  text-transform:uppercase;
  white-space:nowrap;
  transition: background .2s, transform .15s, box-shadow .15s;
}

.tg-nav-btn.is-active{
  background: linear-gradient(135deg, #f6ff4c, #9acb1f);
  color:#111;
  box-shadow:0 0 18px rgba(155, 207, 40, .7);
}

.tg-nav-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(0,0,0,.6);
}

/* =========================
   SECTIONS
   ========================= */
.tg-main{ margin-top:2px; }

.tg-section{ display:none; }
.tg-section.is-active{ display:block; }

/* =========================
   HOME (Video → Banner → Filmrolle)
   ========================= */
.tg-cinema{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
}

.tg-screen-wrap{
  width:100%;
  max-width:720px;
  margin:8px auto 0;
  display:grid;
  place-items:center;
}

/* Leinwand */
.tg-screen{
  position:relative;
  width:100%;
  background:#000;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 36px rgba(0,0,0,.9);
}

.tg-screen::before{
  content:"";
  display:block;
  padding-top:56.25%; /* 16:9 */
}

.tg-screen-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  border:0;
  display:block;
}

.tg-screen-overlay{
  position:absolute;
  inset:0;
  background: radial-gradient(circle at top, rgba(0,0,0,.1), rgba(0,0,0,.7));
  pointer-events:none;
}

/* Hero-Control-Buttons */
.tg-hero-controls{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:12px 16px;
  pointer-events:none;
}

.tg-hero-play,
.tg-hero-sound{
  pointer-events:auto;
  border:none;
  cursor:pointer;
  border-radius:999px;
  background:rgba(0,0,0,.75);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.tg-hero-play{
  width:44px;
  height:44px;
  font-size:1.4rem;
  margin-right:auto;
}

.tg-hero-sound{
  width:36px;
  height:36px;
  font-size:1.1rem;
  margin-left:auto;
}

/* Banner unter dem Video */
.tg-home-banners{
  width:100%;
  max-width:720px;
  margin:14px auto 8px;
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.tg-home-banner{
  display:block;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 16px 34px rgba(0,0,0,.55);
  text-decoration:none;
}

.tg-home-banner img{
  width:100%;
  height:auto;
  display:block;
}

/* Filmrolle */
.tg-audience-row{
  position:relative;
  margin:10px auto 0;
  max-width:720px;
  width:100%;
  overflow:hidden;
  border-radius:999px;
  box-shadow:
    0 -4px 16px rgba(0,0,0,.8),
    0 10px 24px rgba(0,0,0,.75);
  background:
    repeating-linear-gradient(
      90deg,
      #0b0b0b 0,
      #0b0b0b 16px,
      #1a1a1a 16px,
      #1a1a1a 20px
    );
}

.tg-audience-track{
  display:flex;
  align-items:flex-end;
  gap:10px;
  padding:8px 18px;
  animation: tg-audience-marquee 22s linear infinite;
}

@keyframes tg-audience-marquee{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

.tg-audience-seat{
  flex:0 0 auto;
  display:flex;
  justify-content:center;
  align-items:flex-end;
}

.tg-audience-char{
  max-height:78px;
  width:auto;
  object-fit:contain;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.9));
}

/* =========================
   PRODUCTS
   ========================= */
.tg-sale-notice{
  margin-bottom:12px;
  padding:8px 12px;
  border-radius:10px;
  background: linear-gradient(135deg, #ff7b39, #ffbf40);
  color:#1b0b00;
  font-weight:600;
  font-size:.9rem;
}

/* Subtabs */
.tg-products-header-row{
  display:flex;
  align-items:center;
  justify-content: center; /* ✅ zentriert */
  gap:4px;
  margin-bottom:8px;
}

.tg-subtab-btn{
  border: none;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  text-transform: none;
  transition: background .2s, transform .15s, box-shadow .15s, color .2s;
}

.tg-subtab-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.6);
}

/* ✅ exakt wie deine oberen socsssss */
.tg-subtab-btn.tg-subtab-active{
  background: linear-gradient(135deg, #f6ff4c, #9acb1f);
  color: #111;
  box-shadow: 0 0 18px rgba(155, 207, 40, 0.7);
}

/* Views */
.tg-products-view{ display:none; }
.tg-products-view.is-active{ display:block; }

/* Menübild */
.tg-menu-image-box{
  margin:10px auto 0;
  max-width:900px;
  text-align:center;
}
.tg-menu-image{
  width:100%;
  height:auto;
  border-radius:16px;
  box-shadow:0 16px 32px rgba(0,0,0,.7);
  display:block;
}

/* Layout Produkte */
.tg-products-layout{
  display:grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 1fr);
  gap:24px;
  align-items:flex-start;
}

.tg-products-grid{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.tg-products-error,
.tg-products-empty{
  padding:12px 14px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  font-size:.95rem;
}

.tg-product-category-card{
  background: radial-gradient(circle at top, #171717 0, #050505 70%);
  border-radius:16px;
  padding:8px 10px 6px;
  box-shadow:0 10px 24px rgba(0,0,0,.75);
  border:1px solid rgba(154, 203, 31, .35);
}

.tg-product-category-title{
  margin:0 0 4px;
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  text-align:center;
  color:#e6ff4e;
}

.tg-product-list{ list-style:none; padding:0; margin:0; }

.tg-product-list-item{
  padding:4px 8px;
  border-radius:10px;
  display:flex;
  flex-direction:column;
  gap:2px;
  cursor:pointer;
  transition: background .15s, transform .12s, box-shadow .12s;
}

.tg-product-list-item:hover{
  background:rgba(255,255,255,.08);
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(0,0,0,.7);
}

.tg-product-row-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}

.tg-product-name{
  font-size:.9rem;
  font-weight:600;
}

.tg-product-film-icon{
  border:none;
  background:transparent;
  color:#ffde7c;
  font-size:1.1rem;
  padding:2px;
  cursor:pointer;
  flex-shrink:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: transform .12s;
}
.tg-product-film-icon:hover{ transform:scale(1.15); }

.tg-product-price-hint{
  font-size:.8rem;
  color:#ffde7c;
}

.tg-product-new-badge{
  font-size:.72rem;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid #d40000;
  background:#fff;
  color:#d40000;
  font-weight:800;
  line-height:1;
  cursor:pointer;
  margin-left:8px;
  margin-right:6px;
}

.tg-product-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tg-product-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  width: 90px; /* KEY: gleiche Breite für alle */
}

/* Detail */
.tg-product-detail-card{
  border-radius:16px;
  background: radial-gradient(circle at top, #171717 0, #050505 70%);
  padding:14px 14px 12px;
  box-shadow:0 12px 26px rgba(0,0,0,.8);
}

.tg-product-detail-card h3{
  margin:0 0 4px;
  font-size:1.1rem;
}

.tg-product-detail-category{
  font-size:.85rem;
  color:#ffde7c;
  margin-bottom:8px;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.tg-product-detail-info{
  font-size:.93rem;
  color:#ddd;
  margin:0 0 10px;
}

/* Preise */
.tg-product-price-box{
  margin-top:8px;
  padding:8px 10px;
  border-radius:12px;
  background:rgba(0,0,0,.6);
}

.tg-product-price-box h4{
  margin:0 0 4px;
  font-size:.95rem;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.tg-price-list{ list-style:none; margin:0; padding:0; }

.tg-price-list-item{
  display:flex;
  justify-content:space-between;
  gap:8px;
  padding:2px 0;
  font-size:.9rem;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.tg-price-list-item:last-child{ border-bottom:none; }

.tg-price-unit{ color:#eee; }
.tg-price-value{ color:#ffde7c; font-weight:600; }

/* Detail-Video 16:9 */
.tg-product-detail-video-wrap{
  margin-top:10px;
  border-radius:14px;
  overflow:hidden;
  background:#000;
  position:relative;
}
.tg-product-detail-video-wrap::before{
  content:"";
  display:block;
  padding-top:56.25%;
}
.tg-product-detail-video-wrap video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Detail-Mode */
.tg-products-layout.tg-detail-mode #products-grid{ display:none; }
.tg-products-layout.tg-detail-mode{ grid-template-columns: minmax(0, 1fr); }

/* Back Button */
.tg-back-btn{
  display:inline-flex;
  align-items:center;
  gap:4px;
  margin-bottom:10px;
  padding:6px 12px;
  border-radius:999px;
  border:none;
  background:rgba(255,255,255,.12);
  color:#fff;
  cursor:pointer;
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.03em;
}
.tg-back-btn:hover{ background:rgba(255,255,255,.2); }

/* =========================
   FEEDBACK-ZEITUNG (einmal, sauber)
   ========================= */
.tg-news{
  width:100%;
  display:grid;
  place-items:center;
  gap:14px;
  padding:12px 0;
}

.tg-news-stage{
  position:relative;
  width:min(92vw, 520px);
  aspect-ratio: 2 / 3;   /* passt besser zu deinem Original */
  perspective:1200px;
}

/* Papier-Layer: Cover + Page */
.tg-paper{
  position:absolute;
  inset:0;
  border-radius:14px;
  background:#f7f4ee;
  box-shadow:0 18px 50px rgba(0,0,0,.55);
  overflow:hidden; /* runde Ecken sauber */
}

/* Innenrand: macht Bild kleiner, ohne Crop */
.tg-paper > img{
  position:absolute;
  inset:10px;
  width:calc(100% - 20px);
  height:calc(100% - 20px);
  object-fit:contain; /* KEY: nie abgeschnitten */
  display:block;
  border-radius:10px;
}

/* Cover clickable */
.tg-cover{ transform-origin:left center; cursor:pointer; }
.tg-curl-hint{
  position:absolute;
  right:0; top:0;
  width:22%;
  height:100%;
  background: linear-gradient(to left, rgba(0,0,0,.25), rgba(0,0,0,0));
  pointer-events:none;
  opacity:.55;
}

.tg-cover-animate{
  animation: tgCoverWiggle 2.8s ease-in-out infinite;
  will-change: transform;
}
@keyframes tgCoverWiggle{
  0%,100%{ transform: rotateY(0deg) translateY(0); }
  50%{ transform: rotateY(-10deg) translateY(-2px); }
}

.tg-news-controls{
  display:flex;
  align-items:center;
  gap:10px;
}

.tg-news-btn{
  border:1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color:#fff;
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
}

.tg-news-indicator{
  color:#fff;
  opacity:.85;
  font-size:.95rem;
}

@media (max-width:520px){
  .tg-news-stage{ width:min(96vw, 520px); }
  .tg-paper > img{
    inset:8px;
    width:calc(100% - 16px);
    height:calc(100% - 16px);
  }
}

@media (prefers-reduced-motion: reduce){
  .tg-cover-animate{ animation:none; }
}

/* =========================
   SOCIALS / COMMUNITY HUB
   ========================= */
#section-socials{
  --tg-social-surface:#0b0d10;
  --tg-social-surface-soft:#13171c;
  --tg-social-border:rgba(255,255,255,.10);
}

.tg-social-hub{
  width:min(96%, 980px);
  margin:0 auto;
  padding-top:4px;
}

.tg-social-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  align-items:start;
}

.tg-social-card{
  --social-accent:#dfff43;
  --social-accent-rgb:223,255,67;

  position:relative;
  min-width:0;
  overflow:hidden;
  border:1px solid var(--tg-social-border);
  border-radius:22px;
  background:
    radial-gradient(circle at 82% 0%, rgba(var(--social-accent-rgb),.14), transparent 38%),
    linear-gradient(155deg, #15191e 0%, #090b0e 58%, #050607 100%);
  box-shadow:
    0 20px 42px rgba(0,0,0,.48),
    inset 0 1px 0 rgba(255,255,255,.045);
  transition:
    transform .24s ease,
    border-color .24s ease,
    box-shadow .24s ease;
}

.tg-social-card::before{
  content:"";
  position:absolute;
  z-index:3;
  top:0;
  right:0;
  left:0;
  height:3px;
  background:var(--social-accent);
  box-shadow:0 0 20px rgba(var(--social-accent-rgb),.48);
}

.tg-social-card:hover,
.tg-social-card:focus-within,
.tg-social-card.is-open{
  transform:translateY(-3px);
  border-color:rgba(var(--social-accent-rgb),.42);
  box-shadow:
    0 25px 52px rgba(0,0,0,.58),
    0 0 24px rgba(var(--social-accent-rgb),.10),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.tg-social-telegram{
  --social-accent:#2ebcf3;
  --social-accent-rgb:46,188,243;
}

.tg-social-viber{
  --social-accent:#8d5cff;
  --social-accent-rgb:141,92,255;
}

.tg-social-instagram{
  --social-accent:#f45f8b;
  --social-accent-rgb:244,95,139;
}

.tg-social-x{
  --social-accent:#f1f4f7;
  --social-accent-rgb:241,244,247;
}

.tg-social-card-media{
  position:relative;
  aspect-ratio:4 / 5;
  min-height:0;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(var(--social-accent-rgb),.15), transparent 50%),
    #080a0c;
  isolation:isolate;
}

.tg-social-card-media::after{
  content:"";
  position:absolute;
  z-index:2;
  inset:auto 0 0;
  height:42%;
  background:linear-gradient(to bottom, transparent, rgba(5,6,7,.94));
  pointer-events:none;
}

.tg-social-char{
  position:absolute;
  z-index:1;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center top;
  transform:scale(1.005);
  transition:transform .45s cubic-bezier(.2,.75,.2,1), filter .35s ease;
  filter:saturate(.96) contrast(1.02);
}

.tg-social-card:hover .tg-social-char,
.tg-social-card.is-open .tg-social-char{
  transform:scale(1.035);
  filter:saturate(1.08) contrast(1.04);
}

.tg-social-platform-badge{
  position:absolute;
  z-index:4;
  top:15px;
  left:15px;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.20);
  border-radius:14px;
  background:rgba(5,7,9,.70);
  color:var(--social-accent);
  font-size:1.35rem;
  font-weight:900;
  box-shadow:0 8px 22px rgba(0,0,0,.32);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.tg-social-platform-badge-x{
  font-family:Arial, sans-serif;
}

.tg-social-count{
  position:absolute;
  z-index:4;
  right:15px;
  bottom:14px;
  padding:6px 10px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:rgba(4,5,6,.72);
  color:#fff;
  font-size:.70rem;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
  backdrop-filter:blur(9px);
  -webkit-backdrop-filter:blur(9px);
}

.tg-social-card-content{
  position:relative;
  z-index:4;
  padding:15px;
}

.tg-social-card-heading{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.tg-social-card-kicker{
  display:block;
  margin-bottom:3px;
  color:var(--social-accent);
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.13em;
}

.tg-social-card-heading h3{
  margin:0;
  color:#fff;
  font-size:1.35rem;
  line-height:1.1;
}

.tg-social-card-heading h3 small{
  color:rgba(255,255,255,.55);
  font-size:.70em;
  font-weight:650;
}

.tg-social-card-description{
  min-height:2.8em;
  margin:8px 0 15px;
  color:rgba(255,255,255,.66);
  font-size:.90rem;
  line-height:1.45;
}

.tg-social-toggle,
.tg-social-direct-link{
  width:100%;
  min-height:45px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 13px;
  border:1px solid rgba(var(--social-accent-rgb),.34);
  border-radius:13px;
  background:rgba(var(--social-accent-rgb),.10);
  color:#fff;
  font:inherit;
  font-size:.88rem;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
  transition:
    background .18s ease,
    border-color .18s ease,
    transform .18s ease;
}

.tg-social-toggle:hover,
.tg-social-direct-link:hover{
  transform:translateY(-1px);
  border-color:rgba(var(--social-accent-rgb),.62);
  background:rgba(var(--social-accent-rgb),.17);
}

.tg-social-toggle:focus-visible,
.tg-social-direct-link:focus-visible,
.tg-social-link:focus-visible{
  outline:3px solid rgba(var(--social-accent-rgb),.62);
  outline-offset:3px;
}

.tg-social-toggle-icon{
  width:25px;
  height:25px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:var(--social-accent);
  font-size:1.25rem;
  line-height:1;
  transition:transform .22s ease;
}

.tg-social-toggle[aria-expanded="true"] .tg-social-toggle-icon{
  transform:rotate(180deg);
}

.tg-social-links{
  margin-top:11px;
  display:grid;
  gap:7px;
  animation:tgSocialLinksIn .24s ease both;
}

.tg-social-links[hidden]{
  display:none;
}

@keyframes tgSocialLinksIn{
  from{
    opacity:0;
    transform:translateY(-7px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.tg-social-link{
  min-width:0;
  display:grid;
  grid-template-columns:34px minmax(0, 1fr) auto;
  align-items:center;
  gap:10px;
  padding:9px 10px;
  border:1px solid rgba(255,255,255,.085);
  border-radius:12px;
  background:rgba(255,255,255,.045);
  color:#fff;
  text-decoration:none;
  transition:
    transform .16s ease,
    background .16s ease,
    border-color .16s ease;
}

.tg-social-link:hover{
  transform:translateX(2px);
  border-color:rgba(var(--social-accent-rgb),.38);
  background:rgba(var(--social-accent-rgb),.09);
}

.tg-social-link-icon{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:rgba(var(--social-accent-rgb),.13);
  color:var(--social-accent);
  font-size:1rem;
  font-weight:900;
}

.tg-social-link-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:1px;
}

.tg-social-link-copy strong{
  min-width:0;
  overflow-wrap:anywhere;
  color:#fff;
  font-size:.84rem;
  line-height:1.2;
}

.tg-social-link-copy small{
  color:rgba(255,255,255,.49);
  font-size:.68rem;
}

.tg-social-link-arrow{
  color:var(--social-accent);
  font-size:1rem;
}

@media (max-width:768px){
  .tg-social-hub{
    width:96%;
  }

  .tg-social-grid{
    gap:9px;
  }

  .tg-social-card{
    border-radius:17px;
  }

  .tg-social-card-media{
    aspect-ratio:1 / 1;
    min-height:0;
  }

  .tg-social-char{
    object-position:center top;
  }

  .tg-social-platform-badge{
    top:10px;
    left:10px;
    width:34px;
    height:34px;
    border-radius:11px;
    font-size:1.05rem;
  }

  .tg-social-count{
    right:9px;
    bottom:9px;
    padding:5px 7px;
    font-size:.58rem;
  }

  .tg-social-card-content{
    padding:11px;
  }

  .tg-social-card-kicker{
    font-size:.56rem;
    letter-spacing:.09em;
  }

  .tg-social-card-heading h3{
    font-size:1.05rem;
  }

  .tg-social-card-description{
    min-height:3.9em;
    margin:6px 0 10px;
    font-size:.77rem;
    line-height:1.35;
  }

  .tg-social-toggle,
  .tg-social-direct-link{
    min-height:40px;
    padding:8px 10px;
    border-radius:11px;
    font-size:.74rem;
  }

  .tg-social-toggle-icon{
    width:22px;
    height:22px;
    font-size:1.05rem;
  }

  .tg-social-links{
    gap:6px;
    margin-top:8px;
  }

  .tg-social-link{
    grid-template-columns:28px minmax(0,1fr) auto;
    gap:7px;
    padding:7px;
    border-radius:10px;
  }

  .tg-social-link-icon{
    width:28px;
    height:28px;
    border-radius:8px;
    font-size:.80rem;
  }

  .tg-social-link-copy strong{
    font-size:.71rem;
  }

  .tg-social-link-copy small{
    display:none;
  }
}

@media (max-width:390px){
  .tg-social-grid{
    grid-template-columns:1fr;
  }

  .tg-social-card-media{
    aspect-ratio:4 / 5;
  }

  .tg-social-card-description{
    min-height:0;
  }
}

@media (prefers-reduced-motion:reduce){
  .tg-social-card,
  .tg-social-char,
  .tg-social-toggle,
  .tg-social-direct-link,
  .tg-social-link,
  .tg-social-toggle-icon,
  .tg-social-links{
    animation:none !important;
    transition:none !important;
  }
}

/* =========================
   CONTACT
   ========================= */
.tg-contact-wrap{
  display:flex;
  justify-content:center;
  align-items:flex-end;
  gap:24px;
  flex-wrap:wrap;
}

.tg-contact-char-img{
  max-height:220px;
  width:auto;
  object-fit:contain;
}

.tg-speech-bubble{
  position:relative;
  background:#fff;
  color:#111;
  border-radius:18px;
  padding:12px 16px;
  max-width:420px;
  box-shadow:0 12px 24px rgba(0,0,0,.8);
  font-size:.95rem;
}

.tg-speech-bubble::before{
  content:"";
  position:absolute;
  left:-14px;
  bottom:18px;
  border-width:10px 14px 10px 0;
  border-style:solid;
  border-color: transparent #fff transparent transparent;
}

.tg-threema-link{
  display:block;
  margin-top:6px;
  padding:6px 10px;
  border-radius:999px;
  background:#00c853;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:.9rem;
}

.tg-threema-link small{
  font-weight:400;
  font-size:.8rem;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width:992px){
  .tg-frame{
    border-radius:0;
    box-shadow:none;
  }

  .tg-products-layout{
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 1fr);
  }

}

@media (max-width:768px){
  .tg-header{
    flex-direction:column;
    align-items:center;
  }

  .tg-products-layout{
    grid-template-columns: minmax(0, 1fr);
  }


  .tg-contact-wrap{
    flex-direction:column;
    align-items:center;
  }

  .tg-home-banners{
    grid-template-columns: 1fr 1fr; /* ✅ 2 nebeneinander */
    gap: 8px;
  }

  .tg-home-banner{
    width:100%;
    aspect-ratio:3 / 1;
    border-radius:12px;
    overflow:hidden;
  }

  .tg-home-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  .tg-speech-bubble::before{
    left:24px;
    bottom:-16px;
    border-width:16px 14px 0 14px;
    border-color:#fff transparent transparent transparent;
  }

  /* Detail-Feld: wenn leer, ausblenden */
  #section-products .tg-product-detail:empty{
    margin-bottom:0;
    display:none;
  }
}

@media (prefers-reduced-motion: reduce){
  .tg-audience-track{ animation:none; }
}
@keyframes tgHeartbeat{
  0%   { transform: scale(1); }
  18%  { transform: scale(1.04); }
  36%  { transform: scale(1); }
  55%  { transform: scale(1.03); }
  75%  { transform: scale(1); }
  100% { transform: scale(1); }
}

/* wird per JS kurz gesetzt */
.tg-home-banners.tg-pulse-once .tg-home-banner{
  animation: tgHeartbeat .65s ease-out;
}

/* ===== FEEDBACK: NIE CROPPEN (Cover + Seiten) ===== */
#feedback-gallery .tg-news-stage{
  aspect-ratio: 2 / 3;              /* passt besser zu deinem Cover */
}

#feedback-gallery .tg-paper{
  overflow: hidden !important;       /* runde Ecken sauber */
}

/* ganz wichtig: Seite NICHT covern */
#feedback-gallery .tg-paper img,
#feedback-gallery .tg-page img{
  object-fit: contain !important;    /* ✅ niemals abschneiden */
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* optional: schöner "Zeitungsrand", Bild wird kleiner statt Crop */
#feedback-gallery .tg-paper img{
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px) !important;
  height: calc(100% - 20px) !important;
  border-radius: 10px;
}

/* ================================================================
   HOME REDESIGN: ARTWORK + VIDEO IM SMARTPHONE
   Das Video wird exakt in das schwarze Display des neuen Artworks
   gesetzt. Der Slider öffnet den geschützten Products-Bereich.
   ================================================================ */

#section-home{
  width:100%;
}

.tg-home-redesign{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.tg-phone-stage{
  position:relative;
  width:min(100%, 720px);
  margin:0 auto;
  overflow:hidden;
  border-radius:24px;
  background:#050505;
  box-shadow:
    0 22px 55px rgba(0,0,0,.82),
    0 0 30px rgba(126,255,34,.08);
  isolation:isolate;
}

.tg-phone-stage-art{
  position:relative;
  z-index:1;
  width:100%;
  height:auto;
  display:block;
  user-select:none;
  -webkit-user-drag:none;
}

/*
  Die Werte beziehen sich auf home-phone-bg.png (1024 x 1535).
  Sie bleiben auf iPhone, Android und Desktop proportional stabil.
*/
.tg-phone-screen{
  position:absolute;
  z-index:2;

  left:33.95%;
  top:32.10%;

  width:32.35%;
  height:44.35%;

  overflow:hidden;
  background:#000;

  border-radius:34px;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    inset 0 -18px 30px rgba(0,0,0,.14);
}

.tg-phone-screen-video{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  display:block;

  object-fit:contain;
  object-position:center center;

  transform:scale(1.14);
  transform-origin:center center;

  background:#000;
  border:0;
  border-radius:34px;
}
.tg-phone-screen-shade{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;

  background:
    linear-gradient(
      110deg,
      rgba(255,255,255,.055),
      transparent 24%,
      transparent 73%,
      rgba(255,255,255,.02)
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,.10),
      transparent 15%,
      transparent 80%,
      rgba(0,0,0,.16)
    );
}

/* Die Notch liegt im Hintergrundbild, wird über dem Video neu gezeichnet. */
.tg-phone-notch{
  position:absolute;
  z-index:4;

  top:0;
  left:50%;
  transform:translateX(-50%);

  width:43%;
  height:5.2%;
  min-height:14px;

  border-radius:0 0 16px 16px;
  background:#020202;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:8%;

  box-shadow:0 2px 7px rgba(0,0,0,.72);
  pointer-events:none;
}

.tg-phone-speaker{
  width:29%;
  height:10%;
  min-height:2px;

  border-radius:999px;
  background:#242424;

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.12);
}

.tg-phone-camera{
  width:5px;
  aspect-ratio:1;

  border-radius:50%;
  background:#061b2b;

  box-shadow:
    0 0 4px rgba(0,120,255,.45);
}

/* Video-Steuerung bleibt im Display. */
.tg-phone-video-controls{
  position:absolute;
  z-index:5;

  left:4.5%;
  right:4.5%;
  bottom:3.6%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  pointer-events:none;
  opacity:.94;
}

.tg-phone-video-controls .tg-hero-play,
.tg-phone-video-controls .tg-hero-sound{
  pointer-events:auto;

  width:34px;
  height:34px;
  margin:0;
  padding:0;

  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;

  background:rgba(0,0,0,.60);
  color:#fff;

  display:grid;
  place-items:center;

  font-size:.95rem;
  cursor:pointer;

  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);

  box-shadow:
    0 7px 18px rgba(0,0,0,.38);
}

/* ================================================================
   HOME -> PRODUCTS SLIDER
   Liegt deckungsgleich über dem im Artwork gezeichneten Slider.
   ================================================================ */

.tg-home-products-slider{
  --slide-progress:0;

  position:absolute;
  z-index:6;

  /*
    Liegt im freien Bodenbereich des aktuellen Hintergrundbildes.
    Diese vier Werte kannst du später leicht feinjustieren.
  */
  left:6.0%;
  bottom:3.2%;

  width:88.0%;
  height:7.8%;

  border-radius:999px;

  touch-action:none;
  user-select:none;
  -webkit-user-select:none;
  -webkit-tap-highlight-color:transparent;

  cursor:grab;
  outline:none;
}

.tg-home-products-slider.is-dragging{
  cursor:grabbing;
}

.tg-home-products-slider:focus-visible{
  outline:3px solid rgba(255,255,255,.9);
  outline-offset:4px;
}

.tg-home-products-track{
  position:relative;

  width:100%;
  height:100%;

  padding:5px;

  overflow:hidden;
  border-radius:inherit;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
    linear-gradient(
      90deg,
      #12c900 0%,
      #05b90c 52%,
      #009a17 100%
    );

  border:
    2px solid rgba(198,255,60,.88);

  box-shadow:
    0 10px 24px rgba(0,0,0,.34),
    0 0 20px rgba(116,255,0,.28),
    inset 0 1px 0 rgba(255,255,255,.24);
}

.tg-home-products-progress{
  position:absolute;
  z-index:1;

  left:0;
  top:0;
  bottom:0;

  width:0;

  background:
    linear-gradient(
      90deg,
      rgba(111,255,89,.30),
      rgba(255,255,255,.16)
    );

  pointer-events:none;
}

.tg-home-products-label{
  position:relative;
  z-index:2;

  max-width:72%;

  padding:0 9%;

  color:#fff;

  font-size:
    clamp(.72rem, 2.8vw, 1.42rem);

  font-weight:900;
  line-height:1;
  letter-spacing:.015em;

  text-align:center;
  white-space:nowrap;

  text-shadow:
    0 2px 4px rgba(0,0,0,.40);

  pointer-events:none;

  opacity:
    calc(1 - var(--slide-progress));

  transition:
    opacity .15s ease,
    transform .15s ease;
}

.tg-home-products-knob{
  position:absolute;
  z-index:4;

  left:6px;
  top:6px;

  height:calc(100% - 12px);
  aspect-ratio:1;

  border-radius:50%;

  display:grid;
  place-items:center;

  background:#fff;
  color:#079f31;

  box-shadow:
    0 5px 16px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.85);

  will-change:transform;
}

.tg-home-products-knob span{
  font-size:
    clamp(.95rem, 3vw, 1.7rem);

  font-weight:900;

  transform:
    translateX(1px);
}

.tg-home-products-arrow{
  position:absolute;
  z-index:3;

  right:5.6%;
  top:50%;

  transform:
    translateY(-54%);

  color:#fff;

  font-size:
    clamp(2rem, 7vw, 4.7rem);

  font-family:
    Arial,
    sans-serif;

  font-weight:300;
  line-height:.7;

  text-shadow:
    0 2px 5px rgba(0,0,0,.35);

  pointer-events:none;
}

.tg-home-products-slider.is-complete .tg-home-products-knob{
  background:#112618;
  color:#63ff82;
}

.tg-home-products-slider.is-complete .tg-home-products-label{
  opacity:0;
}

/* Bestehende Banner und Filmrolle bleiben erhalten. */
#section-home .tg-home-banners{
  width:min(100%, 720px);
  margin:16px auto 10px;
}

#section-home .tg-audience-row{
  width:min(100%, 720px);
  margin-top:12px;
}

@media (max-width:768px){
  #section-home{
    margin-left:-14px;
    margin-right:-14px;
    width:calc(100% + 28px);
  }

  .tg-phone-stage{
    width:100%;
    border-radius:0;
    box-shadow:none;
  }

  #section-home .tg-home-banners,
  #section-home .tg-audience-row{
    width:calc(100% - 28px);
  }
}

@media (max-width:430px){
  .tg-phone-video-controls .tg-hero-play,
  .tg-phone-video-controls .tg-hero-sound{
    width:29px;
    height:29px;
    font-size:.78rem;
  }

  .tg-home-products-track{
    padding:4px;
    border-width:1.5px;
  }

  .tg-home-products-knob{
    left:5px;
    top:5px;
    height:calc(100% - 10px);
  }

  .tg-home-products-label{
    max-width:70%;
    padding-left:11%;
    padding-right:11%;
  }
}

@media (prefers-reduced-motion:reduce){
  .tg-home-products-knob,
  .tg-home-products-progress,
  .tg-home-products-label{
    transition:none !important;
  }
}

/* ================================================================
   HOME: MINI-FILMROLLE IM OBEREN HANDYDISPLAY
   ================================================================ */

.tg-phone-mini-reel{
  position:absolute;
  z-index:6;

  /* Direkt unter der Notch im freien schwarzen Displaybereich */
  top:6.7%;
  left:7.5%;

  width:85%;
  height:6.4%;
  min-height:24px;
  max-height:44px;

  overflow:hidden;
  border-radius:999px;

  background:
    linear-gradient(
      to bottom,
      rgba(23,23,23,.94),
      rgba(4,4,4,.96)
    );

  border:1px solid rgba(255,255,255,.13);

  box-shadow:
    0 6px 18px rgba(0,0,0,.68),
    inset 0 1px 0 rgba(255,255,255,.10);

  pointer-events:none;
}

.tg-phone-mini-reel::before,
.tg-phone-mini-reel::after{
  content:"";
  position:absolute;
  z-index:2;
  top:0;
  bottom:0;
  width:13%;
  pointer-events:none;
}

.tg-phone-mini-reel::before{
  left:0;
  background:linear-gradient(to right, #050505 0%, transparent 100%);
}

.tg-phone-mini-reel::after{
  right:0;
  background:linear-gradient(to left, #050505 0%, transparent 100%);
}

.tg-phone-mini-reel-track{
  width:max-content;
  height:100%;

  display:flex;
  align-items:flex-end;
  gap:5px;

  padding:3px 8px;

  animation:tgPhoneMiniReelMove 12s linear infinite;
  will-change:transform;
}

.tg-phone-mini-reel-seat{
  flex:0 0 auto;

  width:clamp(25px, 4vw, 40px);
  height:100%;

  display:flex;
  align-items:flex-end;
  justify-content:center;
}

.tg-phone-mini-reel-seat img{
  display:block;

  width:auto;
  height:100%;
  max-height:40px;

  object-fit:contain;

  filter:drop-shadow(0 2px 3px rgba(0,0,0,.9));
}

@keyframes tgPhoneMiniReelMove{
  from{ transform:translate3d(0,0,0); }
  to{ transform:translate3d(-50%,0,0); }
}


/* ================================================================
   TELEGRAM / VIBER JOIN-LAYER
   ================================================================ */

.tg-join-layer{
  position:fixed;
  z-index:10000;
  inset:0;

  padding:
    max(20px, env(safe-area-inset-top))
    16px
    max(20px, env(safe-area-inset-bottom));

  display:grid;
  place-items:center;

  background:rgba(0,0,0,.80);

  -webkit-backdrop-filter:blur(9px);
  backdrop-filter:blur(9px);

  opacity:0;
  visibility:hidden;

  transition:
    opacity .28s ease,
    visibility .28s ease;
}

.tg-join-layer[hidden]{
  display:none !important;
}

.tg-join-layer.is-open{
  opacity:1;
  visibility:visible;
}

.tg-join-layer-panel{
  position:relative;

  width:min(94vw, 650px);
  max-height:min(88vh, 760px);
  overflow:auto;

  padding:25px 18px 20px;

  border-radius:24px;

  background:
    radial-gradient(
      circle at top,
      #1a2418 0%,
      #080a0c 66%
    );

  border:1px solid rgba(155,255,55,.28);

  box-shadow:
    0 30px 85px rgba(0,0,0,.88),
    0 0 40px rgba(90,255,30,.16);

  transform:translateY(24px) scale(.94);

  transition:
    transform .30s cubic-bezier(.2,.8,.2,1);
}

.tg-join-layer.is-open .tg-join-layer-panel{
  transform:translateY(0) scale(1);
}

.tg-join-layer-close{
  position:absolute;
  z-index:2;

  top:9px;
  right:10px;

  width:36px;
  height:36px;
  padding:0;

  border:1px solid rgba(255,255,255,.12);
  border-radius:50%;

  background:rgba(255,255,255,.10);
  color:#fff;

  font:400 1.8rem/1 Arial, sans-serif;

  cursor:pointer;
}

.tg-join-layer-title{
  margin:0;

  color:#caff35;

  font-size:clamp(1.25rem, 5vw, 2rem);
  font-weight:900;
  line-height:1.05;
  letter-spacing:.045em;
  text-align:center;

  text-shadow:0 0 16px rgba(135,255,25,.35);
}

.tg-join-layer-subtitle{
  margin:5px 0 18px;

  color:rgba(255,255,255,.70);

  font-size:.88rem;
  text-align:center;
}

.tg-join-layer-banner{
  display:block;

  width:100%;
  margin-top:12px;

  overflow:hidden;
  border-radius:15px;

  text-decoration:none;

  box-shadow:0 14px 30px rgba(0,0,0,.52);

  transition:
    transform .18s ease,
    filter .18s ease;
}

.tg-join-layer-banner:hover{
  transform:translateY(-2px);
  filter:brightness(1.05);
}

.tg-join-layer-banner:active{
  transform:scale(.985);
}

.tg-join-layer-banner img{
  display:block;
  width:100%;
  height:auto;
}

body.tg-join-layer-open{
  overflow:hidden;
}

@media (max-width:430px){
  .tg-phone-mini-reel{
    top:6.5%;
    height:6.1%;
    min-height:21px;
  }

  .tg-phone-mini-reel-seat{
    width:28px;
  }

  .tg-join-layer-panel{
    padding:23px 12px 14px;
    border-radius:20px;
  }

  .tg-join-layer-banner{
    border-radius:12px;
  }
}

@media (prefers-reduced-motion:reduce){
  .tg-phone-mini-reel-track{
    animation:none;
  }

  .tg-join-layer,
  .tg-join-layer-panel{
    transition:none;
  }
}

/* ================================================================
   INTRO PAGE -> HAUPTSEITE
   ================================================================ */

body.tg-intro-mode{
  background:#000;
}

.tg-intro-page{
  position:relative;
  z-index:200;

  width:100%;
  min-height:100svh;

  display:grid;
  place-items:start center;

  background:#000;

  opacity:1;
  visibility:visible;

  transition:
    opacity .42s ease,
    transform .42s cubic-bezier(.2,.8,.2,1),
    visibility .42s ease;
}

.tg-intro-inner{
  width:min(100%, 720px);
  margin:0 auto;
}

.tg-intro-page .tg-phone-stage{
  width:100%;
  max-width:720px;
  margin:0 auto;
  border-radius:0;
}

.tg-site-content{
  display:none;
  opacity:0;
  transform:translateY(18px);
}

body.tg-site-entered .tg-intro-page{
  display:none;
}

body.tg-site-entered .tg-site-content{
  display:block;

  animation:
    tgSiteEnter
    .50s
    cubic-bezier(.2,.8,.2,1)
    forwards;
}

@keyframes tgSiteEnter{
  from{
    opacity:0;
    transform:translateY(18px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Der Intro-Slider bleibt rein für den Eintritt in die Website. */
.tg-intro-page .tg-home-products-slider{
  z-index:20;
}

/* Kino-Buttons nutzen denselben Look wie die bisherigen Hero-Buttons. */
.tg-cinema-play,
.tg-cinema-sound{
  pointer-events:auto;

  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;

  background:rgba(0,0,0,.72);
  color:#fff;

  display:inline-grid;
  place-items:center;

  cursor:pointer;

  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);

  box-shadow:0 8px 20px rgba(0,0,0,.45);
}

.tg-cinema-play{
  width:44px;
  height:44px;
  margin-right:auto;
  font-size:1.25rem;
}

.tg-cinema-sound{
  width:38px;
  height:38px;
  margin-left:auto;
  font-size:1rem;
}

@media (max-width:768px){
  .tg-site-content{
    width:100%;
  }

  .tg-intro-page{
    min-height:100dvh;
  }
}

@media (prefers-reduced-motion:reduce){
  .tg-intro-page,
  .tg-site-content{
    transition:none;
    animation:none !important;
  }
}

/* ================================================================
   HOME V3: SCHLICHTE VIDEO-ANSICHT
   Referenz: großes Logo + Navigation, Video ohne Kinorahmen,
   Character-Filmrolle direkt darunter.
   Diese Regeln stehen bewusst am Dateiende und ersetzen ausschließlich
   die alten Kino-/Mobile-Header-Regeln, ohne Intro oder Social Hub zu ändern.
   ================================================================ */

body.tg-site-entered{
  background:
    radial-gradient(circle at 50% 0%, #151719 0%, #050606 48%, #000 100%);
}

body.tg-site-entered .tg-app-shell{
  min-height:100vh;
  padding:0 0 42px;
}

body.tg-site-entered .tg-frame{
  width:min(calc(100% - 32px), 1425px);
  max-width:1425px;
  min-height:min(800px, calc(100vh - 16px));
  margin:0 auto;
  padding:14px 22px 24px;
  border-radius:20px;
  background:#05070a;
  box-shadow:0 22px 54px rgba(0,0,0,.72);
}

body.tg-site-entered .tg-header{
  position:relative;
  top:auto;
  z-index:10;
  width:100%;
  display:flex;
  flex-direction:row;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  margin:0 0 28px;
  padding:0;
  border:0;
  background:transparent;
  -webkit-backdrop-filter:none;
  backdrop-filter:none;
}

body.tg-site-entered .tg-logo-block{
  width:auto;
  min-width:0;
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
}

body.tg-site-entered .tg-logo-img{
  width:auto;
  height:126px;
  max-width:100%;
  max-height:none;
  display:block;
  object-fit:contain;
}

body.tg-site-entered .tg-main-nav{
  width:auto;
  min-width:0;
  margin:43px 0 0 auto;
  padding:0;
  display:flex;
  flex-wrap:nowrap;
  justify-content:flex-end;
  gap:8px;
  overflow:visible;
}

body.tg-site-entered .tg-nav-btn{
  flex:0 0 auto;
  padding:9px 16px;
  border-radius:999px;
  font-size:.88rem;
  line-height:1;
  letter-spacing:.025em;
  white-space:nowrap;
}

body.tg-site-entered .tg-main{
  width:100%;
  margin:0;
}

body.tg-site-entered #section-home{
  width:100%;
  margin:0 !important;
}

body.tg-site-entered .tg-cinema{
  width:min(100%, 856px);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

body.tg-site-entered .tg-cinema-house,
body.tg-site-entered .tg-cinema-marquee,
body.tg-site-entered .tg-cinema-stage,
body.tg-site-entered .tg-cinema-curtain,
body.tg-site-entered .tg-cinema-valance,
body.tg-site-entered .tg-cinema-stage-floor,
body.tg-site-entered .tg-audience-label{
  display:none !important;
}

body.tg-site-entered .tg-screen-wrap{
  position:relative;
  z-index:1;
  width:100%;
  max-width:none;
  margin:0;
  display:block;
}

body.tg-site-entered .tg-screen-frame{
  width:100%;
  margin:0;
  padding:0;
  border:0;
  border-radius:28px;
  background:transparent;
  box-shadow:none;
}

body.tg-site-entered .tg-screen{
  position:relative;
  width:100%;
  max-height:none;
  aspect-ratio:16 / 9;
  overflow:hidden;
  border-radius:28px;
  background:#000;
  box-shadow:
    0 18px 36px rgba(0,0,0,.68),
    0 0 0 1px rgba(255,255,255,.025);
}

body.tg-site-entered .tg-screen::before,
body.tg-site-entered .tg-screen::after{
  display:none;
  content:none;
}

body.tg-site-entered .tg-screen-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center center;
  background:#000;
}

body.tg-site-entered .tg-screen-overlay{
  position:absolute;
  z-index:1;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.02), transparent 72%, rgba(0,0,0,.18));
}

body.tg-site-entered .tg-hero-controls{
  position:absolute;
  z-index:3;
  inset:0;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  padding:16px 18px;
  pointer-events:none;
}

body.tg-site-entered .tg-cinema-play,
body.tg-site-entered .tg-cinema-sound{
  pointer-events:auto;
  margin:0;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.68);
  color:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.38);
}

body.tg-site-entered .tg-cinema-play{
  width:50px;
  height:50px;
  font-size:1.18rem;
}

body.tg-site-entered .tg-cinema-sound{
  width:44px;
  height:44px;
  font-size:1rem;
}

body.tg-site-entered .tg-audience-row{
  position:relative;
  width:100%;
  max-width:none;
  min-height:112px;
  margin:0;
  overflow:hidden;
  border-radius:999px;
  background:
    repeating-linear-gradient(
      90deg,
      #090909 0 18px,
      #1a1a1a 18px 23px,
      #090909 23px 42px
    );
  box-shadow:
    0 13px 28px rgba(0,0,0,.62),
    inset 0 1px 0 rgba(255,255,255,.025);
}

body.tg-site-entered .tg-audience-track{
  min-width:max-content;
  min-height:112px;
  display:flex;
  align-items:flex-end;
  gap:12px;
  padding:10px 22px;
  animation-duration:22s;
}

body.tg-site-entered .tg-audience-seat{
  min-width:74px;
  min-height:90px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}

body.tg-site-entered .tg-audience-char{
  width:auto;
  max-width:118px;
  max-height:94px;
  object-fit:contain;
}

@media (prefers-reduced-motion:reduce){
  body.tg-site-entered .tg-audience-track{
    animation:none;
  }
}

/* ================================================================
   MOBILE / IPHONE – EINHEITLICHE ENDVERSION
   Nur dieser Block steuert die eigentliche Website auf Smartphones.
   Er funktioniert über die Viewportbreite und benötigt keine User-Agent-
   Klasse. Dadurch gibt es keine konkurrierenden V8/V9/V10-Regeln mehr.
   ================================================================ */

@media (max-width:768px), (hover:none) and (pointer:coarse) and (max-device-width:932px){
  html,
  body{
    width:100%;
    min-width:0;
    max-width:100%;
    overflow-x:hidden;
  }

  body.tg-site-entered{
    min-height:100vh;
    min-height:100dvh;
    background:#000;
  }

  body.tg-site-entered .tg-app-shell{
    width:100%;
    min-width:0;
    min-height:100vh;
    min-height:100dvh;
    padding:
      max(8px, env(safe-area-inset-top))
      env(safe-area-inset-right)
      0
      env(safe-area-inset-left);
    background:#000;
  }

  body.tg-site-entered .tg-frame{
    box-sizing:border-box;
    width:calc(100% - 16px);
    max-width:608px;
    min-width:0;
    min-height:calc(100vh - 8px);
    min-height:calc(100dvh - 8px);
    height:auto;
    margin:0 auto;
    padding:12px 10px calc(28px + env(safe-area-inset-bottom));
    overflow-x:hidden;
    overflow-y:visible;
    border-radius:12px 12px 0 0;
    background:#05070a;
    box-shadow:0 12px 30px rgba(0,0,0,.48);
  }

  body.tg-site-entered .tg-header{
    position:relative;
    top:auto;
    z-index:10;
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:13px;
    margin:0 0 22px;
    padding:0 4px;
    border:0;
    background:transparent;
    -webkit-backdrop-filter:none;
    backdrop-filter:none;
  }

  body.tg-site-entered .tg-logo-block{
    width:100%;
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  body.tg-site-entered .tg-logo-img{
    display:block;
    width:auto;
    height:108px;
    max-width:min(62vw, 220px);
    max-height:none;
    object-fit:contain;
  }

  body.tg-site-entered .tg-main-nav{
    width:100%;
    min-width:0;
    display:flex;
    flex-wrap:nowrap;
    align-items:center;
    justify-content:center;
    gap:6px;
    margin:0;
    padding:0 2px 2px;
    overflow-x:auto;
    overscroll-behavior-inline:contain;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }

  body.tg-site-entered .tg-main-nav::-webkit-scrollbar{
    display:none;
  }

  body.tg-site-entered .tg-nav-btn{
    flex:0 0 auto;
    min-height:34px;
    padding:8px 10px;
    font-size:.72rem;
    line-height:1;
    letter-spacing:.015em;
  }

  body.tg-site-entered .tg-main,
  body.tg-site-entered #section-home,
  body.tg-site-entered .tg-cinema,
  body.tg-site-entered .tg-screen-wrap{
    width:100%;
    min-width:0;
    max-width:none;
    margin-left:0;
    margin-right:0;
  }

  body.tg-site-entered .tg-main{
    margin-top:0;
  }

  body.tg-site-entered #section-home{
    padding:0;
  }

  body.tg-site-entered .tg-cinema{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
  }

  body.tg-site-entered .tg-screen-wrap{
    display:block;
    margin-top:0;
  }

  body.tg-site-entered .tg-screen-frame{
    box-sizing:border-box;
    width:100%;
    max-width:none;
    margin:0;
    padding:0;
    overflow:hidden;
    border:0;
    border-radius:20px;
    background:#000;
    box-shadow:0 16px 32px rgba(0,0,0,.72);
  }

  body.tg-site-entered .tg-screen{
    position:relative;
    width:100%;
    max-width:none;
    height:auto;
    aspect-ratio:16 / 9;
    overflow:hidden;
    border-radius:20px;
    background:#000;
  }

  body.tg-site-entered .tg-screen::before,
  body.tg-site-entered .tg-screen::after{
    display:none;
    content:none;
    padding:0;
  }

  body.tg-site-entered .tg-screen-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center center;
    background:#000;
  }

  body.tg-site-entered .tg-hero-controls{
    padding:10px 11px;
  }

  body.tg-site-entered .tg-cinema-play{
    width:44px;
    height:44px;
    font-size:1rem;
  }

  body.tg-site-entered .tg-cinema-sound{
    width:39px;
    height:39px;
    font-size:.9rem;
  }

  body.tg-site-entered .tg-audience-row{
    box-sizing:border-box;
    width:92%;
    max-width:none;
    min-height:88px;
    margin:0 auto;
    overflow:hidden;
    border-radius:999px;
  }

  body.tg-site-entered .tg-audience-track{
    min-width:max-content;
    min-height:88px;
    gap:7px;
    padding:7px 11px;
  }

  body.tg-site-entered .tg-audience-seat{
    flex:0 0 auto;
    min-width:58px;
    min-height:74px;
  }

  body.tg-site-entered .tg-audience-char{
    width:auto;
    max-width:88px;
    max-height:74px;
    object-fit:contain;
  }

  /* Products */
  body.tg-site-entered #section-products{
    width:100%;
    min-width:0;
    margin:0;
    padding:0 2px 4px;
  }

  body.tg-site-entered .tg-products-header-row{
    width:100%;
    margin:0 0 10px;
    display:flex;
    flex-wrap:nowrap;
    justify-content:center;
    gap:5px;
  }

  body.tg-site-entered .tg-subtab-btn{
    flex:0 0 auto;
    padding:7px 10px;
    font-size:.72rem;
  }

  body.tg-site-entered .tg-products-layout{
    width:100%;
    min-width:0;
    display:grid;
    grid-template-columns:minmax(0, 1fr);
    gap:12px;
  }

  body.tg-site-entered .tg-products-grid,
  body.tg-site-entered .tg-product-detail{
    width:100%;
    min-width:0;
  }

  body.tg-site-entered .tg-product-category-card{
    width:100%;
    margin:0;
    padding:9px 10px 8px;
  }

  body.tg-site-entered .tg-product-name{
    font-size:.88rem;
  }

  body.tg-site-entered .tg-product-right{
    width:auto;
    min-width:76px;
  }

  body.tg-site-entered #section-products .tg-product-detail:empty{
    display:none;
  }

  body.tg-site-entered .tg-menu-image-box,
  body.tg-site-entered .tg-menu-image{
    width:100%;
    max-width:100%;
  }

  body.tg-site-entered #section-socials,
  body.tg-site-entered #section-contact{
    width:100%;
    min-width:0;
  }
}

@media (max-width:390px), (hover:none) and (pointer:coarse) and (max-device-width:390px){
  body.tg-site-entered .tg-frame{
    width:calc(100% - 10px);
    padding-left:8px;
    padding-right:8px;
  }

  body.tg-site-entered .tg-logo-img{
    height:98px;
  }

  body.tg-site-entered .tg-header{
    gap:11px;
    margin-bottom:18px;
  }

  body.tg-site-entered .tg-main-nav{
    gap:4px;
  }

  body.tg-site-entered .tg-nav-btn{
    padding:8px;
    font-size:.67rem;
  }

  body.tg-site-entered .tg-screen-frame,
  body.tg-site-entered .tg-screen{
    border-radius:17px;
  }
}

@media (max-width:900px) and (orientation:landscape){
  body.tg-site-entered .tg-header{
    flex-direction:row;
    justify-content:space-between;
    gap:12px;
    margin-bottom:12px;
  }

  body.tg-site-entered .tg-logo-block{
    width:auto;
    justify-content:flex-start;
  }

  body.tg-site-entered .tg-logo-img{
    height:64px;
    max-width:150px;
  }

  body.tg-site-entered .tg-main-nav{
    width:auto;
    justify-content:flex-end;
  }

  body.tg-site-entered .tg-screen{
    max-height:72dvh;
  }
}

/* =========================
   SOCIALS – zentrierte Überschrift
   ========================= */
.tg-social-card-heading-simple{
  justify-content:center;
  text-align:center;
}

.tg-social-card-heading-simple > div{
  width:100%;
}

/* =========================
   Dynamisches Rabattschild auf der Speisekarte
   ========================= */
.tg-menu-image-box{
  position:relative;
}

.tg-menu-sale-badge{
  position:absolute;
  top:clamp(10px,2.2vw,24px);
  right:clamp(10px,2.2vw,24px);
  z-index:5;
  width:clamp(92px,16vw,150px);
  aspect-ratio:1.75/1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border:5px solid #111;
  border-radius:18px;
  background:#d91f2d;
  color:#fff;
  box-shadow:
    0 0 0 5px #f6ff44,
    0 12px 24px rgba(0,0,0,.55);
  transform:rotate(6deg);
  pointer-events:none;
  text-align:center;
}

.tg-menu-sale-badge[hidden]{ display:none !important; }
.tg-menu-sale-badge strong{
  display:block;
  font-size:clamp(1.25rem,3vw,2.1rem);
  font-weight:950;
  line-height:1;
  letter-spacing:-.04em;
}
.tg-menu-sale-badge span{
  display:block;
  margin-top:3px;
  color:#f6ff44;
  font-size:clamp(.62rem,1.3vw,.92rem);
  font-weight:950;
  letter-spacing:.09em;
}
