      body {
        /* Hintergrund von base.css geerbt */
        min-height: 100vh;
        position: relative;
      }

      /* Inhalt bleibt über dem Hintergrund */
      .content-container, header, nav, .navbar, .Intro, section, footer {
        position: relative;
        z-index: 2;
      }

      .page-background {
        position: absolute; /* Scrolls with page */
        top: 0;
        left: 0;
        width: 100%;
        height: 1000px; /* Fixed height fade area */
        z-index: 1; /* Behind content (z-index 2), above body bg */
        pointer-events: none;
        overflow: hidden;
      }

      .bg-image {
        position: absolute;
        top: 0;
        left: calc(50vw + 80px); /* Center from content container middle */
        transform: translateX(-50%); /* Center the image on that point */
        width: 100vw; /* Full viewport width */
        height: 100%;
        background-image: url('/7kRebirth/img/7kBanner.jpg');
        background-size: cover;
        background-position: center top;
        opacity: 0.08; /* Very subtle transparency */
        filter: saturate(0); /* Keep it grayscale to not clash with bg color */
        mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
        mix-blend-mode: luminosity; /* Blends texture without changing color */
      }

      /* Discord-Button Einführung */
      .intro-discord-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: #7a5af8a1; /* Updated color */
        color: white;
        padding: 12px 28px;
        border-radius: 2px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.05rem;
        transition: all 0.2s ease;
        box-shadow: 0 4px 10px rgba(122, 90, 248, 0.3);
      }

      .intro-discord-btn:hover {
        background: linear-gradient(135deg, #4752c4 0%, #5b6eae 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(88, 101, 242, 0.5);
        color: white;
      }

      .intro-discord-btn i {
        font-size: 1.3rem;
      }

      /* Desktop Layout - Content with fixed left margin and responsive right margin */
      /* Center Intro H1 and add spacing */
      .Intro {
        text-align: center;
        margin-bottom: 60px;
      }

      .Intro h1 {
        text-shadow: 1px 2px 1px rgb(0, 0, 0);
      }

      /* Anpassungen für Mobilgeräte */
      @media (max-width: 1080px) {
        .bg-image {
          left: 50%;
        }
      }

      @media (max-width: 768px) {
        .Intro {
          text-align: center !important;
          padding: 0 10px !important;
        }

        .Intro h1 {
          font-size: 1.5rem !important;
        }
      }

      @media (max-width: 480px) {
        .content-container {
          padding-top: 90px !important;
        }

        .Intro h1 {
          font-size: 1.3rem !important;
        }
      }

      /* Banner für verschiedene Bildschirmgrößen */
      .slide-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
      }

      .slide {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
      }

      .slider-container {
        width: 100% !important;
        height: 400px !important;
        overflow: hidden !important;
      }

      @media (max-width: 768px) {
        .slider-container {
          height: 300px !important;
        }
      }

      @media (max-width: 480px) {
        .slider-container {
          height: 250px !important;
        }
      }

      /* 7k Rebirth Guide Cards – HTML-Version (kein Astro, Styles hier) */
      .home-recommendation {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, minmax(192px, 1fr)) !important;
        gap: 19px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .home-recommendation .guide-card {
        display: flex !important;
        flex-direction: column !important;
        width: 192px !important;
        height: 173px !important;
        min-width: 192px !important;
        min-height: 173px !important;
        max-width: 192px !important;
        max-height: 173px !important;
        background: #2c2d33 !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        border-radius: 2px !important;
        overflow: hidden !important;
        text-decoration: none !important;
        position: relative !important;
        transition: all 0.3s ease !important;
      }

      .home-recommendation .guide-card:hover {
        transform: translateY(-4px) !important;
        border-color: #7a5af8a1 !important;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 20px #7a5af8a1 !important;
      }

      .home-recommendation .guide-card > img {
        flex: 0 0 auto !important;
        width: 100% !important;
        aspect-ratio: 16 / 9 !important;
        object-fit: cover !important;
        object-position: center center !important;
        transition: transform 0.5s ease-out !important;
      }

      .home-recommendation .guide-card:hover > img {
        transform: scale(1.05) !important;
      }

      .home-recommendation .guide-card h3 {
        flex: 1 !important;
        padding: 10px 13px !important;
        margin: 0 !important;
        color: #fff !important;
        font-weight: 500 !important;
        font-size: 1.05rem !important;
        letter-spacing: -0.02em !important;
        line-height: 1.4 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-align: center !important;
      }

      .home-recommendation .fancy-divider {
        grid-column: 1 / -1 !important;
        color: #fff !important;
        font-weight: 600 !important;
      }

      @media (max-width: 540px) {
        .home-recommendation {
          grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
          gap: 12px !important;
        }
        .home-recommendation .guide-card {
          width: 100% !important;
          min-width: 0 !important;
          max-width: none !important;
          height: auto !important;
          min-height: 100px !important;
          max-height: none !important;
        }
      }

      /* Coming Soon Guide Cards */
      .guide-card.coming-soon {
          cursor: default;
          opacity: 0.8;
          position: relative;
      }

      .guide-card.coming-soon::after {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(0, 0, 0, 0.5);
          pointer-events: none;
      }

      /* Compact Codes Styles moved to /css/components/codes.css */


