.pch-masthead {
  position: sticky;
  inset-block-start: 0;
  z-index: 90;
  background-color: #0b132b;
  backdrop-filter: blur(8px);
  border-block-end: 1px solid #1a2238;
  padding-block: 0.7rem;
  padding-inline-start: env(safe-area-inset-left, 0px);
  padding-inline-end: env(safe-area-inset-right, 0px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.pch-masthead[data-pch-hidden="true"] {
  transform: translateY(-102%);
}

.pch-masthead[data-pch-scrolled="true"] {
  box-shadow: var(--pch-shadow-paper);
}

.pch-masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pch-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #ffffff;
}

.pch-brand__mark {
  inline-size: 40px;
  block-size: 40px;
  border-radius: 10px 3px 10px 3px;
  background-color: var(--pch-forest);
  color: var(--pch-surface);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  overflow: hidden;
}

.pch-brand__mark img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.pch-brand__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.pch-brand__name {
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.pch-brand__status {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pch-coral);
}

.pch-header-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  margin-inline-start: auto;
  margin-inline-end: 1rem;
}

.pch-header-phone svg {
  fill: #ec265e;
}

@media (max-width: 992px) {
  .pch-header-phone {
    display: none;
  }
}

.pch-primary-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pch-nav-group {
  position: relative;
}

.pch-nav-group__label {
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--pch-radius);
  padding: 0.6rem 0.85rem;
  min-block-size: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.pch-nav-group__label::after {
  content: "";
  inline-size: 7px;
  block-size: 7px;
  border-inline-end: 2px solid #8c97a5;
  border-block-end: 2px solid #8c97a5;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}

.pch-nav-group[data-pch-open="true"] .pch-nav-group__label {
  border-color: #1a2238;
  background-color: #141c30;
}

.pch-nav-group[data-pch-open="true"] .pch-nav-group__label::after {
  transform: rotate(-135deg) translateY(-2px);
}

.pch-nav-group__panel {
  position: absolute;
  inset-block-start: calc(100% + 0.5rem);
  inset-inline-start: 0;
  min-inline-size: 250px;
  background-color: var(--pch-surface);
  border: 1px solid var(--pch-line);
  border-radius: var(--pch-radius);
  box-shadow: var(--pch-shadow-lift);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
}

.pch-nav-group[data-pch-open="true"] .pch-nav-group__panel {
  display: flex;
}

.pch-nav-group__panel a {
  padding: 0.65rem 0.75rem;
  border-radius: var(--pch-radius);
  text-decoration: none;
  color: var(--pch-ink);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
}

.pch-nav-group__panel a span {
  font-size: 0.78rem;
  color: var(--pch-muted);
}

.pch-nav-group__panel a:hover,
.pch-nav-group__panel a:focus-visible {
  background-color: var(--pch-glacier-soft);
  color: var(--pch-forest-dark);
}

.pch-nav-group__panel a[aria-current="page"] {
  background-color: var(--pch-coral-soft);
  color: var(--pch-forest-dark);
}

.pch-nav-direct {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 0.6rem 0.85rem;
  min-block-size: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--pch-radius);
}

.pch-nav-direct[aria-current="page"] {
  color: var(--pch-coral);
}

.pch-burger {
  display: none;
  inline-size: 46px;
  block-size: 46px;
  border: 1px solid #1a2238;
  border-radius: var(--pch-radius);
  background-color: #0b132b;
  cursor: pointer;
  padding: 0;
  place-items: center;
}

.pch-burger__bars {
  position: relative;
  inline-size: 20px;
  block-size: 2px;
  background-color: #ffffff;
  display: block;
}

.pch-burger__bars::before,
.pch-burger__bars::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  block-size: 2px;
  background-color: #ffffff;
  transition:
    transform 0.3s ease,
    top 0.3s ease;
}

.pch-burger__bars::before {
  inset-block-start: -6px;
}

.pch-burger__bars::after {
  inset-block-start: 6px;
}

.pch-drawer {
  position: fixed;
  inset: 0;
  z-index: 130;
  visibility: hidden;
  pointer-events: none;
}

