:root {
  --rs-bg: #F8FAFC;
  --rs-bg-gradient: linear-gradient(120deg, #F8FAFC 80%, #e6e9ef 100%);
  --rs-accent: #EA580C;
  --rs-accent-hover: #fff;
  --rs-accent-bg-hover: #EA580C;
  --rs-card-shadow: 0 4px 24px 0 rgba(16, 30, 52, 0.07), 0 1.5px 8px 0 rgba(234, 88, 12, 0.07);
  --rs-card-radius: 18px;
  --rs-card-radius-sm: 10px;
  --rs-border: 1px solid rgba(234, 88, 12, 0.14);
  --rs-text: #191C22;
  --rs-text-muted: #5E6470;
  --rs-header-bg: #fff;
  --rs-footer-bg: #f4f6fa;
  --rs-section-pad: 64px 0;
  --rs-max-width: 1240px;
  --rs-transition: 0.22s cubic-bezier(.55,.06,.68,.19);
  --rs-gradient-faint: linear-gradient(90deg, #EA580C0a 0%, #F8FAFC00 100%);
  --rs-gradient-faint-2: linear-gradient(180deg, #EA580C08 0%, #F8FAFC00 100%);
  --rs-shadow-hover: 0 6px 32px 0 rgba(234, 88, 12, 0.09);
  --rs-shadow-btn: 0 2px 8px 0 rgba(234, 88, 12, 0.10);
  --rs-shadow-btn-hover: 0 4px 16px 0 rgba(234, 88, 12, 0.14);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--rs-bg-gradient);
  color: var(--rs-text);
  font-family: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
  scroll-behavior: smooth;
}

body.ReelSaga-body {
  background: var(--rs-bg-gradient);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  letter-spacing: 0.01em;
}

/* Container */
.ReelSaga-container {
  max-width: var(--rs-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.ReelSaga-header {
  background: var(--rs-header-bg);
  box-shadow: 0 1px 18px 0 rgba(16, 30, 52, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--rs-transition);
}

.ReelSaga-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--rs-max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}

.ReelSaga-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.ReelSaga-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: var(--rs-card-shadow);
  background: var(--rs-gradient-faint);
}

.ReelSaga-nav {
  margin-left: 24px;
}

.ReelSaga-nav-list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ReelSaga-nav-link {
  color: var(--rs-text-muted);
  font-weight: 500;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 7px;
  transition: color var(--rs-transition), background var(--rs-transition);
  position: relative;
}
.ReelSaga-nav-link:hover,
.ReelSaga-nav-link:focus {
  color: var(--rs-accent);
  background: var(--rs-gradient-faint);
}

/* HERO */
.ReelSaga-hero {
  background: var(--rs-bg);
  background: linear-gradient(120deg, #F8FAFC 80%, #f4f6fa 100%);
  padding: var(--rs-section-pad);
  box-shadow: 0 2px 28px 0 rgba(16, 30, 52, 0.08);
  position: relative;
}

.ReelSaga-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--rs-max-width);
  margin: 0 auto;
  position: relative;
}

.ReelSaga-hero-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ReelSaga-hero-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  letter-spacing: -0.03em;
  color: var(--rs-text);
  background: var(--rs-gradient-faint-2);
  border-radius: var(--rs-card-radius-sm);
  padding: 6px 0 6px 8px;
  box-shadow: 0 1.5px 7px 0 rgba(234, 88, 12, 0.03);
}

.ReelSaga-hero-sub {
  font-size: 1.1rem;
  color: var(--rs-text-muted);
  margin-bottom: 12px;
  margin-top: 0;
}

.ReelSaga-hero-features {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ReelSaga-hero-feature {
  position: relative;
  padding-left: 22px;
  color: var(--rs-text);
  font-weight: 500;
}
.ReelSaga-hero-feature::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rs-accent);
  opacity: 0.18;
  box-shadow: 0 0 0 2px var(--rs-accent);
}

