/* Page Background - Chaos Style (Prydwen) */
      body {
        /* background removed to match Haikyu index (inherits from base.css) */
        min-height: 100vh;
        position: relative;
      }

      /* Ensure content stays above background */
      .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('https://ik.imagekit.io/frnrxcqkq/7krebirth/7kBanner.jpg?tr=w-1920,q-85');
        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 */
      }

      /* Intro Discord Button Style */
      .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);
      }

      /* Mobile responsive fixes for 7k Rebirth index */
      @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;
        }
      }

      /* Responsive Banner Image */
      .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;
        }
      }

      /* 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.1);
          pointer-events: none;
      }

      /* Compact Codes Styles moved to /css/components/codes.css */