.pch-drawer[data-pch-open="true"] {
  visibility: visible;
  pointer-events: auto;
}

.pch-drawer__scrim {
  position: absolute;
  inset: 0;
  background-color: rgba(13, 41, 36, 0.42);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pch-drawer[data-pch-open="true"] .pch-drawer__scrim {
  opacity: 1;
}

.pch-drawer__panel {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  inline-size: min(88vw, 360px);
  background-color: var(--pch-surface);
  padding: calc(env(safe-area-inset-top, 0px) + 1.4rem) 1.4rem 2rem;
  overflow-y: auto;
  transform: translateX(102%);
  transition: transform 0.32s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pch-drawer[data-pch-open="true"] .pch-drawer__panel {
  transform: translateX(0);
}

.pch-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 0.5rem;
}

.pch-drawer__close {
  inline-size: 44px;
  block-size: 44px;
  border: 1px solid var(--pch-line);
  border-radius: var(--pch-radius);
  background-color: var(--pch-surface);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--pch-forest-dark);
}

.pch-drawer__section {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pch-muted);
  margin-block: 0.9rem 0.3rem;
}

.pch-drawer__link {
  display: block;
  padding: 0.75rem 0.6rem;
  border-radius: var(--pch-radius);
  text-decoration: none;
  color: var(--pch-ink);
  font-weight: 600;
  border-block-end: 1px solid var(--pch-line);
}

.pch-drawer__link[aria-current="page"] {
  color: var(--pch-coral);
}

main {
  display: block;
}

.pch-band {
  padding-block: var(--pch-rhythm);
}

.pch-band--paper {
  background-color: var(--pch-paper);
}

.pch-band--surface {
  background-color: var(--pch-surface);
  border-block: 1px solid var(--pch-line);
}

.pch-band--forest {
  background-color: var(--pch-forest-dark);
  color: var(--pch-forest-soft);
  position: relative;
  overflow: hidden;
}

.pch-band--forest::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      115deg,
      transparent 0 46px,
      rgba(121, 185, 197, 0.08) 46px 47px
    ),
    repeating-linear-gradient(
      200deg,
      transparent 0 60px,
      rgba(231, 92, 63, 0.06) 60px 61px
    );
  pointer-events: none;
}

.pch-band--forest .pch-shell {
  position: relative;
}

.pch-band--forest h2,
.pch-band--forest h3 {
  color: var(--pch-surface);
}

.pch-band--forest .pch-lead {
  color: color-mix(in srgb, var(--pch-glacier) 75%, var(--pch-surface));
}

.pch-band__head {
  max-inline-size: 70ch;
  margin-block-end: clamp(2rem, 4vw, 3.2rem);
}

.pch-split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.pch-split--7-5 {
  grid-template-columns: 7fr 5fr;
}

.pch-split--5-7 {
  grid-template-columns: 5fr 7fr;
}

.pch-topoline {
  block-size: 1px;
  border: 0;
  background-image: repeating-linear-gradient(
    90deg,
    var(--pch-line) 0 10px,
    transparent 10px 20px
  );
  margin-block: clamp(2rem, 4vw, 3rem);
}

.pch-route-marker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--pch-step-small);
  font-weight: 600;
  color: var(--pch-glacier);
}

.pch-route-marker::before {
  content: "";
  inline-size: 12px;
  block-size: 12px;
  border-radius: 50%;
  border: 3px solid var(--pch-coral);
  background-color: var(--pch-surface);
}

.custom-footer {
  background-color: #0b132b;
  color: #8c97a5;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.custom-footer a {
  color: #8c97a5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.custom-footer a:hover {
  color: #ffffff;
}

.custom-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-block-end: 4rem;
}

.custom-footer__logo img {
  max-width: 250px;
  height: auto;
}

.custom-footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.custom-footer__links li a {
  font-size: 0.95rem;
}

.custom-footer__contact p {
  font-size: 0.95rem;
  margin-block: 0 1rem;
  color: #8c97a5;
}

.custom-footer__contact p:last-child {
  margin-block-end: 0;
}

