/* Desktop popups styling */
.desktop-popups {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 40;
}

/* --- Call Overlay Styles --- */
.call-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 32px;
  overflow: hidden;
}

.call-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.call-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.call-header {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
}

.call-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.call-close:hover {
  background: rgba(255, 255, 255, 0.4);
}

.call-info {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
}

.call-name {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.call-status {
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.call-actions {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 80px;
  z-index: 10;
}

.call-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.call-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: transform 0.2s ease;
}

.call-btn:hover {
  transform: scale(1.1);
}

/* Glasmorphismus-Stil für die Anruf-Buttons */
.call-btn.call-decline,
.call-btn.call-accept {
  /* Subtiler Farbverlauf mit Transparenz für Glas-Effekt */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Heller Rand */
  backdrop-filter: blur(10px); /* Weichzeichner für den Hintergrund */
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.2), /* Schatten für Tiefe */
    inset 0 1px 0 rgba(255, 255, 255, 0.2); /* Innerer Glanz oben */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Spezifische Farben */
.call-btn.call-decline {
  /* Rot für Ablehnen */
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.5), rgba(255, 59, 48, 0.3));
}

.call-btn.call-accept {
  /* Grün für Annehmen */
  background: linear-gradient(135deg, rgba(52, 199, 89, 0.5), rgba(52, 199, 89, 0.3));
}

/* Hover-Effekte für Interaktion */
.call-btn.call-decline:hover,
.call-btn.call-accept:hover {
  transform: scale(1.1); /* Leichtes Vergrößern */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); /* Stärkerer Schatten */
}

.call-icon {
  width: 28px;
  height: 28px;
  display: block;
  color: #fff;
}

.call-label {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.call-footer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.call-footer p {
  margin: 0;
}

/* --- Popup Glass Styles --- */

.popup-card {
  position: absolute;
  width: 18rem; /* ~288px */
  padding: 24px;
  border-radius: 18px;
  
  /* Glas-Basis */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.3),          /* Tiefer Schatten */
    inset 0 1px 0 rgba(255, 255, 255, 0.2); /* Helle Oberkante */
  
  transform: rotate(-3deg);
  transition: transform 0.25s ease;
  pointer-events: auto;
  z-index: 50; /* Sicherstellen, dass sie über allem liegen */
}

.popup-card:hover { 
  transform: rotate(-3deg) scale(1.03); 
}

/* Brand Color Glas */
.popup-clover {
  background: linear-gradient(135deg, rgba(235, 89, 90, 0.2), rgba(235, 89, 90, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Black Glas */
.popup-black {
  background: linear-gradient(135deg, rgba(40, 40, 40, 0.2), rgba(10, 10, 10, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: rotate(3deg);
}

.popup-black:hover {
  transform: rotate(3deg) scale(1.03);
}

.popup-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: inherit;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.8;
}

.popup-close-btn:hover { opacity: 1; }

.popup-content { display: grid; justify-items: center; text-align: center; gap: 10px; }

.popup-avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.2);
}

.popup-title { font-weight: 700; font-size: 20px; }
.popup-text { font-size: 13px; line-height: 1.4; max-width: 240px; }

.popup-arrows { display: flex; gap: 8px; margin-top: 6px; }
.popup-arrows span { animation: popup-bounce 1.8s infinite; display: inline-block; }
.popup-arrows span:nth-child(2) { animation-delay: 0.2s; }
.popup-arrows span:nth-child(3) { animation-delay: 0.4s; }

@keyframes popup-bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-6px);} 60% {transform: translateY(-3px);} }
:root {
  --color-primary-100: #F8D7D7;
  --color-primary-300: #F2A0A1;
  --color-primary-500: #EB595A;
  --color-primary-600: #C94849;
  --color-primary-700: #A33939;

  --color-neutral-100: #F5F5F5;
  --color-neutral-300: #E0E0E0;
  --color-neutral-800: #1A1A1A;
  --color-neutral-900: #0F0F0F;

  --color-surface: #FFFFFF;
  --color-surface-muted: #F7F7F7;
  --shadow-strong: 0 25px 60px rgba(0, 0, 0, 0.5);

  /* Glassmorphism Variables */
  --glass-bg: rgba(15, 15, 15, 0.65);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(20px);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  /* Standard (Dark Mode) */
  --bg-logo-url: url('assets/logo-bm-white.svg');
  --bg-logo-opacity: 0.03; /* 3% Deckkraft */
}