.ReelSaga-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.ReelSaga-cta {
  display: inline-block;
  background: var(--rs-accent);
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: var(--rs-shadow-btn);
  border: none;
  transition: background var(--rs-transition), color var(--rs-transition), box-shadow var(--rs-transition);
  cursor: pointer;
}
.ReelSaga-cta:hover,
.ReelSaga-cta:focus {
  background: #fff;
  color: var(--rs-accent);
  box-shadow: var(--rs-shadow-btn-hover);
  border: 1px solid var(--rs-accent);
}
.ReelSaga-cta--muted {
  background: transparent;
  color: var(--rs-accent);
  border: 1px solid var(--rs-accent);
  box-shadow: none;
}
.ReelSaga-cta--muted:hover,
.ReelSaga-cta--muted:focus {
  background: var(--rs-accent);
  color: #fff;
  box-shadow: var(--rs-shadow-btn-hover);
}

.ReelSaga-hero-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
}
.ReelSaga-hero-img {
  width: 250px;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--rs-card-radius);
  box-shadow: var(--rs-card-shadow);
  background: var(--rs-gradient-faint-2);
  margin-bottom: 0;
}
.ReelSaga-hero-img--overlap {
  position: absolute;
  left: 60px;
  top: 130px;
  width: 120px;
  max-height: 160px;
  z-index: 1;
  opacity: 0.93;
  box-shadow: 0 4px 20px 0 rgba(234, 88, 12, 0.10);
  border-radius: 14px;
}

.ReelSaga-quickstats {
  display: flex;
  gap: 18px;
  margin-top: 38px;
  justify-content: flex-end;
}
.ReelSaga-stat {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(234, 88, 12, 0.07);
  padding: 12px 18px;
  min-width: 70px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ReelSaga-stat-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rs-accent);
  margin-bottom: 2px;
}
.ReelSaga-stat-label {
  font-size: 0.98rem;
  color: var(--rs-text-muted);
  font-weight: 500;
}

/* Welt & Atmosphäre */
.ReelSaga-welt {
  background: var(--rs-bg);
  padding: var(--rs-section-pad);
  position: relative;
}

.ReelSaga-section-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 34px;
  color: var(--rs-text);
  letter-spacing: -0.01em;
  background: var(--rs-gradient-faint-2);
  border-radius: 7px;
  display: inline-block;
  padding: 4px 12px 4px 8px;
}

.ReelSaga-welt-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 44px;
  align-items: stretch;
}

.ReelSaga-welt-col {
  background: #fff;
  border-radius: var(--rs-card-radius);
  box-shadow: var(--rs-card-shadow);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  min-width: 0;
}

.ReelSaga-welt-intro {
  font-size: 1.04rem;
  color: var(--rs-text-muted);
  margin: 0 0 8px 0;
}

.ReelSaga-welt-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ReelSaga-welt-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  color: var(--rs-text);
  font-weight: 500;
}
.ReelSaga-welt-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rs-accent);
  opacity: 0.13;
}

.ReelSaga-welt-media {
  padding: 0;
  gap: 0;
  background: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.ReelSaga-welt-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--rs-card-radius);
  margin-bottom: 18px;
  box-shadow: var(--rs-card-shadow);
  background: var(--rs-gradient-faint-2);
}
.ReelSaga-welt-aspects {
  background: #fff;
  border-radius: var(--rs-card-radius-sm);
  box-shadow: 0 1.5px 7px 0 rgba(234, 88, 12, 0.04);
  padding: 18px 18px 14px 18px;
  font-size: 0.98rem;
  margin-top: 0;
}
.ReelSaga-welt-aspects h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}
.ReelSaga-welt-aspects ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ReelSaga-welt-aspects li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 5px;
}
.ReelSaga-welt-aspects li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rs-accent);
  opacity: 0.10;
}

/* Spielmechaniken */
.ReelSaga-mechanik {
  background: var(--rs-bg);
  padding: var(--rs-section-pad);
  position: relative;
}

.ReelSaga-mechanik-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: stretch;
}

.ReelSaga-mechanik-col {
  background: #fff;
  border-radius: var(--rs-card-radius);
  box-shadow: var(--rs-card-shadow);
  padding: 30px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.ReelSaga-mechanik-col h3 {
  font-size: 1.07rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--rs-accent);
}

.ReelSaga-actions {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ReelSaga-actions li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 5px;
  color: var(--rs-text);
  font-weight: 500;
}
.ReelSaga-actions li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rs-accent);
  opacity: 0.10;
}

.ReelSaga-systems {
  margin: 0;
  padding-left: 18px;
  color: var(--rs-text-muted);
  font-size: 0.98rem;
}
.ReelSaga-systems li {
  margin-bottom: 7px;
  font-weight: 500;
}
.ReelSaga-systems strong {
  color: var(--rs-accent);
  font-weight: 700;
}