.custom-footer__disclaimer h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-block-end: 1.5rem;
  font-weight: 500;
}

.custom-footer__disclaimer p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  color: #727a85;
}

.custom-footer__bottom {
  border-block-start: 1px solid #2a313c;
  margin-block-start: 4rem;
  padding-block-start: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #727a85;
}

@media (max-width: 768px) {
  .custom-footer__top {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.pch-backtotop {
  position: fixed;
  inset-block-end: calc(env(safe-area-inset-bottom, 0px) + 1.2rem);
  inset-inline-end: 1.2rem;
  z-index: 80;
  inline-size: 48px;
  block-size: 48px;
  border-radius: 50%;
  border: 1px solid var(--pch-line);
  background-color: var(--pch-surface);
  color: var(--pch-forest-dark);
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
  box-shadow: var(--pch-shadow-paper);
}

.pch-backtotop[data-pch-visible="true"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* NEW HERO SECTION */
.pch-hero-new {
  position: relative;
  background-image: url("../../img/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-block: 6rem 4rem;
  overflow: hidden;
}

.pch-hero-new::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 21, 38, 0.8) 0%,
    rgba(16, 21, 38, 0.3) 50%,
    transparent 100%
  );
  z-index: 1;
}

.pch-hero-new__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.pch-hero-new__content {
  flex: 0 1 45%;
  color: #fff;
}

.pch-hero-new__title {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.pch-hero-new__text {
  font-size: 0.95rem;
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  max-width: 90%;
  color: rgba(255, 255, 255, 0.9);
}

.pch-hero-new__visuals {
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.pch-hero-new__logo {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

.pch-hero-new__glass-card {
  background: linear-gradient(
    135deg,
    rgba(45, 85, 140, 0.5) 0%,
    rgba(20, 40, 70, 0.5) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
  width: 100%;
  max-width: 650px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.glass-card__header {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.glass-card__body {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.glass-card__img {
  width: 240px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.glass-card__info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.glass-card__info p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
  .pch-hero-new {
    padding-block: 4rem 2rem;
  }
  .pch-hero-new__inner {
    flex-direction: column;
  }
  .pch-hero-new__content {
    flex: 1 1 100%;
    margin-bottom: 2rem;
  }
  .pch-hero-new__visuals {
    flex: 1 1 100%;
    width: 100%;
  }
  .pch-hero-new__text {
    max-width: 100%;
  }
  .glass-card__body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .glass-card__img {
    width: 100%;
    max-width: 300px;
  }
}

/* NEW CONTENT SECTIONS (Beliebte Spielwelten, Neue Abenteuer, Tentlan) */
.pch-section-new {
  background-color: #0b132b;
  color: #fff;
  padding-block: 4rem;
}

.pch-section-new__title {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
  color: #fff;
  white-space: nowrap;
}

.pch-section-new__title::before {
  content: "";
  flex: 0 0 60px;
  height: 1px;
  background-color: #e50955;
  margin-right: 1.5rem;
}

.pch-section-new__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e50955;
  margin-left: 1.5rem;
  opacity: 0.3;
}

.pch-popular__strip {
  width: 100%;
  overflow: hidden;
}

.pch-popular__strip img {
  width: 100%;
  height: auto;
  display: block;
}

.pch-features {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.pch-feature-row {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.pch-feature-row--reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.pch-feature-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: #e50955;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(-20deg);
  border: 2px solid #e50955;
  background-color: #1a2238;
  flex-shrink: 0;
  box-shadow: inset 0 0 15px rgba(229, 9, 85, 0.15);
}

.pch-feature-num > span {
  transform: skewX(20deg);
}

.pch-feature-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.pch-feature-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #8c97a5;
  margin: 0;
}

.pch-tentlan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.pch-tentlan-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.pch-tentlan-side {
  display: flex;
  flex-direction: column;
}

.pch-tentlan-side-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.pch-tentlan-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.pch-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.pch-tentlan-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #8c97a5;
}

@media (max-width: 768px) {
  .pch-tentlan-grid {
    grid-template-columns: 1fr;
  }
  .pch-feature-row,
  .pch-feature-row--reverse {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .pch-section-new__title {
    font-size: 1.5rem;
  }
  .pch-section-new__title::before {
    flex: 0 0 30px;
    margin-right: 1rem;
  }
  .pch-section-new__title::after {
    margin-left: 1rem;
  }
}

/* -------------------------------------
   NEW SECTIONS: Abenteuer Alternative & Warum
   ------------------------------------- */

.pch-section-new__subtitle {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #8c97a5;
}

.pch-skew-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pch-skew-item {
  width: 100%;
  max-width: 700px;
  background-color: transparent;
  border: 1px solid #e50955;
  transform: skewX(-20deg);
  padding: 1.25rem 2rem;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(229, 9, 85, 0.1);
  transition: background-color 0.3s ease;
}

.pch-skew-item:hover {
  background-color: rgba(229, 9, 85, 0.05);
}

.pch-skew-item span {
  display: block;
  transform: skewX(20deg);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.pch-section-new__footer-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #8c97a5;
}

/* Warum diese Plattformen überzeugen */
.pch-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-block: 2rem;
}

.pch-why-col {
  display: flex;
  flex-direction: column;
}

.pch-why-card {
  border: 1px solid #e50955;
  background-color: transparent;
  padding: 2rem;
  width: 100%;
  box-shadow: inset 0 0 15px rgba(229, 9, 85, 0.05);
}

.pch-why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.pch-why-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pch-why-card ul li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: #8c97a5;
  line-height: 1.4;
}

.pch-why-card ul li::before {
  content: "•";
  color: #fff; /* in the screenshot the bullet is white/greyish */
  position: absolute;
  left: 0;
  top: 0;
}

.pch-why-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #8c97a5;
  margin: 0;
}

@media (max-width: 992px) {
  .pch-why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .pch-why-col {
    margin-top: 0 !important;
  }
  .pch-why-card {
    margin-top: 0 !important;
  }
  .pch-why-text {
    margin-top: 2rem !important;
  }
  .pch-skew-item {
    transform: skewX(-10deg);
    max-width: 90%;
  }
  .pch-skew-item span {
    transform: skewX(10deg);
  }
}

/* -------------------------------------
   NEW SECTION: Bewertung der besten Spieleseiten
   ------------------------------------- */

.pch-section-new__title--center {
  justify-content: center;
}
.pch-section-new__title--center::before,
.pch-section-new__title--center::after {
  flex: 0 1 100px;
  opacity: 0.5;
}

.pch-rating-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pch-rating-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
}

.pch-rating-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.pch-rating-number {
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 900;
  color: #e50955;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  z-index: 2;
  pointer-events: none;
  line-height: 1;
}

.pch-rating-image-skew {
  display: block;
  width: 240px;
  height: 120px;
  transform: skewX(-20deg);
  overflow: hidden;
  position: relative;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.pch-rating-image-skew:hover {
  transform: skewX(-20deg) scale(1.05);
  filter: brightness(1.1);
}

.pch-rating-image-skew img {
  width: calc(100% + 50px);
  height: 100%;
  object-fit: cover;
  transform: skewX(20deg);
  margin-left: -25px;
  display: block;
}

.pch-rating-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pch-rating-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #8c97a5;
  margin: 0;
}

.pch-btn-square {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #ff4d79, #e50955);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  text-decoration: none;
  width: 90px;
  height: 90px;
  border-radius: 4px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(229, 9, 85, 0.3);
  padding: 0.5rem;
}

.pch-btn-square span {
  display: block;
}

.pch-btn-square:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(229, 9, 85, 0.5);
  color: #fff;
}

@media (max-width: 768px) {
  .pch-rating-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
  }
  .pch-rating-row:last-child {
    border-bottom: none;
  }
  .pch-rating-image-wrapper {
    justify-content: center;
  }
  .pch-rating-number {
    left: 0;
  }
  .pch-btn-square {
    width: auto;
    height: auto;
    padding: 1rem 2rem;
    flex-direction: row;
    gap: 0.3rem;
    margin: 0 auto;
  }
  .pch-btn-square span {
    display: inline;
  }
}

/* -------------------------------------
   NEW SECTIONS: CrossOut, Spielwelten, FAQ, Crystal Saga
   ------------------------------------- */

/* CrossOut */
.pch-crossout-banner {
  width: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  border-radius: 4px;
}

.pch-crossout-card {
  background: rgba(16, 21, 38, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  border-radius: 8px;
  max-width: 900px;
}

.pch-crossout-card img {
  width: 200px;
  height: auto;
  border-radius: 4px;
}

.pch-crossout-info {
  flex: 1;
}

.pch-crossout-info h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.pch-crossout-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

/* Entdecken Sie beliebte Spielwelten */
.pch-discover-strips {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.pch-discover-strips img {
  width: 100%;
  height: auto;
  display: block;
}

/* Häufig gestellte Fragen */
.pch-faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pch-faq-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.pch-faq-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px #e50955;
  line-height: 1;
  margin-top: 0.2rem;
}

.pch-faq-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pch-faq-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #8c97a5;
  margin: 0;
}

/* Crystal Saga: Nova */
.pch-crystal-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: flex-start;
}