body.theme-light {
  /* Light Mode: Nutze das WEISSE Logo */
  --bg-logo-url: url('assets/logo-bm-white.svg');
  --bg-logo-opacity: 0.03;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Logo im Hintergrund */
body::before {
  content: "";
  position: fixed; /* Bleibt beim Scrollen stehen */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Zentriert + leichte Drehung für Dynamik */
  
  width: 90vw;  /* 90% Bildschirmbreite */
  height: 80vh; /* 80% Höhe */
  
  background-image: var(--bg-logo-url);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; /* Logo passt sich an, ohne abgeschnitten zu werden */
  
  opacity: var(--bg-logo-opacity);
  pointer-events: none;
  z-index: -1;
  
  /* Logo weichzeichnen*/
  filter: blur(7px); 
}

body {
  background: var(--color-neutral-800);
  color: var(--color-neutral-100);
  font-family: "Playfair Display", "Segoe UI", system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

body.mode-wide .page-container {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}

.phone-frame {
  width: 375px;
  max-width: 90vw;
  aspect-ratio: 9 / 19.5;
  background: #111;
  border-radius: 38px;
  padding: 18px;
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
}

body.mode-wide .phone-frame {
  width: 100%;
  aspect-ratio: auto;
  max-width: 100%;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  background: transparent;
  margin: 0;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 28px;
  background: #111;
  border-radius: 0 0 25px 25px;
  z-index: 10;
}

body.mode-wide .phone-frame::before {
  display: none;
}

.phone-content {
  width: 100%;
  height: 100%;
  background: var(--color-neutral-900);
  border-radius: 32px;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

body.mode-wide .phone-content {
  border-radius: 0;
  height: auto;
  min-height: 100vh;
}

.scroll-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.mode-wide .scroll-content {
  padding: 0 40px 60px;
  gap: 40px;
}

.scroll-content::-webkit-scrollbar {
  display: none;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  flex-shrink: 0;
  z-index: 40;
  padding: 30px 20px 0;
  background: var(--color-neutral-900);
}

body.mode-wide .phone-header {
  padding: 30px 40px 0;
}

.logo-wrap {
  margin: 0;
}

.logo-img {
  height: 18px;
  width: auto;
  display: block;
}

.menu-icon {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-neutral-100);
}

.menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 100px; /* Platz unter der Header-Bar */
  align-items: center; /* Inhalte horizontal zentriert */
}
 
.menu-panel {
  position: absolute;
  inset: 0;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), inset 0 0 0 0.5px rgba(0, 0, 0, 0.3);
  border-radius: 32px;
  padding: 24px 18px;
  display: grid;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 20;
}

.menu-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}



.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-logo {
  display: flex;
  align-items: center;
}

/* Close-Button im Overlay entfernt; X wird im Header gezeigt */

.menu-links {
  display: grid;
  gap: 40px;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 24px;
}

.menu-links a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.menu-cta {
  margin-top: 250px;          /* schiebt den CTA vor die Socials nach unten */
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  width: max-content;       /* kompakte Breite statt Streckung */
}

.menu-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  padding-bottom: 10px;
}

.menu-socials a {
  color: #fff;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
}

.hero-fold {
  display: grid;
  align-content: start;
  gap: 18px;
  padding-top: 32px;
  margin-bottom: 32px;
}

.hero-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
}

.hero-section h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--color-neutral-100);
  letter-spacing: -0.5px;
}

.title-accent {
  width: 50px;
  height: 4px;
  background: var(--color-primary-500);
  margin: 0 auto;
  border-radius: 2px;
}

.description-section {
  text-align: center;
}

.description-section p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-neutral-100);
  margin: 0;
  font-weight: 400;
}

.rotating-heading-section {
  text-align: center;
}

.rotating-heading-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-neutral-100);
  transition: opacity 0.35s ease;
}

.rotating-heading-section h2.fade {
  opacity: 0;
}

.hero-carousel {
  width: 100%;
  display: grid;
  gap: 12px;
}

.hero-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.hero-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.hero-carousel-track {
  display: flex;
  gap: 12px;
  align-items: stretch;
  padding-bottom: 6px;
}

.hero-carousel-item {
  min-width: 85%;
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-neutral-900);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  aspect-ratio: 1 / 1;
  scroll-snap-align: center;
}

.hero-carousel-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.carousel-cta {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.8px;
  color: var(--color-primary-500);
}

.philosophy-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.philosophy-section h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-neutral-100);
}

.philosophy-intro {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-neutral-100);
}