/* Spielrhythmus */
.ReelSaga-rhythmus {
  background: var(--rs-bg-gradient);
  padding: var(--rs-section-pad);
  position: relative;
}

.ReelSaga-rhythmus-content {
  background: #fff;
  border-radius: var(--rs-card-radius);
  box-shadow: var(--rs-card-shadow);
  padding: 34px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ReelSaga-rhythmus-content h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--rs-accent);
  margin: 0 0 10px 0;
}

.ReelSaga-rhythmus-steps {
  margin: 0 0 10px 0;
  padding-left: 20px;
  color: var(--rs-text);
  font-size: 0.99rem;
}
.ReelSaga-rhythmus-reasons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
}
.ReelSaga-rhythmus-reasons li {
  position: relative;
  padding-left: 15px;
  font-weight: 500;
  color: var(--rs-text);
}
.ReelSaga-rhythmus-reasons li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rs-accent);
  opacity: 0.10;
}

/* Features */
.ReelSaga-features {
  background: var(--rs-bg);
  padding: var(--rs-section-pad);
  position: relative;
}

.ReelSaga-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 26px;
}

.ReelSaga-feature {
  background: #fff;
  border-radius: var(--rs-card-radius-sm);
  box-shadow: var(--rs-card-shadow);
  padding: 26px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  transition: box-shadow var(--rs-transition), transform var(--rs-transition);
}
.ReelSaga-feature:hover {
  box-shadow: var(--rs-shadow-hover);
  transform: translateY(-2px) scale(1.012);
}
.ReelSaga-feature h3 {
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--rs-accent);
  margin: 0 0 7px 0;
}
.ReelSaga-feature p {
  color: var(--rs-text-muted);
  margin: 0;
  font-size: 0.99rem;
}

.ReelSaga-features-media {
  margin-top: 38px;
  display: flex;
  justify-content: center;
}
.ReelSaga-feature-img {
  width: 360px;
  max-width: 100%;
  border-radius: var(--rs-card-radius);
  object-fit: cover;
  box-shadow: var(--rs-card-shadow);
  background: var(--rs-gradient-faint);
}

/* Inhalte */
.ReelSaga-inhalte {
  background: var(--rs-bg-gradient);
  padding: var(--rs-section-pad);
  position: relative;
}

.ReelSaga-inhalte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-bottom: 28px;
}
.ReelSaga-inhalte-grid > div {
  background: #fff;
  border-radius: var(--rs-card-radius-sm);
  box-shadow: var(--rs-card-shadow);
  padding: 28px 22px 18px 22px;
  min-width: 0;
}
.ReelSaga-inhalte-grid h3 {
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--rs-accent);
  margin: 0 0 10px 0;
}
.ReelSaga-inhalte-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ReelSaga-inhalte-grid li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 6px;
  color: var(--rs-text);
  font-weight: 500;
}
.ReelSaga-inhalte-grid li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rs-accent);
  opacity: 0.10;
}

.ReelSaga-inhalte-tech {
  background: #fff;
  border-radius: var(--rs-card-radius-sm);
  box-shadow: var(--rs-card-shadow);
  padding: 28px 22px 18px 22px;
  margin-top: 0;
}
.ReelSaga-inhalte-tech h3 {
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--rs-accent);
  margin: 0 0 10px 0;
}
.ReelSaga-inhalte-tech ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ReelSaga-inhalte-tech li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 6px;
  color: var(--rs-text);
  font-weight: 500;
}
.ReelSaga-inhalte-tech li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rs-accent);
  opacity: 0.10;
}

/* Eindrücke */
.ReelSaga-eindruecke {
  background: var(--rs-bg);
  padding: var(--rs-section-pad);
  position: relative;
}

.ReelSaga-eindruecke-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.ReelSaga-eindruecke-grid > div {
  background: #fff;
  border-radius: var(--rs-card-radius-sm);
  box-shadow: var(--rs-card-shadow);
  padding: 28px 22px 18px 22px;
  min-width: 0;
}
.ReelSaga-eindruecke-grid h3 {
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--rs-accent);
  margin: 0 0 10px 0;
}
.ReelSaga-eindruecke-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ReelSaga-eindruecke-grid li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 6px;
  color: var(--rs-text);
  font-weight: 500;
}
.ReelSaga-eindruecke-grid li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rs-accent);
  opacity: 0.10;
}