.pch-crystal-left,
.pch-crystal-right {
  display: flex;
  flex-direction: column;
}

.pch-crystal-main-img,
.pch-crystal-side-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.pch-crystal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.pch-crystal-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #8c97a5;
  margin: 0;
}

@media (max-width: 768px) {
  .pch-crossout-banner {
    padding: 1rem;
    min-height: 300px;
  }
  .pch-crossout-card {
    flex-direction: column;
    text-align: center;
  }
  .pch-crossout-card img {
    width: 100%;
    max-width: 200px;
  }
  .pch-crystal-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------
   NEW SECTIONS: Contact, Editor's Auswahl, CTA
   ------------------------------------- */

/* Contact Form */
.pch-contact-form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pch-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pch-form-input,
.pch-form-textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(229, 9, 85, 0.4);
  padding: 1rem 1.5rem;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  border-radius: 2px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.pch-form-input:focus,
.pch-form-textarea:focus {
  outline: none;
  border-color: #e50955;
  box-shadow: 0 0 10px rgba(229, 9, 85, 0.2);
}
.pch-form-input::placeholder,
.pch-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.pch-form-submit-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.pch-btn-square[type="submit"] {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Editor's Auswahl 2026 */
.pch-editor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.pch-editor-card {
  display: flex;
  gap: 1.5rem;
  background: #0f172a;
  border-radius: 4px;
  padding: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.02);
}
.pch-editor-card img {
  width: 160px;
  height: 160px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}
.pch-editor-card-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.pch-editor-card-content p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #8c97a5;
  margin: 0;
}

