/** Shopify CDN: Minification failed

Line 18:0 All "@import" rules must come first

**/
.tz-page {
  background: #06050c;
  position: relative;
  overflow: hidden;
  color: #f4f4f6;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  scroll-padding-top: 70px;
}


@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap");

.tz-page, .tz-page *, .tz-page *::before, .tz-page *::after { box-sizing: border-box; }

.tz-page {
  --bg: #06050c;
  --s1: rgba(255,255,255,.035);
  --s2: rgba(255,255,255,.06);
  --s3: rgba(255,255,255,.1);
  --b1: rgba(255,255,255,.06);
  --b2: rgba(255,255,255,.12);
  --t1: #f4f4f6;
  --t2: rgba(255,255,255,.65);
  --t3: rgba(255,255,255,.38);
  --gold: #dba24c;
  --gold-soft: #e6b866;
  --emerald: #34d399;
  --tz-gold: #ab8c52;
  --accent-line: linear-gradient(90deg, transparent, var(--gold), transparent);
  --spring: cubic-bezier(.22,1,.36,1);
}

/* Background orbs for depth */
.tz-bg-orbs {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.tz-bg-orbs::before, .tz-bg-orbs::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(120px); opacity: .5;
  will-change: transform;
}
.tz-bg-orbs::before {
  width: 500px; height: 500px; top: -150px; left: -100px; background: rgba(219,162,76,.15);
  animation: tzOrbFloat1 24s ease-in-out infinite;
}
.tz-bg-orbs::after {
  width: 420px; height: 420px; top: 40vh; right: -120px; background: rgba(124,91,240,.12);
  animation: tzOrbFloat2 28s ease-in-out infinite;
}
@keyframes tzOrbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, 60px) scale(1.08); }
}
@keyframes tzOrbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-30px, -40px) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .tz-bg-orbs::before, .tz-bg-orbs::after { animation: none; }
}
.tz-bg-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .025;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.tz-page { position: relative; z-index: 2; max-width: 1120px; margin: 0 auto; padding: 0 20px 80px; }

/* ═══ PORTAL HERO (oben) ═══ */
.tz-portal {
  padding: 60px 0 52px;
  text-align: center;
}
.tz-portal-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid rgba(219,162,76,.25);
  border-radius: 100px;
  background: rgba(219,162,76,.06);
  margin-bottom: 22px;
}
.tz-portal-eyebrow::before { content: '🎮'; font-size: 13px; }
.tz-portal-display {
  font-size: clamp(30px, 4.2vw, 42px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin: 0 auto 14px;
  max-width: 780px;
  color: var(--t1);
}
.tz-portal-sub {
  font-size: 15px; color: var(--t2); max-width: 560px; margin: 0 auto 36px;
  line-height: 1.55;
}

.tz-glass {
  max-width: 980px; margin: 0 auto;
  padding: 22px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 32px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.55);
}

/* Games-Grid — equal 5-col, clean */
.tz-games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 900px) { .tz-games-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .tz-games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.tz-game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 14px;
  background: rgba(255,255,255,.028);
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 20px;
  text-decoration: none; color: inherit;
  min-height: 172px;
  text-align: center;
  transition: background .25s var(--spring), border-color .25s var(--spring), transform .25s var(--spring), box-shadow .25s var(--spring);
}
.tz-game-card:hover {
  background: rgba(255,255,255,.055);
  border-color: rgba(219,162,76,.35);
  box-shadow: 0 18px 36px -14px rgba(219,162,76,.28);
}
.tz-game-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Icon in Gold-Glow-Kreis */
.tz-game-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; line-height: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, rgba(219,162,76,.18), rgba(219,162,76,.02) 75%);
  border: 1px solid rgba(219,162,76,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 4px 18px -6px rgba(219,162,76,.18);
  transition: all .3s var(--spring);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}
.tz-game-card:hover .tz-game-icon {
  background: radial-gradient(circle at 30% 28%, rgba(219,162,76,.3), rgba(219,162,76,.05) 75%);
  border-color: rgba(219,162,76,.48);
  transform: scale(1.05);
}

.tz-game-name {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -.01em;
  line-height: 1.25;
  margin: 0;
  padding: 0 2px;
}

/* ═══ CONTENT-WRAP ═══ */
.tz-content {
  max-width: 780px; margin: 60px auto 0;
  position: relative; z-index: 2;
}

/* Shopify-Hero-Fragment neutralisieren (wir haben unseren eigenen Hero drüber) */
.tz-content .index-rte .hero__subheading { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 0 0 10px; font-weight: 700; }
.tz-content .hero__rte { margin: 0; }
.tz-content .hero__content__wrapper { text-align: left !important; }