/* FAQ */
.ReelSaga-faq {
  background: var(--rs-bg-gradient);
  padding: var(--rs-section-pad);
  position: relative;
}

.ReelSaga-faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 36px;
}

.ReelSaga-faq-item {
  background: #fff;
  border-radius: var(--rs-card-radius-sm);
  box-shadow: var(--rs-card-shadow);
  padding: 18px 22px 14px 22px;
  font-size: 1rem;
  transition: box-shadow var(--rs-transition);
  border-left: 3px solid transparent;
}
.ReelSaga-faq-item[open] {
  box-shadow: var(--rs-shadow-hover);
  border-left: 3px solid var(--rs-accent);
}
.ReelSaga-faq-item summary {
  font-weight: 700;
  color: var(--rs-accent);
  cursor: pointer;
  outline: none;
  font-size: 1.01rem;
  margin-bottom: 6px;
  transition: color var(--rs-transition);
}
.ReelSaga-faq-item[open] summary {
  color: var(--rs-text);
}
.ReelSaga-faq-item p {
  color: var(--rs-text-muted);
  margin: 10px 0 0 0;
}

/* Screenshots */
.ReelSaga-screenshots {
  background: var(--rs-bg);
  padding: var(--rs-section-pad);
  position: relative;
}

.ReelSaga-screens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 18px;
  margin-top: 32px;
}

.ReelSaga-shot {
  background: #fff;
  border-radius: var(--rs-card-radius-sm);
  box-shadow: var(--rs-card-shadow);
  padding: 10px 10px 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow var(--rs-transition), transform var(--rs-transition);
}
.ReelSaga-shot:hover {
  box-shadow: var(--rs-shadow-hover);
  transform: translateY(-2px) scale(1.012);
}
.ReelSaga-shot-img {
  width: 100%;
  max-width: 210px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  background: var(--rs-gradient-faint-2);
}
.ReelSaga-shot-caption {
  font-size: 0.98rem;
  color: var(--rs-text-muted);
  text-align: center;
}

/* Contact / CTA */
.ReelSaga-contact {
  background: var(--rs-bg-gradient);
  padding: var(--rs-section-pad);
  position: relative;
}