/* Bereit für Ihr nächstes Abenteuer? (CTA) */
.pch-cta-box {
  border: 1px solid rgba(229, 9, 85, 0.5);
  transform: skewX(-15deg);
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  background: transparent;
  box-shadow: inset 0 0 30px rgba(229, 9, 85, 0.05);
}
.pch-cta-inner {
  transform: skewX(15deg);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pch-cta-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
}
.pch-cta-title::before,
.pch-cta-title::after {
  content: "";
  flex: 0 1 100px;
  height: 1px;
  background-color: #e50955;
  opacity: 0.5;
  margin: 0 1.5rem;
}
.pch-cta-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #8c97a5;
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}
.pch-btn-cta {
  width: auto;
  min-width: 140px;
  min-height: 140px;
  padding: 1.5rem;
}

@media (max-width: 992px) {
  .pch-editor-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .pch-form-row {
    grid-template-columns: 1fr;
  }
  .pch-editor-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .pch-cta-box {
    transform: skewX(-5deg);
    padding: 3rem 1rem;
  }
  .pch-cta-inner {
    transform: skewX(5deg);
  }
  .pch-cta-title {
    font-size: 1.5rem;
  }
  .pch-cta-title::before,
  .pch-cta-title::after {
    display: none;
  }
  .pch-btn-cta {
    min-height: auto;
    padding: 1rem 2rem;
  }
}