/* Typo der existing Headings */
.tz-content h1 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900; letter-spacing: -.025em; line-height: 1.12;
  margin: 0 0 18px; color: var(--t1);
}
.tz-content h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.2;
  margin: 56px 0 16px; color: var(--t1);
  padding-top: 28px;
  border-top: 1px solid var(--b1);
}
.tz-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 32px; }
.tz-content h3 {
  font-size: clamp(17px, 1.9vw, 19px);
  font-weight: 700; letter-spacing: -.01em; line-height: 1.3;
  margin: 28px 0 10px; color: var(--gold-soft);
}
.tz-content p, .tz-content li {
  font-size: 15.5px; line-height: 1.7; color: var(--t2); margin: 0 0 14px;
}
.tz-content p strong { color: var(--t1); }
.tz-content ul, .tz-content ol { padding-left: 22px; margin: 0 0 18px; }
.tz-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(219,162,76,.35); transition: text-decoration-color .15s; }
.tz-content a:hover { text-decoration-color: var(--gold); }
.tz-content img { max-width: 100%; height: auto; border-radius: 14px; margin: 20px 0; border: 1px solid var(--b1); }

/* Shopify-Hero-Container-Resets */
.tz-content .section-padding, .tz-content .index-rte, .tz-content .hero__content, .tz-content .wrapper, .tz-section-wrap { padding: 0 !important; margin: 0 !important; background: transparent !important; }
.tz-content [data-aos] { opacity: 1 !important; transform: none !important; }
.tz-content [style*="--block-padding"] { padding: 0 !important; }

/* ═══ V2 (B-ONLY) — FAQ ACCORDION + CROSS-PROMO CARDS ═══ */
.tz-content details.faq-item {
  margin: 0 0 8px;
  border: 1px solid var(--b1);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  overflow: hidden;
  transition: background .2s;
}
.tz-content details.faq-item[open] {
  background: rgba(255,255,255,.05);
  border-color: rgba(219,162,76,.3);
}
.tz-content details.faq-item > summary {
  list-style: none; cursor: pointer; padding: 16px 50px 16px 20px;
  position: relative; font-weight: 700;
  color: var(--t1);
  font-size: 15.5px; letter-spacing: -.005em; line-height: 1.35;
}
.tz-content details.faq-item > summary::-webkit-details-marker { display: none; }
.tz-content details.faq-item > summary::after {
  content: '+'; position: absolute; top: 50%; right: 18px; transform: translateY(-50%);
  font-size: 22px; font-weight: 300; color: var(--gold); transition: transform .25s;
  line-height: 1;
}
.tz-content details.faq-item[open] > summary::after { transform: translateY(-50%) rotate(45deg); }
.tz-content details.faq-item > summary h3 {
  display: inline; margin: 0; font-size: inherit; color: inherit; font-weight: inherit;
  border: none; padding: 0;
}
.tz-content details.faq-item .faq-body { padding: 0 20px 18px; color: var(--t2); font-size: 15px; line-height: 1.6; }
.tz-content details.faq-item .faq-body p { margin: 0 0 10px; }

/* Cross-Promo Cards */
.tz-content .cross-promo-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px; margin: 24px 0 12px;
}
.tz-content .cross-promo-card {
  position: relative; display: block;
  padding: 20px 18px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--b1);
  border-radius: 16px;
  text-decoration: none; color: inherit;
  transition: all .2s var(--spring);
}
.tz-content .cross-promo-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(219,162,76,.35);
  transform: translateY(-2px);
}
.tz-content .cross-promo-card h3 {
  margin: 0 0 4px !important; color: var(--t1) !important; font-size: 16px !important;
}
.tz-content .cross-promo-card p { font-size: 12.5px; color: var(--t2); margin: 0; }

/* Bestehende Tabellen aus dem Shopify-Content */
.tz-content table { width: 100%; border-collapse: collapse; margin: 20px 0; background: rgba(255,255,255,.025); border-radius: 12px; overflow: hidden; border: 1px solid var(--b1); }
.tz-content th, .tz-content td { padding: 12px 14px !important; font-size: 14px; text-align: left; border-bottom: 1px solid var(--b1); }
.tz-content th { background: rgba(219,162,76,.1); color: var(--gold-soft); font-weight: 700; }
.tz-content td { color: var(--t2); }

/* Section-Label pill (decorative, kein H) */
.tz-section-label {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
  margin: 56px 0 -4px;
  padding: 4px 12px;
  background: rgba(219,162,76,.08);
  border: 1px solid rgba(219,162,76,.2);
  border-radius: 100px;
}

@media (max-width: 640px) {
  .tz-page { padding: 0 16px 60px; }
  .tz-portal { padding: 36px 0 32px; }
  .tz-game-card { padding: 22px 12px; min-height: 150px; gap: 12px; }
  .tz-game-icon { width: 56px; height: 56px; font-size: 28px; }
  .tz-game-name { font-size: 14px; }
  .tz-content { margin: 44px auto 0; }
}

/* --- A: Notiz-Banner --- */

/* ═══ Sticky Section-Nav (unter Hero) ═══ */

.tz-page { scroll-padding-top: 70px; }