.ReelSaga-contact-actions {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

/* Footer */
.ReelSaga-footer {
  background: var(--rs-footer-bg);
  padding: 48px 0 24px 0;
  box-shadow: 0 -2px 18px 0 rgba(16, 30, 52, 0.04);
}
.ReelSaga-footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.2fr 1.2fr 1.2fr;
  gap: 38px;
  max-width: var(--rs-max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.ReelSaga-footer-about {
  font-size: 0.98rem;
  color: var(--rs-text-muted);
}
.ReelSaga-footer-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 1.5px 7px 0 rgba(234, 88, 12, 0.04);
}
.ReelSaga-footer-logo-link {
  display: inline-block;
}
.ReelSaga-footer-links h4,
.ReelSaga-footer-anchors h4,
.ReelSaga-footer-meta h4 {
  font-size: 1.01rem;
  font-weight: 700;
  color: var(--rs-accent);
  margin: 0 0 8px 0;
}
.ReelSaga-footer-links ul,
.ReelSaga-footer-anchors ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ReelSaga-footer-links li,
.ReelSaga-footer-anchors li {
  margin-bottom: 5px;
}
.ReelSaga-footer-links a,
.ReelSaga-footer-anchors a {
  color: var(--rs-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--rs-transition);
}
.ReelSaga-footer-links a:hover,
.ReelSaga-footer-anchors a:hover {
  color: var(--rs-accent);
}
.ReelSaga-footer-meta {
  font-size: 0.98rem;
  color: var(--rs-text-muted);
}

/* Cookie Banner */
.ReelSaga-cookie {
  position: fixed;
  bottom: 18px;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.ReelSaga-cookie-inner {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(16, 30, 52, 0.14);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 540px;
  width: 90%;
  pointer-events: all;
  border: var(--rs-border);
}
.ReelSaga-cookie-text {
  color: var(--rs-text-muted);
  font-size: 0.99rem;
  margin: 0;
  flex: 1;
}
.ReelSaga-cookie-actions {
  display: flex;
  gap: 12px;
}
.ReelSaga-cookie-accept {
  background: var(--rs-accent);
  color: #fff;
  font-weight: 700;
  border-radius: 20px;
  padding: 8px 22px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--rs-shadow-btn);
  transition: background var(--rs-transition), color var(--rs-transition), box-shadow var(--rs-transition);
}
.ReelSaga-cookie-accept:hover,
.ReelSaga-cookie-accept:focus {
  background: #fff;
  color: var(--rs-accent);
  border: 1px solid var(--rs-accent);
  box-shadow: var(--rs-shadow-btn-hover);
}

/* Responsive */
@media (max-width: 1100px) {
  .ReelSaga-hero-grid,
  .ReelSaga-welt-grid,
  .ReelSaga-mechanik-grid,
  .ReelSaga-inhalte-grid,
  .ReelSaga-eindruecke-grid,
  .ReelSaga-faq-list,
  .ReelSaga-features-grid,
  .ReelSaga-screens-grid,
  .ReelSaga-footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .ReelSaga-features-grid {
    gap: 24px 18px;
  }
  .ReelSaga-screens-grid {
    gap: 28px 12px;
  }
  .ReelSaga-footer-grid {
    gap: 24px;
  }
}

@media (max-width: 800px) {
  .ReelSaga-header-inner {
    flex-direction: column;
    height: auto;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 18px;
  }
  .ReelSaga-nav-list {
    gap: 10px;
    flex-wrap: wrap;
  }
  .ReelSaga-hero-grid,
  .ReelSaga-welt-grid,
  .ReelSaga-mechanik-grid,
  .ReelSaga-inhalte-grid,
  .ReelSaga-eindruecke-grid,
  .ReelSaga-faq-list,
  .ReelSaga-features-grid,
  .ReelSaga-footer-grid {
    grid-template-columns: 1fr !important;
  }
  .ReelSaga-hero-media {
    align-items: center;
  }
  .ReelSaga-hero-img--overlap {
    position: static;
    width: 120px;
    margin-top: 18px;
    left: 0;
    top: 0;
    opacity: 0.94;
  }
  .ReelSaga-quickstats {
    justify-content: center;
    margin-top: 22px;
  }
  .ReelSaga-features-media {
    margin-top: 24px;
  }
  .ReelSaga-screens-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 18px 8px;
  }
  .ReelSaga-footer-grid {
    gap: 18px;
  }
  .ReelSaga-cookie-inner {
    padding: 14px 12px;
  }
}

@media (max-width: 540px) {
  .ReelSaga-container {
    padding: 0 8px;
  }
  .ReelSaga-header-inner {
    padding: 7px 6px;
  }
  .ReelSaga-section-title {
    font-size: 1.15rem;
    padding: 3px 6px 3px 4px;
  }
  .ReelSaga-hero-title {
    font-size: 1.25rem;
    padding: 4px 0 4px 4px;
  }
  .ReelSaga-hero-img,
  .ReelSaga-hero-img--overlap {
    width: 100%;
    max-width: 100%;
    max-height: 180px;
    margin: 0 auto 8px auto;
  }
  .ReelSaga-hero-media {
    gap: 8px;
  }
  .ReelSaga-quickstats {
    flex-direction: column;
    gap: 9px;
    margin-top: 12px;
    align-items: center;
  }
  .ReelSaga-screens-grid {
    grid-template-columns: 1fr !important;
    gap: 12px 0;
  }
  .ReelSaga-footer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 6px;
  }
  .ReelSaga-cookie-inner {
    padding: 10px 4px;
    max-width: 99vw;
  }
}

/* Hide scrollbars for card containers */
.ReelSaga-hero-media,
.ReelSaga-features-media,
.ReelSaga-screens-grid {
  scrollbar-width: thin;
  scrollbar-color: #EA580C22 #F8FAFC;
}
.ReelSaga-hero-media::-webkit-scrollbar,
.ReelSaga-features-media::-webkit-scrollbar,
.ReelSaga-screens-grid::-webkit-scrollbar {
  height: 5px;
  background: #F8FAFC;
}
.ReelSaga-hero-media::-webkit-scrollbar-thumb,
.ReelSaga-features-media::-webkit-scrollbar-thumb,
.ReelSaga-screens-grid::-webkit-scrollbar-thumb {
  background: #EA580C22;
  border-radius: 4px;
}