.footer-card {
  margin-top: 80px;
  background: var(--color-primary-500);
  color: #fff;
  border-radius: 18px;
  padding: 24px 18px 30px;
  display: grid;
  gap: 14px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  position: relative;
}

.footer-hero {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  background: #000;
  margin: -60px auto 0;
  position: relative;
  z-index: 5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.footer-title {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  margin: 0;
}

.footer-btn {
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: 600;
}

.footer-socials a {
  color: #fff;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

.footer-meta {
  display: grid;
  gap: 6px;
  font-size: 12px;
  line-height: 1.4;
}

.footer-legal,
.footer-contact {
  color: #fff;
}

.text-carousel {
  width: 100%;
}

.text-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.text-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.hero-carousel-viewport.is-dragging,
.text-carousel-viewport.is-dragging {
  cursor: grabbing;
}

.text-carousel-track {
  display: flex;
  gap: 12px;
  padding-bottom: 6px;
}

.text-card {
  min-width: 85%;
  background: var(--color-neutral-800);
  border-radius: 14px;
  padding: 16px;
  color: var(--color-neutral-100);
  display: grid;
  gap: 8px;
  scroll-snap-align: center;
}

.text-card h3 {
  font-size: 14px;
  letter-spacing: 0.4px;
}

.text-card p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.theme-light .phone-content {
  background: var(--color-surface);
}

.theme-light .phone-header {
  background: var(--color-surface);
}

.theme-light .phone-header h1,
.theme-light .menu-icon,
.theme-light .hero-section h2,
.theme-light .rotating-heading-section h2,
.theme-light .philosophy-section h2 {
  color: #000;
}

.theme-light .description-section p,
.theme-light .philosophy-intro {
  color: #333;
}

.theme-light .menu-panel a {
  color: #000;
}

.theme-light .hero-carousel-item {
  background: var(--color-surface);
}

.theme-light .text-card {
  background: var(--color-surface-muted);
  color: #000;
}

.control-dock {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}

.control-dock button {
  width: 44px;
  height: 44px;
  border-radius: 12px;

  /* Dark Mode: Subtiler Verlauf + Innenkante für 3D-Effekt */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.3),       /* Außenschatten */
    inset 0 1px 0 rgba(255, 255, 255, 0.1);  /* Glanzkante oben innen */

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  display: grid;
  place-items: center;
}

/* Light Mode: Milchglas-Optik mit starker weißer Reflexion */
body.theme-light .control-dock button {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9); /* Starke Glanzkante */
  color: #111;
}

.control-dock button:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  transform: translateY(-2px);
}

.icon {
  width: 20px;
  height: 20px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: #fff;
  filter: none;
}

.theme-light .control-dock .icon {
  color: #111;
}

.icon-sun {
  /* White stroke for dark mode */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='%23ffffff' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41'/%3E%3C/svg%3E");
}

.icon-frame {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='%23ffffff' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='3' width='14' height='18' rx='2' ry='2'/%3E%3Cpath d='M9 21h6'/%3E%3C/svg%3E");
}

.theme-light .icon-sun {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='%23000000' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41'/%3E%3C/svg%3E");
}

.theme-light .icon-frame {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='%23000000' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='3' width='14' height='18' rx='2' ry='2'/%3E%3Cpath d='M9 21h6'/%3E%3C/svg%3E");
}


.popup-media {
  display: grid;
  place-items: center;
  padding: 16px;
  color: #000;
  background: var(--color-surface-muted);
  font-size: 14px;
}

@media (max-width: 768px) {
  body {
    background: var(--color-neutral-900);
    align-items: flex-start;
    justify-content: flex-start;
  }

  body.theme-light {
    background: var(--color-surface);
  }

  .page-container {
    padding: 0;
    display: block;
  }

  .phone-frame {
    margin: 0;
    width: 100%;
    max-width: 100%;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    aspect-ratio: auto;
  }

  .phone-frame::before {
    display: none;
  }

  .phone-content {
    border-radius: 0;
    padding: 32px 16px 40px;
    background: var(--color-neutral-900);
    min-height: 100vh;
  }

  .theme-light .phone-content {
    background: var(--color-surface);
  }

  /* Popups in Desktop-Ansicht ausblenden */
  #desktop-popups {
    display: none;
  }
}

.simple-page {
  display: grid;
  gap: 16px;
}

.simple-page h2 {
  font-size: 24px;
  color: var(--color-neutral-100);
}

.simple-page p {
  color: var(--color-neutral-100);
  line-height: 1.6;
}

.theme-light .simple-page h2,
.theme-light .simple-page p {
  color: #111;
}