.tz-section-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  gap: 8px;
  padding: 12px 4px;
  margin: 40px 0 0;
  overflow-x: auto;
  overflow-y: hidden;
  background: rgba(6, 5, 12, .82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.tz-section-nav::-webkit-scrollbar { display: none; }
.tz-section-nav a {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  color: var(--t2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.005em;
  transition: all .2s var(--spring);
  white-space: nowrap;
  scroll-snap-align: start;
}
.tz-section-nav a:first-child { margin-left: 2px; }
.tz-section-nav a:hover {
  background: rgba(219,162,76,.1);
  border-color: rgba(219,162,76,.3);
  color: var(--gold);
}
@media (max-width: 640px) {
  .tz-section-nav { margin: 28px -16px 0; padding: 10px 16px; border-radius: 0; }
  .tz-section-nav a { font-size: 12.5px; padding: 7px 14px; }
}

/* ═══ Editorial-Guide: sanfte Differenzierung zur Hero-Action-Ebene ═══ */
.tz-content .tz-editorial-guide {
  position: relative;
  margin: 56px 0 0;
  padding: 38px 30px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.028) 0%, rgba(255,255,255,.008) 100%);
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 24px;
}
.tz-content .tz-editorial-guide::before {
  content: ''; position: absolute; top: 0; left: 28px; right: 28px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .55;
}
.tz-content .tz-guide-eyebrow {
  display: inline-flex; align-items: center;
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  background: rgba(219,162,76,.08);
  border: 1px solid rgba(219,162,76,.22);
  border-radius: 100px;
  margin-bottom: 18px;
}
.tz-content .tz-editorial-guide > h2 {
  border-top: none !important;
  padding-top: 0 !important;
  margin: 0 0 20px !important;
  font-size: clamp(22px, 2.6vw, 28px);
}
.tz-content .tz-editorial-guide h3[data-icon] {
  position: relative;
  padding-left: 56px;
  margin-top: 38px !important;
  color: var(--t1) !important;
  font-size: clamp(18px, 2vw, 20px) !important;
}
.tz-content .tz-editorial-guide h3[data-icon]::before {
  content: attr(data-icon);
  position: absolute;
  left: 0;
  top: -6px;
  font-size: 34px;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}
.tz-content .tz-editorial-guide p {
  font-size: 15.5px;
  line-height: 1.78;
  color: rgba(255,255,255,.72);
}
.tz-content .tz-editorial-guide p strong { color: var(--t1); }
.tz-content .tz-editorial-guide a {
  color: var(--gold);
  text-decoration-color: rgba(219,162,76,.45);
}

@media (max-width: 640px) {
  .tz-content .tz-editorial-guide {
    padding: 28px 20px 22px;
    margin-top: 44px;
    border-radius: 20px;
  }
  .tz-content .tz-editorial-guide::before { left: 20px; right: 20px; }
  .tz-content .tz-editorial-guide h3[data-icon] {
    padding-left: 48px;
    margin-top: 30px !important;
  }
  .tz-content .tz-editorial-guide h3[data-icon]::before { font-size: 28px; top: -3px; }
  .tz-content .tz-editorial-guide p { font-size: 15px; line-height: 1.7; }
}

/* ═══ Content-Ausbau (v6): Product-Showcases, Callouts, Banner ═══ */
.tz-content .product-showcase { margin: 32px 0; }
.tz-content .product-showcase h4 { color: var(--t1); font-size: 15px; font-weight: 700; margin: 14px 0 4px; letter-spacing: -.005em; line-height: 1.3; }
.tz-content .product-showcase h4 a { color: var(--t1); text-decoration: none; }
.tz-content .product-showcase h4 a:hover { color: var(--gold); }
.tz-content .product-showcase .product-grid {
  background: rgba(255,255,255,.025) !important;
  border: 1px solid var(--b1);
  border-radius: 18px;
  padding: 22px !important;
  margin: 0 !important;
}
.tz-content .product-showcase img {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--b1);
  padding: 12px;
  max-width: 100%;
  height: auto !important;
  max-height: 260px;
  object-fit: contain;
  border-radius: 14px !important;
}
.tz-content .product-showcase p { color: var(--gold) !important; font-weight: 800 !important; font-size: 15px !important; margin: 4px 0 !important; }

.tz-content .tz-callout {
  background: linear-gradient(180deg, rgba(219,162,76,.08), rgba(219,162,76,.015));
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  margin: 28px 0;
  border-radius: 0 16px 16px 0;
}
.tz-content .tz-callout .tz-callout-title { font-weight: 800; color: var(--t1); margin-bottom: 6px; font-size: 15px; display: block; }
.tz-content .tz-callout p { color: var(--t2); margin-bottom: 8px; }
.tz-content .tz-callout p:last-child { margin-bottom: 0; }

.tz-content .tz-banner {
  margin: 36px 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--b1);
}
.tz-content .tz-banner img { width: 100%; height: auto; display: block; }

/* ══ v4 Vollbreite-Fix: aus Theme-Wrapper ausbrechen ══ */
.tz-page {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  max-width: 100vw !important;
  padding: 0 20px 60px !important;
}
@media (max-width: 640px) {
  .tz-page { padding: 0 16px 48px !important; }
}

/* Shopify-Section-Padding-Overrides (custom-code section-padding wrapper class kill) */
#CustomCode--template--22932960280901__custom_code_hub_top,
#CustomCode--template--22932960280901__custom_code_hub_bottom {
  padding: 0 !important;
  max-width: 100% !important;
}
