/* Mobile Styles für LumiVitae - Optimierte Version */

/* Critical CSS für schnelles Rendern in Mobilgeräten */
:root {
  --primary-color: #0078b4;
  --accent-color: #FFC107;
  --gold-color: #e6b800;
}

body.mobile-view {
  background-color: #030b35 !important;
  color: #fff;
  font-family: 'Arial', sans-serif;
  overflow-x: hidden;
  font-size: 16px !important;
  margin: 0;
  padding: 0;
}

/* Pseudo-Element für fixiertes Hintergrundbild - mit Verzögerung */
body.mobile-view::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background-color: #041a42;
  background-image: none; /* Hintergrundbild wird später per JS geladen */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.9;
  pointer-events: none;
  transition: background-image 0.5s ease;
}

/* Basis-Layout für sofortige Anzeige */
.container {
  width: 97%;
  max-width: 97%;
  margin: 0 auto;
  padding: 15px 0;
  box-sizing: border-box;
}

/* Defer-loading der vollständigen CSS-Datei */
@import url('styles.css') layer(full-styles);

/* Rest der Mobile Styles - wird nach den kritischen Styles geladen */
@layer full-styles {
  /* Importiere die gemeinsamen Styles */
  @import url('styles.css');

  /* Mobile-spezifische Stile */
  @media (max-width: 768px) {
    /* Allgemeines Layout und Hintergrund - nur Hintergrundfarbe, Bild wird durch Pseudo-Element hinzugefügt */
    body.mobile-view {
      background-color: #030b35 !important;
      background-image: none !important;
      background-attachment: scroll !important;
    }
    
    /* Lade-Animation */
    body.mobile-view.loading {
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    body.mobile-view:not(.loading) {
      opacity: 1;
    }
    
    /* Hero-Section - Hintergrundbild wird für konsistentes Layout entfernt */
    body.mobile-view .hero-section {
      background-image: none !important;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      text-align: center;
      overflow: hidden;
    }
    
    /* Video-Container für Hero-Section auf Mobile */
    body.mobile-view .hero-section .video-container {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      margin: 0 auto 15px;
      position: relative;
      width: 100%;
      padding-top: 56.25%; /* 16:9 Aspect Ratio */
      background-color: #000;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Mobile Scroll Indicator */
    body.mobile-view .mobile-scroll-indicator {
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      transition: opacity 0.3s ease;
      position: absolute;
      bottom: 15%;
      left: 0;
      right: 0;
      z-index: 10;
      padding: 20px 0;
    }
    
    body.mobile-view.scrolled .mobile-scroll-indicator {
      opacity: 0;
      transform: translateY(20px);
      pointer-events: none;
    }
    
    body.mobile-view .scrolled .mobile-scroll-indicator {
      opacity: 0;
      transform: translateY(20px);
      pointer-events: none;
    }
    
    /* Feature Section auf Mobile - immer sichtbar */
    body.mobile-view .features-section {
      padding: 10px 0;
      opacity: 1;
      visibility: visible;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      margin-top: 0; /* Normale Position, direkt unter dem Hero-Bereich */
    }
    
    body.mobile-view.content-visible .features-section {
      opacity: 1;
      visibility: visible;
      margin-top: 0;
    }
    
    /* Hauptvideo über den Feature-Boxen auf Mobile - initial sichtbar */
    body.mobile-view .video-container.main-video {
      width: 100%;
      margin-bottom: 25px;
      padding-top: 56.25%; /* Standard 16:9 Seitenverhältnis für Mobile */
      display: block !important;
      opacity: 1;
      transition: opacity 0.5s ease;
      margin-top: 0;
      visibility: visible;
    }
    
    body.mobile-view.content-visible .video-container.main-video {
      display: block !important;
      opacity: 1;
      margin-top: 0;
      visibility: visible;
    }
    
    body.mobile-view .hero-section .container {
      position: relative;
      padding: 0 20px;
      width: 100%;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }
    
    /* Zeige alle Sektionen standardmäßig an */
    body.mobile-view .content-section > section:not(.hero-section) {
      opacity: 1;
      visibility: visible;
    }
    
    body.mobile-view.content-visible .content-section > section:not(.hero-section) {
      opacity: 1;
      visibility: visible;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    /* Das zweite Video auch sofort anzeigen */
    body.mobile-view .power-section .video-container {
      display: block !important;
      opacity: 1;
      visibility: visible;
    }

    body.mobile-view.content-visible .power-section .video-container {
      display: block !important;
      opacity: 1;
      visibility: visible;
    }
    
    /* Special Title für Mobile-Ansicht - größere Schrift */
    body.mobile-view .special-title {
      font-size: 2.6rem !important; /* Etwa 30% größer (vorher 2rem) */
      margin-bottom: 2.6rem !important;
      color: white;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
      text-align: center;
      width: 97%;
      max-width: 97%;
      font-weight: 600;
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;
    }
    
    body.mobile-view .website-link {
      text-align: center;
      margin: 20px auto;
      width: 100%;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    body.mobile-view .website-link a {
      display: inline-block;
      padding: 6px 14px;
      background-color: transparent;
      color: white;
      text-decoration: none;
      border: 2px solid white;
      border-radius: 30px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }
    
    body.mobile-view .website-link a:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }
    
    body.mobile-view main {
      padding-top: 0;
      min-height: 100vh;
      position: relative;
    }
    
    body.mobile-view .hero-section {
      padding-top: 0;
      margin-bottom: 0;
    }
    
    body.mobile-view .content-section > section:not(.hero-section) {
      opacity: 0;
      visibility: hidden;
    }
    
    body.mobile-view.content-visible .content-section > section:not(.hero-section) {
      opacity: 1;
      visibility: visible;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    
    /* Mobile Video Container */
    body.mobile-view .video-container {
      margin: 0 auto 25px;
      position: relative;
      width: 100%;
      background-color: #000;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    body.mobile-view .feature-row {
      display: block;
      margin-bottom: 20px;
    }
    
    body.mobile-view .feature-item {
      border-radius: 10px !important;
      padding: 20px !important;
      background: rgba(10, 35, 68, 0.85) !important;
      margin-bottom: 30px !important;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5) !important;
      border: 1px solid rgba(255, 255, 255, 0.2) !important;
      width: 100% !important;
      display: block !important;
      overflow: hidden !important;
      backdrop-filter: blur(8px) !important;
      -webkit-backdrop-filter: blur(8px) !important;
      position: relative !important;
    }
    
    body.mobile-view .feature-image-container {
      height: auto !important;
      margin: 0 auto 20px !important;
      border-radius: 10px !important;
      overflow: hidden !important;
      text-align: center !important;
      max-height: none !important;
      min-height: 140px !important;
      width: 100% !important;
      max-width: 100% !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      background: rgba(0, 15, 30, 0.5) !important;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
      padding: 10px !important;
      border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    body.mobile-view .feature-image {
      max-width: 100% !important;
      height: auto !important;
      border-radius: 6px !important;
      display: block !important;
      margin: 0 auto !important;
      object-fit: contain !important;
      max-height: 200px !important;
      width: 100% !important;
    }
    
    body.mobile-view .feature-info {
      padding: 15px !important;
      background: rgba(0, 20, 40, 0.7) !important;
      border-radius: 8px !important;
      margin-top: 10px !important;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
      border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    body.mobile-view .feature-info h3 {
      font-size: 1.5rem !important;
      margin-bottom: 12px !important;
      color: white !important;
      text-align: center !important;
      font-weight: 600 !important;
      letter-spacing: 1px !important;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) !important;
      position: relative !important;
      padding-bottom: 10px !important;
    }
    
    body.mobile-view .feature-info h3::after {
      content: '' !important;
      position: absolute !important;
      bottom: 0 !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      width: 50px !important;
      height: 2px !important;
      background-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    body.mobile-view .feature-info h4 {
      font-size: 1.2rem !important;
      margin-bottom: 10px !important;
      color: var(--accent-color, #FFC107) !important;
      text-align: center !important;
      font-weight: 500 !important;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
    }
    
    body.mobile-view .feature-info p {
      font-size: 1rem !important;
      line-height: 1.6 !important;
      margin-bottom: 12px !important;
      color: rgba(255, 255, 255, 0.95) !important;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
      text-align: center !important;
    }
    
    body.mobile-view .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
    
    body.mobile-view .video-container.active {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1000;
      background: #000;
      border-radius: 0;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    body.mobile-view .video-container.active iframe {
      position: relative;
      width: 100%;
      height: 56.25vw; /* Maintain 16:9 aspect ratio */
      max-height: 100vh;
      max-width: 177.78vh; /* 16:9 aspect ratio */
    }
    
    body.mobile-view .video-title-overlay {
      top: 20%;
    }
    
    body.mobile-view .video-title-overlay .hero-title {
      font-size: 1.8rem;
    }
    
    body.mobile-view .video-close-btn {
      display: none;
    }
    
    body.mobile-view .video-container.active .video-close-btn {
      display: block;
      position: absolute;
      top: 10px;
      right: 10px;
      width: 36px;
      height: 36px;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      border: none;
      border-radius: 50%;
      font-size: 24px;
      line-height: 36px;
      text-align: center;
      cursor: pointer;
      z-index: 1001;
      transition: background 0.3s ease;
    }
    
    body.mobile-view .video-container.active .video-close-btn:hover {
      background: rgba(255, 0, 0, 0.6);
    }
    
    /* Mini Player für Mobile */
    body.mobile-view .mini-player {
      display: none;
    }
    
    body.mobile-view .mobile-scroll-indicator:hover {
      transform: translateY(5px);
    }
    
    body.mobile-view .scroll-text {
      font-size: 1.2rem;
      color: white;
      margin-bottom: 8px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
      letter-spacing: 1px;
      font-weight: 400;
    }
    
    body.mobile-view .arrow-down {
      font-size: 28px;
      color: white;
      animation: bounce 1.5s infinite;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }
    
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    body.mobile-view .waiting-animation .dot {
      width: 10px;
      height: 10px;
      background-color: #FFC107;
      border-radius: 50%;
      display: inline-block;
      margin: 0 3px;
      opacity: 0;
      animation: mobile-pulse-fade 1.4s infinite ease-in-out;
    }
    
    body.mobile-view .waiting-animation .dot:nth-child(1) {
      animation-delay: 0s;
    }
    
    body.mobile-view .waiting-animation .dot:nth-child(2) {
      animation-delay: 0.2s;
    }
    
    body.mobile-view .waiting-animation .dot:nth-child(3) {
      animation-delay: 0.4s;
    }
    
    @keyframes mobile-pulse-fade {
      0% { opacity: 0; }
      50% { opacity: 1; }
      100% { opacity: 0; }
    }

    /* AI Assistant Section auf Mobilgeräten */
    body.mobile-view .ai-assistant-section {
      padding: 20px 0;
      background: rgba(0, 0, 0, 0.1);
      margin-top: 0 !important; /* Entferne den oberen Rand, da wir den unteren Rand der study-conclusion bereits auf 30px gesetzt haben */
      margin-bottom: 0 !important;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    body.mobile-view .ai-assistant-section .container {
      padding: 15px 10px;
      max-width: 97%;
      width: 97%;
      margin: 0 auto;
    }

    body.mobile-view .ai-assistant-box {
      width: 97% !important;
      max-width: 97% !important;
      margin-left: auto !important;
      margin-right: auto !important;
      box-sizing: border-box !important;
      border-radius: 10px !important;
      padding: 20px !important;
      background: rgba(10, 35, 68, 0.85) !important;
      margin-bottom: 25px !important;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4) !important;
      border: 1px solid rgba(255, 255, 255, 0.15) !important;
      display: block !important;
      overflow: hidden !important;
      backdrop-filter: blur(5px) !important;
      -webkit-backdrop-filter: blur(5px) !important;
    }

    body.mobile-view .ai-box {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      max-height: 80vh;
      overflow-y: auto;
      background: rgba(0, 30, 60, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 15px 15px 0 0;
      padding: 20px;
      transform: translateY(100%);
      transition: transform 0.3s ease-out;
      z-index: 1000;
      margin: 0;
      box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    }

    body.mobile-view .ai-box.active {
      transform: translateY(0);
    }

    body.mobile-view .ai-assistant-intro-container {
      text-align: center;
      padding: 15px;
    }

    body.mobile-view .ai-cta-image {
      max-width: 120px;
      margin: 10px auto 20px;
    }

    body.mobile-view .ai-toggle-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      font-size: 0.95rem;
      margin: 10px auto;
    }

    body.mobile-view .ai-form {
      margin-bottom: 15px;
    }

    body.mobile-view .form-group {
      margin-bottom: 12px;
    }

    body.mobile-view .ai-select,
    body.mobile-view .ai-input {
      font-size: 16px;
      padding: 10px;
    }

    body.mobile-view .ai-button {
      padding: 8px 15px;
      font-size: 0.95rem;
      margin: 5px 1.5% 15px;
      width: calc(97% - 3%);
    }

    body.mobile-view .question-box,
    body.mobile-view .response-box {
      padding: 10px 15px;
      /* max-height entfernt - Box erweitert sich dynamisch */
      font-size: 0.85rem;
      margin: 0 1.5% 15px;
      box-sizing: border-box;
      width: calc(97% - 3%); /* Volle Breite minus das Margin auf beiden Seiten */
    }
  }

  @media (max-width: 480px) {
    body.mobile-view {
      background: linear-gradient(135deg, #000e1f 0%, #001a33 50%, #0a2848 100%);
      background-attachment: fixed;
    }
  }

  @media (max-width: 380px) {
    body.mobile-view {
      background: linear-gradient(135deg, #000e1f 0%, #001a33 50%, #0a2848 100%);
      background-attachment: fixed;
    }
    
    body.mobile-view .ai-box {
      padding: 15px 0;
    }
    
    body.mobile-view .form-group {
      padding: 0 10px;
    }
    
    body.mobile-view .ai-toggle-button {
      min-width: 140px;
      padding: 10px 15px;
      font-size: 0.9rem;
    }
    
    body.mobile-view .question-box,
    body.mobile-view .response-box,
    body.mobile-view .search-container,
    body.mobile-view .ai-disclaimer {
      margin-left: 10px;
      margin-right: 10px;
      width: calc(100% - 20px);
    }
    
    body.mobile-view .ai-button {
      margin-left: 10px;
      margin-right: 10px;
      width: calc(100% - 20px);
    }
  }

  /* Reduzierte Animation für Benutzer, die dies bevorzugen */
  @media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    body.mobile-view {
      transition: none !important;
    }
    
    body.mobile-view .arrow-down {
      animation: none !important;
    }
  }

  /* Überschriften und Absätze für mobile Ansicht */
  @media (max-width: 768px) {
    body.mobile-view * {
      transition-duration: 0.3s;
      transition-timing-function: ease;
    }
    
    body.mobile-view h1::after, 
    body.mobile-view h2::after, 
    body.mobile-view h3::after, 
    body.mobile-view h4::after, 
    body.mobile-view .feature-info h3::after, 
    body.mobile-view .section-title::after {
      width: 60px;
      bottom: -8px;
      height: 2px;
    }
    
    body.mobile-view h1, 
    body.mobile-view h2, 
    body.mobile-view h3, 
    body.mobile-view h4, 
    body.mobile-view .section-title, 
    body.mobile-view .feature-info h3, 
    body.mobile-view .feature-info h4 {
      margin-bottom: 15px;
    }
    
    body.mobile-view .ai-assistant-section {
      padding: 20px 0;
      background: rgba(0, 0, 0, 0.1);
      margin-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    body.mobile-view .ai-assistant-section .container {
      padding: 15px 10px;
      max-width: 97%;
      width: 97%;
      margin: 0 auto;
    }
    
    body.mobile-view .ai-assistant-box {
      background: rgba(0, 30, 68, 0.75);
      border-radius: 10px;
      padding: 15px;
      margin: 0 auto;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      width: 97%;
      max-width: 97%;
    }
    
    body.mobile-view .ai-box {
      margin-top: 25px;
      width: 100%;
      padding: 15px 0;
      box-sizing: border-box;
    }
    
    body.mobile-view .ai-assistant-box .ai-assistant-intro-container {
      display: block;
      margin-top: 15px;
      margin-bottom: 10px;
    }
    
    body.mobile-view .ai-assistant-box .section-title,
    body.mobile-view .ai-box .section-title,
    body.mobile-view .ai-assistant-box h2,
    body.mobile-view .ai-box h2 {
      font-size: 1.6rem;
      margin-bottom: 15px;
      padding-bottom: 10px;
    }
    
    body.mobile-view .ai-assistant-box h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
    }
    
    body.mobile-view .ai-info {
      padding: 10px 0;
      text-align: center;
      margin-bottom: 15px;
    }
    
    body.mobile-view .ai-info p {
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 15px;
      color: rgba(255, 255, 255, 0.9);
    }
    
    body.mobile-view .ai-features {
      list-style: none;
      padding-left: 10px;
      margin-bottom: 20px;
      text-align: left;
    }
    
    body.mobile-view .ai-features li {
      margin-bottom: 8px;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.9);
      display: flex;
      align-items: center;
    }
    
    body.mobile-view .ai-features li i {
      color: var(--accent-color);
      margin-right: 8px;
      font-size: 1rem;
    }
    
    body.mobile-view .revolutionary-content .section-title,
    body.mobile-view .studies-content .section-title,
    body.mobile-view .revolutionary-section h2,
    body.mobile-view .studies-section h2 {
      font-size: 1.5rem;
      padding-bottom: 10px;
      margin-bottom: 20px;
      text-align: center;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }
    
    body.mobile-view .centered-feature {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    
    /* AI Assistant Form Elemente */
    body.mobile-view .ai-select, 
    body.mobile-view .ai-input {
      padding: 10px 15px;
      margin-bottom: 12px;
      width: 100%;
      font-size: 1.2rem !important; /* Erhöht von 0.95rem auf 1.2rem für Konsistenz */
      border: 1px solid rgba(255, 255, 255, 0.25);
      background: rgba(0, 20, 40, 0.6);
    }
    
    /* Anpassungen für das FAQ-Dropdown */
    body.mobile-view .form-group {
      margin-bottom: 15px;
      width: 100%;
      padding: 0 15px; /* Seitliches Padding für die Form-Gruppe */
      box-sizing: border-box;
    }
    
    body.mobile-view .ai-form {
      width: 100%;
    }
    
    body.mobile-view .form-group select.ai-select {
      width: 100%;
      border: 2px solid white;
      border-radius: 8px;
      background-color: rgba(0, 30, 60, 0.8);
      font-size: 1.2rem !important; /* Erhöht von 0.95rem auf 1.2rem für Konsistenz */
      color: white;
      box-sizing: border-box;
    }
    
    body.mobile-view .form-group label {
      display: block;
      margin-bottom: 8px;
      font-size: 1.2rem !important; /* Erhöht von 0.95rem auf 1.2rem für Konsistenz */
      color: rgba(255, 255, 255, 0.95);
      margin-top: 5px; /* Abstand oben vom Label */
      padding-left: 5px; /* Leichter Einzug für bessere Lesbarkeit */
      font-weight: normal;
    }
    
    body.mobile-view .search-container {
      margin: 0 1.5%;
      width: calc(97% - 3%);
      box-sizing: border-box;
    }
    
    body.mobile-view .ai-disclaimer {
      font-size: 0.8rem;
      padding: 10px 15px;
      margin: 15px 1.5% 0;
      width: calc(97% - 3%);
      box-sizing: border-box;
    }
    
    body.mobile-view .waiting-text {
      font-size: 0.9rem;
      line-height: 1.5;
      text-align: center;
    }
    
    body.mobile-view .waiting-text-content {
      display: inline-block;
      border-right: 2px solid rgba(255, 255, 255, 0.5);
      white-space: nowrap;
      overflow: hidden;
      animation: 
        typing 3.5s steps(30, end) infinite,
        blink-caret 0.75s step-end infinite;
    }
    
    body.mobile-view .waiting-animation {
      margin-top: 10px;
      text-align: center;
    }
    
    body.mobile-view .waiting-animation .dot {
      margin: 0 2px;
    }
    
    body.mobile-view .ai-disclaimer {
      font-size: 0.8rem;
      padding: 10px;
      margin-top: 15px;
    }
    
    body.mobile-view .follow-up-input {
      padding: 8px 10px;
      margin: 10px 0;
    }
    
    body.mobile-view .follow-up-button {
      padding: 6px 12px;
      font-size: 0.85rem;
      margin-top: 5px;
    }
    
    /* Fragen-Banner in der unteren rechten Ecke */
    body.mobile-view .question-banner {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 70px;
      height: auto;
      max-height: 70px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      cursor: pointer;
      z-index: 1000;
      border: 2px solid white;
      transition: transform 0.3s ease, opacity 0.3s ease;
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      background-color: transparent;
    }
    
    body.mobile-view .question-banner:hover {
      transform: scale(1.05);
    }
    
    body.mobile-view .question-banner:active {
      transform: scale(0.95);
    }
    
    body.mobile-view .questions-content {
      padding: 15px;
      max-width: 95%;
    }
    
    body.mobile-view .questions-content h2 {
      font-size: 1.5rem !important; /* Vergrößert für bessere Überschriften */
      margin-bottom: 15px;
      color: white;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }
    
    body.mobile-view .questions-content h3 {
      font-size: 1.3rem !important; /* Vergrößert für bessere Überschriften */
      margin-bottom: 12px;
      color: var(--accent-color);
    }
    
    body.mobile-view .questions-content p {
      font-size: 1.2rem !important; /* Angepasst an die Größe in other-content p */
      line-height: 1.6 !important;
      margin-bottom: 12px !important;
      color: rgba(255, 255, 255, 0.95) !important;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    }
    
    body.mobile-view .questions-content .ai-features {
      padding-left: 5px;
      margin-bottom: 15px;
    }
    
    body.mobile-view .questions-content .ai-features li {
      margin-bottom: 8px;
      font-size: 1.2rem !important; /* Angepasst an die Größe in other-content p */
      color: rgba(255, 255, 255, 0.95) !important;
    }
    
    body.mobile-view .modal-close {
      top: 10px;
      right: 10px;
      width: 30px;
      height: 30px;
      font-size: 20px;
      line-height: 30px;
    }
    
    /* Bilder in der AI-Sektion */
    body.mobile-view .ai-cta-image,
    body.mobile-view .ai-cta img {
      max-width: 160px;
      margin: 15px auto;
      display: block;
      width: auto;
      height: auto;
    }
    
    body.mobile-view .ai-cta-image {
      max-width: 120px;
      width: auto;
      height: auto;
      margin: 10px auto 20px; /* Vergrößerter Abstand unten auf 20px */
    }
    
    body.mobile-view .ai-toggle-button {
      width: auto;
      min-width: 160px;
      margin: 0 auto;
      padding: 12px 18px;
      font-size: 0.95rem;
      font-weight: 600;
      white-space: nowrap;
      display: inline-block;
      text-align: center;
    }
    
    body.mobile-view .ai-toggle-button span {
      white-space: nowrap;
      display: block;
      text-align: center;
      width: 100%;
    }
  }

  body.mobile-view .feature-info h4, 
  body.mobile-view .feature-info p {
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
  }

  body.mobile-view .study-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--accent-color);
  }

  body.mobile-view .studies-section {
    padding: 10px 0;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  body.mobile-view .power-section {
    padding: 0;
    margin-top: 0;
  }

  body.mobile-view .power-section .container {
    padding: 20px 10px;
  }

  /* Das zweite Video ebenfalls verstecken */
  body.mobile-view .power-section .video-container {
    display: none !important;
    opacity: 0;
    visibility: hidden;
  }

  body.mobile-view.content-visible .power-section .video-container {
    display: block !important;
    opacity: 1;
    visibility: visible;
  }

  /* Fragen-Banner in der unteren rechten Ecke - Mobile-spezifische Styles */
  body.mobile-view .question-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: auto;
    max-height: 70px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    z-index: 1000;
    border: 2px solid white;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: transparent;
  }

  body.mobile-view .question-banner:hover {
    transform: scale(1.05);
  }

  body.mobile-view .question-banner:active {
    transform: scale(0.95);
  }

  /* Spezielle Darstellung auf sehr kleinen Bildschirmen */
  @media (max-width: 380px) {
    body.mobile-view .question-banner {
      width: 60px;
      max-height: 60px;
      bottom: 15px;
      right: 15px;
    }
  }

  /* Stelle sicher, dass das Banner auch bei Querformat angezeigt wird */
  @media (orientation: landscape) {
    body.mobile-view .question-banner {
      width: 70px;
      max-height: 70px;
      bottom: 10px;
      right: 10px;
    }
  }

  /* Content-Container für Features Section */
  body.mobile-view .features-section .container {
    padding: 20px 15px;
    max-width: 97%;
    width: 97%;
    margin: 0 auto;
  }

  body.mobile-view .centered-feature {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /* Ersetzen der duplizierten Feature-Item-Regel */
  body.mobile-view .revolutionary-content,
  body.mobile-view .studies-content,
  body.mobile-view .ai-assistant-box,
  body.mobile-view .study-card {
    margin-bottom: 20px;
  }

  /* 
    Hinweis: Die ursprüngliche Feature-Item-Regel wurde entfernt
    und durch eine aktualisierte Version am Anfang der CSS ersetzt,
    die ein desktop-ähnliches Aussehen für die mobile Ansicht bietet.
  */
    
  body.mobile-view .revolutionary-content .section-title, 
  body.mobile-view .ai-features li i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 1rem;
  }

  /* Study-Cards und andere Content-Boxen auf Mobile */
  body.mobile-view .study-card {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    margin-bottom: 30px !important; /* Mehr Abstand zwischen den Karten */
    overflow: visible !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    width: 97% !important;
    max-width: 97% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Entferne die Wellen-Separatoren */
  body.mobile-view .study-wave-separator {
    display: none !important;
  }

  /* Anpassung für die innere Study-Card */
  body.mobile-view .study-card-inner {
    border-radius: 12px !important;
    padding: 20px !important;
    background: rgba(10, 35, 68, 0.95) !important; /* Dunkleres, weniger transparentes Blau */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6) !important; /* Stärkerer Schatten */
    border: 1px solid rgba(255, 255, 255, 0.2) !important; /* Hellerer Rand */
    display: block !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    width: 100% !important;
  }

  body.mobile-view .study-card h3 {
    font-size: 1.3rem !important;
    color: var(--accent-color, #FFC107) !important;
    margin-bottom: 15px !important;
    text-align: center !important;
    font-weight: 600 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) !important; /* Stärkerer Textschatten */
    position: relative !important;
    padding-bottom: 10px !important;
  }

  body.mobile-view .study-card p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.95) !important; /* Hellerer Text */
    margin-bottom: 15px !important;
    text-align: center !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5) !important; /* Leichter Textschatten für bessere Lesbarkeit */
  }

  /* Korrekte Farbdarstellung für Überschriften und Icons */  
  body.mobile-view .revolutionary-content .section-title, 
  body.mobile-view .ai-features li i {
    color: var(--accent-color) !important;
    margin-right: 8px;
    font-size: 1rem;
  }

  /* === Spezifische Anpassungen für mobile Landscape-Ansicht (iPhone, etc.) === */
  @media (max-width: 924px) and (orientation: landscape) {
    /* Hintergrundbilder für die mobile Landscape-Ansicht */
    body.mobile-view {
      background-color: #041a42 !important;
      position: relative !important;
      overflow-x: hidden !important;
    }
    
    /* Entferne das standard mobile background */
    body.mobile-view::before {
      display: none !important;
    }
    
    /* Sehr spezifische Regeln für iPhone und andere mobile Geräte im Landscape-Modus */
    html body.mobile-view .bg-left,
    body.mobile-view[class] .bg-left,
    body.mobile-view .bg-left[class],
    html[class] body.mobile-view .bg-left,
    body.mobile-view div.bg-left {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      width: 50% !important;
      height: 100% !important;
      background-image: url('../images/green.webp') !important;
      background-size: contain !important;
      background-position: left center !important;
      background-repeat: no-repeat !important;
      transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1) !important;
      z-index: -2 !important;
      will-change: transform !important;
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
    
    body.mobile-view .bg-gradient {
      position: fixed !important;
      top: 0 !important;
      left: 62% !important;
      width: 20% !important;
      height: 100% !important;
      background-image: linear-gradient(to right, 
        transparent 0%, 
        rgba(255,255,255,0.1) 40%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0.1) 60%, 
        transparent 100%
      ) !important;
      transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1) !important;
      z-index: -1 !important;
      will-change: transform !important;
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
    
    body.mobile-view .bg-right {
      position: fixed !important;
      top: 0 !important;
      right: 0 !important;
      width: 100% !important;
      height: 100% !important;
      background-image: url('../images/lumi-sabine-breit.jpeg') !important;
      background-size: auto 100% !important;
      background-position: right center !important;
      background-repeat: no-repeat !important;
      z-index: -3 !important;
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
    
    /* Scroll-Effekt für mobile Landscape-Ansicht */
    body.mobile-view.scrolled .bg-left {
      transform: translateX(-30%) !important;
    }
    
    body.mobile-view.scrolled .bg-gradient {
      transform: translateX(30%) !important;
    }
    
    /* Verbessertes Layout für mobile Landscape-Ansicht */
    body.mobile-view .hero-section {
      min-height: 140vh !important; /* Höher als Viewport für Scroll-Effekt */
    }
    
    /* Anpassungen für bessere Leistung */
    body.mobile-view img {
      max-width: 100% !important;
      height: auto !important;
      transform: translateZ(0) !important;
      -webkit-transform: translateZ(0) !important;
      will-change: transform !important;
    }
    
    /* Verbesserung der Feature-Boxen auf kleinen Querformat-Bildschirmen */
    body.mobile-view .feature-item {
      width: 97% !important;
      margin-bottom: 20px !important;
    }
  }

  /* === Spezifische Anpassungen für Mobile Hochkant === */
  @media (max-width: 768px) and (orientation: portrait) {
    /* Hintergrundbild für die mobile Hochkant-Ansicht */
    body.mobile-view, body.mobile-portrait {
      background-color: #041a42 !important; /* Sehr dunkles Blau als Fallback */
      background-image: none !important; /* Kein Bild direkt auf body, stattdessen ::before-Element */
      font-size: 16px !important; /* Basis-Schriftgröße erhöhen */
    }
    
    /* Video-Container und Feature-Boxen auf gleiche Breite setzen */
    body.mobile-view .video-container,
    body.mobile-view .power-section .video-container,
    body.mobile-view .hero-section .video-container,
    body.mobile-view .feature-item,
    body.mobile-view .study-card,
    body.mobile-view .revolutionary-content,
    body.mobile-view .studies-content,
    body.mobile-view .ai-assistant-box {
      width: 97% !important;
      max-width: 97% !important;
      margin-left: auto !important;
      margin-right: auto !important;
      box-sizing: border-box !important;
    }
    
    /* Container für den einheitlichen Look */
    body.mobile-view .features-section .container,
    body.mobile-view .power-section .container,
    body.mobile-view .revolutionary-section .container,
    body.mobile-view .studies-section .container,
    body.mobile-view .ai-assistant-section .container {
      padding: 20px 0 !important;
      width: 97% !important;
      max-width: 97% !important;
      margin: 0 auto !important;
    }
    
    /* Optionale Anpassung für Konsistenz */
    body.mobile-view .centered-feature {
      width: 100% !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }
    
    /* Box-Styling für die Boxen wie im Bild */
    body.mobile-view .feature-item,
    body.mobile-view .revolutionary-content,
    body.mobile-view .studies-content,
    body.mobile-view .ai-assistant-box {
      border-radius: 12px !important;
      padding: 20px !important;
      background: rgba(10, 35, 68, 0.85) !important;
      margin-bottom: 25px !important;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4) !important;
      border: 1px solid rgba(255, 255, 255, 0.15) !important;
      display: block !important;
      overflow: hidden !important;
      backdrop-filter: blur(5px) !important;
      -webkit-backdrop-filter: blur(5px) !important;
      width: 97% !important;
      max-width: 97% !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }
    
    /* Anpassung für die äußere Study-Card */
    body.mobile-view .study-card {
      background: transparent !important;
      padding: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      border: none !important;
      margin-bottom: 30px !important; /* Mehr Abstand zwischen den Karten */
      overflow: visible !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      width: 97% !important;
      max-width: 97% !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }
    
    /* Anpassung für die innere Study-Card */
    body.mobile-view .study-card-inner {
      border-radius: 12px !important;
      padding: 20px !important;
      background: rgba(10, 35, 68, 0.9) !important;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4) !important;
      border: 1px solid rgba(255, 255, 255, 0.15) !important;
      display: block !important;
      overflow: hidden !important;
      backdrop-filter: blur(8px) !important;
      -webkit-backdrop-filter: blur(8px) !important;
      width: 100% !important;
    }
    
    /* Entferne die Wellenlinie-Anpassungen */
    body.mobile-view .study-wave-separator {
      display: none !important;
    }
    
    /* Spezielle Überschriften wie im Bild */
    body.mobile-view .feature-info h3,
    body.mobile-view .study-card h3,
    body.mobile-view .revolutionary-content .section-title,
    body.mobile-view .studies-content .section-title {
      font-size: 1.7rem !important;
      text-align: center !important;
      color: #FFFFFF !important;
      margin-bottom: 15px !important;
      font-weight: 600 !important;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
      position: relative !important;
      padding-bottom: 15px !important;
      padding-top: 5px !important;
      text-transform: uppercase !important;
      letter-spacing: 1px !important;
    }
    
    /* Untertitel/Subtitles wie "BALM FOR THE EYES" */
    body.mobile-view .feature-info h4 {
      font-size: 1.3rem !important;
      margin-bottom: 15px !important;
      color: #FFC107 !important; /* Gold/Gelb Akzentfarbe */
      text-align: center !important;
      font-weight: 500 !important;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
      text-transform: uppercase !important;
      letter-spacing: 1px !important;
    }
    
    /* Textgröße in den Feature-Boxen und Abschnitten */
    body.mobile-view .feature-info p,
    body.mobile-view .revolutionary-content p,
    body.mobile-view .studies-content p,
    body.mobile-view .study-card p {
      font-size: 1.2rem !important; /* Größer für bessere Lesbarkeit */
      line-height: 1.6 !important;
      margin-bottom: 15px !important;
      color: rgba(255, 255, 255, 0.95) !important;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
      text-align: center !important;
    }
    
    /* Quelle-Text in Study-Cards */
    body.mobile-view .study-card .study-source {
      font-size: 1rem !important;
      color: rgba(255, 255, 255, 0.7) !important;
      text-align: center !important;
      font-style: italic !important;
      margin-top: 10px !important;
      padding-top: 10px !important;
      border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
    
    /* Study-Card Icon */
    body.mobile-view .study-card .study-icon {
      font-size: 2.3rem !important;
      color: var(--accent-color, #FFC107) !important;
      text-align: center !important;
      margin-bottom: 15px !important;
      display: block !important;
    }
    
    /* iOS-spezifische Anpassungen */
    @supports (-webkit-touch-callout: none) {
      body.mobile-view, body.mobile-portrait {
        background-color: #041a42 !important;
        background-image: none !important; /* Kein direktes Hintergrundbild */
        background-attachment: scroll !important; /* iOS hat Probleme mit fixed */
        min-height: 100vh !important;
        height: -webkit-fill-available !important; /* iOS-spezifische Höhenanpassung */
      }
      
      /* Hero-Section Anpassungen für iOS */
      body.mobile-view .hero-section, body.mobile-portrait .hero-section {
        background-attachment: scroll !important; 
        min-height: 100vh !important;
        height: -webkit-fill-available !important;
      }
      
      /* Anpassen des z-index-Werts für das Hintergrundbild, damit es wirklich im Hintergrund bleibt */
      body.mobile-view::before, body.mobile-portrait::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -10; /* Niedrigerer z-index, damit es definitiv unter dem Content bleibt */
        background: #041a42 url('../images/green.webp') !important;
        background-size: cover !important; /* Ändert zu cover statt 100% auto */
        background-position: center center !important;
        background-repeat: no-repeat !important;
      }
    }
    
    /* Special Title für Mobile-Ansicht - größere Schrift */
    body.mobile-view .special-title {
      font-size: 2.6rem !important; /* Etwa 30% größer (vorher 2rem) */
      margin-bottom: 2.6rem !important;
      color: white;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
      text-align: center;
      width: 97%;
      max-width: 97%;
      font-weight: 600;
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;
    }
    
    /* Scroll-Indikator Text vergrößern */
    body.mobile-view .scroll-text {
      font-size: 1.56rem !important; /* 30% größer als 1.2rem */
      margin-bottom: 10px;
    }
    
    /* Feature-Image-Container speziell für die Portrait-Ansicht */
    body.mobile-view .feature-image-container {
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      text-align: center !important;
      margin: 0 auto 20px !important;
      width: 100% !important;
      max-width: 200px !important; /* Begrenze die Breite für bessere Proportionen */
    }
    
    /* Feature-Image in der Feature-Box */
    body.mobile-view .feature-image {
      max-width: 100% !important;
      height: auto !important;
      border-radius: 6px !important;
      display: block !important;
      margin: 0 auto !important;
      object-fit: contain !important;
      object-position: center !important; /* Stellt sicher, dass das Bild mittig ist */
    }
    
    /* Feature-Item Anpassungen für Mobile Portrait */
    body.mobile-view .feature-item {
      text-align: center !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
    }
    
    /* Centered Feature speziell für die Portrait-Ansicht */
    body.mobile-view .centered-feature {
      width: 97% !important;
      max-width: 97% !important;
      margin: 0 auto !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
    }
    
    body.mobile-view .centered-feature .feature-image-container {
      max-width: 200px !important;
      width: 200px !important;
      height: 200px !important;
      margin: 0 auto 20px !important;
      border-radius: 50% !important; /* Kreisförmig für besseres Erscheinungsbild */
      overflow: hidden !important;
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      background: rgba(0, 15, 30, 0.7) !important; /* Etwas dunklerer Hintergrund für besseren Kontrast */
      padding: 0 !important; /* Kein Padding für kreisförmiges Bild */
      border: 2px solid rgba(255, 255, 255, 0.2) !important; /* Subtiler Rahmen */
    }
    
    body.mobile-view .centered-feature .feature-image {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      object-position: center !important;
      transform: scale(0.9) !important; /* Leicht verkleinert für besseren Rand */
    }

    /* Verbesserte Darstellung des Studien-Titels und der Einführung */
    body.mobile-view .studies-content .section-title {
      background: transparent !important;
      box-shadow: none !important;
      border: none !important;
      padding: 0 !important;
      margin-bottom: 0 !important;
      font-size: 1.8rem !important;
    }
    
    body.mobile-view .study-intro {
      background: rgba(10, 35, 68, 0.95) !important;
      border-radius: 12px !important;
      padding: 20px !important;
      margin-bottom: 40px !important;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6) !important;
      border: 1px solid rgba(255, 255, 255, 0.2) !important;
      backdrop-filter: blur(10px) !important;
      -webkit-backdrop-filter: blur(10px) !important;
      width: 97% !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }
    
    body.mobile-view .study-intro .section-title {
      margin-top: 0 !important;
      margin-bottom: 15px !important;
      font-size: 1.8rem !important;
      text-transform: uppercase !important;
      color: white !important;
      letter-spacing: 1px !important;
    }
    
    body.mobile-view .study-intro p {
      font-size: 1.2rem !important;
      line-height: 1.6 !important;
      color: rgba(255, 255, 255, 0.95) !important;
      text-align: center !important;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5) !important;
      margin-bottom: 0 !important;
    }
  }

  /* Anpassung für den Titel der Studien-Sektion */
  body.mobile-view .studies-content .section-title {
    color: white !important;
    text-align: center !important;
    font-size: 1.8rem !important;
    margin-bottom: 25px !important;
    font-weight: 600 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) !important;
    padding: 15px !important;
    background: rgba(10, 35, 68, 0.95) !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    width: 97% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 10px !important;
    position: relative !important;
    z-index: 2 !important;
  }

  /* Pseudo-Element für fixiertes Hintergrundbild - funktioniert auf den meisten Browsern */
  body.mobile-view::before, body.mobile-portrait::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -10; /* Niedrigerer z-index, damit es definitiv unter dem Content bleibt */
    background-image: url('../images/green.webp') !important;
    background-size: cover !important; /* Verwendet "cover" für optimale Darstellung */
    background-position: center center !important;
    background-repeat: no-repeat !important;
    opacity: 0.9; /* Leicht transparent */
    pointer-events: none; /* Klicks durch das Element hindurch erlauben */
    transform: translateZ(0); /* Hardware-Beschleunigung aktivieren */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden; /* Verhindert Flackern */
    backface-visibility: hidden;
    will-change: transform; /* Deutet dem Browser an, dass sich dieses Element ändern wird */
  }

  /* Anpassung für den Hintergrund der Studies-Section */
  body.mobile-view .studies-section {
    background-color: transparent !important;
    position: relative !important;
    z-index: 1 !important;
    padding: 30px 0 !important;
  }

  /* Container für die Studien mit transparentem Hintergrund */
  body.mobile-view .studies-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 20px 0 !important;
  }

  /* Nur die Study-Grid mit transparentem Hintergrund */
  body.mobile-view .study-grid {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important; /* Größerer Abstand zwischen den Karten */
    padding: 15px 0 !important;
  }

  body.mobile-view .study-card h3::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 50px !important;
    height: 2px !important;
    background-color: rgba(255, 255, 255, 0.3) !important;
  }

  body.mobile-view .study-card .study-icon {
    font-size: 2rem !important;
    color: var(--accent-color, #FFC107) !important;
    text-align: center !important;
    margin-bottom: 15px !important;
    display: block !important;
  }

  body.mobile-view .study-card .study-source {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-align: center !important;
    font-style: italic !important;
    margin-top: 10px !important;
    padding-top: 10px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  /* Anpassung für die study-card-conclusion */
  body.mobile-view .study-conclusion {
    background: rgba(10, 35, 68, 0.95) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-top: 40px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    width: 97% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 30px !important; /* Abstand zur nächsten Sektion */
  }

  /* Anpassung für die scientific-references */
  body.mobile-view .scientific-references {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 25px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  body.mobile-view .scientific-references a {
    color: var(--accent-color, #FFC107) !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    padding: 5px 10px !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 5px !important;
    text-align: center !important;
  }

  body.mobile-view .scientific-references a:hover {
    color: white !important;
    background: rgba(255, 193, 7, 0.3) !important;
    transform: translateY(-2px) !important;
  }

  /* Anpassung für die study-intro */
  body.mobile-view .study-intro {
    background: rgba(10, 35, 68, 0.95) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    width: 97% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.mobile-view .study-intro p {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    text-align: center !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5) !important;
    margin-bottom: 0 !important;
  }

  /* Anpassung für den transparenten website-link in der study-conclusion Box */
  body.mobile-view .transparent-link {
    margin-top: 25px !important;
    text-align: center !important;
    width: 100% !important;
  }

  body.mobile-view .transparent-link a {
    display: inline-block !important;
    padding: 10px 25px !important;
    background-color: transparent !important;
    color: white !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 2px solid white !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
  }

  body.mobile-view .transparent-link a:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4) !important;
  }

  /* Anpassung für den website-link nach den Studien */
  body.mobile-view .studies-content .website-link {
    margin-top: 40px !important;
    text-align: center !important;
    width: 100% !important;
  }

  body.mobile-view .studies-content .website-link a {
    display: inline-block !important;
    padding: 10px 25px !important;
    background-color: var(--accent-color, #FFC107) !important;
    color: #000 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
  }

  body.mobile-view .studies-content .website-link a:hover {
    background-color: #FFD54F !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4) !important;
  }

  /* Anpassung für den Button in der Study-Conclusion Box */
  body.mobile-view .study-conclusion .website-link a {
    display: inline-block !important;
    padding: 10px 25px !important;
    background-color: transparent !important;
    color: white !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 2px solid white !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
  }

  body.mobile-view .study-conclusion .website-link a:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4) !important;
  }

  /* Global override for mobile devices in landscape to always use green.webp */
  @media screen and (orientation: landscape) {
    /* Extrem spezifischer Selektor, um maximale Spezifität zu erreichen */
    html body.mobile-view div.bg-left,
    html body.mobile-view .bg-left,
    html:not([data-attr]) body:not([data-attr]) .bg-left,
    .bg-left {
      background-image: url('../images/green.webp') !important;
    }
    
    /* Inline-Style-Reset - für den Fall, dass Inline-Styles gesetzt werden */
    html body.mobile-view[style] .bg-left[style],
    body.mobile-view .bg-left[style] {
      background-image: url('../images/green.webp') !important;
    }
  }

  /* Dieser Code versteckt blue.webp überall, unabhängig vom Kontext */
  *[style*="blue.webp"] {
    background-image: url('../images/green.webp') !important;
  }

  /* Überschriften für die AI-Box */
  body.mobile-view .ai-assistant-box h2 {
    font-size: 1.4rem; /* Kleinere Schriftgröße statt 1.8rem */
    margin-bottom: 15px;
    text-align: center;
  }

  body.mobile-view .ai-assistant-box h3 {
    font-size: 1.1rem; /* Kleinere Schriftgröße statt 1.4rem */
    margin-bottom: 10px;
    text-align: center;
  }

  /* Antwort- und Frageboxen Header-Styles anpassen */
  body.mobile-view .question-box .question-header {
    font-size: 0.85rem; /* Kleinere Schriftgröße */
    margin-bottom: 4px;
  }

  body.mobile-view .response-box .answer-header {
    font-size: 0.9rem; /* Kleinere Schriftgröße */
    margin-bottom: 6px;
  }

  /* Spezifisches Override für Portrait-Modus */
  @media (orientation: portrait) {
    body.mobile-view .question-box,
    body.mobile-view .response-box {
      font-size: 0.85rem;
      max-height: none !important; /* Keine maximale Höhe - Box erweitert sich dynamisch */
      overflow: visible !important; /* Kein Scrollbalken - Box erweitert sich nach unten */
      overflow-y: visible !important; /* Explizit kein vertikaler Scrollbalken */
    }
    
    body.mobile-view .ai-assistant-box h2 {
      font-size: 1.4rem;
    }
    
    body.mobile-view .ai-assistant-box h3 {
      font-size: 1.1rem;
    }
    
    body.mobile-view .questions-content p {
      font-size: 0.85rem;
    }
    
    body.mobile-view .ai-toggle-button {
      font-size: 0.9rem;
    }
  }

  /* Landscape-Modus behält die größeren Schriftarten bei */
  @media (orientation: landscape) {
    body.mobile-view .question-box,
    body.mobile-view .response-box {
      font-size: 0.95rem;
    }
    
    body.mobile-view .ai-assistant-box h2 {
      font-size: 1.6rem;
    }
    
    body.mobile-view .ai-assistant-box h3 {
      font-size: 1.3rem;
    }
  }

  /* Antwortbereich für KI auf mobilen Geräten anpassen */
  body.mobile-view .response-box .response-text p,
  body.mobile-view .response-box .response-text li {
    font-size: 1.2rem !important; /* Erhöht für Konsistenz mit anderen Texten */
    line-height: 1.6;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  /* Spezifisches Override für Portrait-Modus */
  @media (orientation: portrait) {
    body.mobile-view .response-box .response-text p,
    body.mobile-view .response-box .response-text li {
      font-size: 1.2rem !important; /* Erhöht für Konsistenz */
    }
  }

  /* Landscape-Modus behält die größeren Schriftarten bei */
  @media (orientation: landscape) {
    body.mobile-view .response-box .response-text p,
    body.mobile-view .response-box .response-text li {
      font-size: 1.2rem !important; /* Erhöht für Konsistenz */
    }
  }

  /* Auch die Frage-Wiederholung in der Question-Box auf größere Schrift setzen */
  body.mobile-view .question-box {
    font-size: 1.2rem !important;
    line-height: 1.6;
    border-left: 3px solid var(--accent-color);
    background: rgba(0, 0, 0, 0.2);
  }

  /* Fragen-Header und Antwort-Header anpassen */
  body.mobile-view .question-box .question-header {
    font-size: 1.2rem !important;
    font-weight: bold;
    margin-bottom: 6px;
    color: var(--accent-color);
  }

  body.mobile-view .response-box .answer-header {
    font-size: 1.2rem !important;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--accent-color);
  }

  /* Häufig gestellte Fragen Stil anpassen */
  body.mobile-view .form-group label[for="faq"] {
    font-size: 1.2rem !important;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.95);
  }

  /* Oder stellen Sie Ihre Frage Stil anpassen */
  body.mobile-view .form-group label[for="anfrage"] {
    font-size: 1.2rem !important;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.95);
  }

  /* Restliche Definitionen unverändert lassen */
  body.mobile-view .questions-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  body.mobile-view .questions-content p {
    font-size: 1.2rem !important; /* Angepasst von 0.85rem auf 1.2rem, um mit anderen Boxen übereinzustimmen */
    line-height: 1.6;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  body.mobile-view .questions-content .ai-features {
    padding-left: 5px;
    margin-bottom: 15px;
  }

  body.mobile-view .questions-content .ai-features li {
    margin-bottom: 5px;
    font-size: 1.1rem; /* Auch die Aufzählungspunkte größer machen */
  }

  body.mobile-view .ai-info p {
    font-size: 1.2rem !important; /* Erhöht von 0.95rem auf 1.2rem für Konsistenz */
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
  }

  body.mobile-view .ai-features {
    list-style: none;
    padding-left: 10px;
    margin-bottom: 20px;
    text-align: left;
  }

  body.mobile-view .ai-features li {
    margin-bottom: 8px;
    font-size: 1.2rem !important; /* Erhöht von 0.9rem auf 1.2rem für Konsistenz */
    color: rgba(255, 255, 255, 0.95) !important;
    display: flex;
    align-items: center;
  }

  body.mobile-view .ai-features li i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 1.2rem !important; /* Größer für bessere Sichtbarkeit */
  }
}