 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: #0a0a0a;
      color: #e0e0e0;
    }

    /* ====================== COMBINED HEADER WRAPPER ====================== */
    .combined-header-wrapper {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: #0f0f0f; /* matches top strip */
      border-bottom: 1px solid #222;
    }

    /* Top strip */
    .site-top-strip {
      background-color: #0f0f0f;
      color: #e0e0e0;
      padding: 0.6rem 0;
      font-size: 0.9rem;
    }

    /* Main header (no extra padding on top) */
    .main-header-section {
      background-color: #111;
      padding: 1rem 0 1rem; /* only bottom padding */
    }

    .container-max {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .primary-navigation {
      display: flex;
      justify-content: flex-end;
      gap: 1.8rem;
      align-items: center;
    }

    .navigation-item {
      color: #ccc;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .navigation-item:hover {
      color: #ffffff;
    }

    .header-layout {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand-logo-container {
      display: flex;
      align-items: center;
    }

    .brand-logo-image {
      height: 50px;
      width: 150px;
      object-fit: contain;
    }

    /* Desktop navigation */
    .desktop-menu-list {
      display: flex;
      gap: 2rem;
      align-items: center;
      list-style: none;
    }

    .desktop-menu-item a {
      color: #ddd;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .desktop-menu-item a:hover {
      color: #ffffff;
    }

    /* Mobile hamburger */
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      color: #ddd;
      font-size: 1.8rem;
      cursor: pointer;
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background-color: #111;
      padding: 6rem 1.5rem 2rem;
      transition: right 0.3s ease;
      z-index: 1001;
      box-shadow: -4px 0 15px rgba(0,0,0,0.6);
    }

    .mobile-drawer.active {
      right: 0;
    }

    .mobile-menu-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .mobile-menu-item a {
      color: #ddd;
      text-decoration: none;
      font-size: 1.2rem;
      display: block;
      padding: 0.5rem 0;
    }

    .mobile-menu-item a:hover {
      color: #ffffff;
    }

    .overlay-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1000;
    }

    .overlay-backdrop.active {
      opacity: 1;
      visibility: visible;
    }

    /* Responsive rules */
    @media (max-width: 1024px) {
      .desktop-menu-list {
        display: none;
      }

      .mobile-menu-toggle {
        display: block;
      }
    }

    @media (max-width: 600px) {
      .site-top-strip {
        font-size: 0.85rem;
      }
      .primary-navigation {
        gap: 1.2rem;
      }
      .brand-logo-image {
        height: 40px;
      }
    }

    /* Dummy content */
    .main-content-area {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 1.5rem;
      line-height: 1.7;
    }

    .video-hero {
      position: relative;
      width: 100%;
      height: 350px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      background-color: #000; /* fallback */
    }

    /* Dark overlay for better readability and play button visibility */
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* semi-dark overlay */
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Centered pulsing play button */
    .play-button {
      width: 90px;
      height: 90px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
      z-index: 3;
    }

    .play-button:hover {
      background: rgba(255, 255, 255, 0.4);
      transform: scale(1.1);
    }

    .play-button svg {
      width: 40px;
      height: 40px;
      fill: white;
      margin-left: 6px; /* slight offset for play triangle */
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
      }
      70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
      }
    }

    /* Fullscreen Video.js Player (hidden initially) */
    #fullscreen-player {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 9999;
      display: none;
      background: #000;
    }

    #my-video {
      width: 100%;
      height: 100%;
    }

    /* Custom Close (X) Button */
    .close-btn {
      position: absolute;
      top: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10000;
      font-size: 28px;
      color: white;
      transition: background 0.3s ease;
    }

    .close-btn:hover {
      background: rgba(255, 0, 0, 0.7);
    }















    .film-showcase-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            background-color: #111111;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }
        .film-layout-container {
            display: flex;
            gap: 60px;
            padding: 60px;
            align-items: flex-start;
        }
        .poster-section {
            flex-shrink: 0;
        }
        .poster-section img {
            width: 260px;
            height: 385px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }
        .poster-section img:hover {
            transform: translateY(-8px);
        }
        .content-area {
            flex: 1;
        }
        .film-title-header {
            font-size: 42px;
            font-weight: 600;
            margin: 0 0 30px 0;
            color: #ffffff;
        }
        .plot-summary-block {
            font-size: 18px;
            line-height: 1.7;
            color: #cccccc;
            margin-bottom: 40px;
        }
        .plot-summary-block strong {
            display: block;
            font-size: 20px;
            margin-bottom: 12px;
            color: #ffffff;
        }
        .metadata-row {
            display: flex;
            gap: 60px;
            font-size: 17px;
            color: #bbbbbb;
        }
        .metadata-row > div {
            flex: 1;
        }
        .metadata-row strong {
            color: #ffffff;
            font-weight: 500;
            display: block;
            margin-bottom: 6px;
        }
        @media (max-width: 1024px) {
            .film-layout-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .metadata-row {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            .plot-summary-block {
                text-align: center;
            }
        }

        












        .main-wrapper-1300 {
            width: 1300px;
            max-width: 100%;
            margin: 0 auto;
            background-color: #111111;
            padding: 20px;
            box-sizing: border-box;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            margin-top: 50px;
            border-radius: 10px;
        }
        .primary-content-area {
            flex: 1;
            position: relative;
        }
        .primary-content-area video {
            width: 100%;
            height: auto;
            display: block;
            background: black;
        }
        .advertisement-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
            flex-shrink: 0;
        }
        .ad-unit-rectangle {
            width: 300px;
            height: 250px;
            background: #333;
            border: 1px solid #555;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #aaa;
        }

        /* Responsive for tablets and mobiles */
        @media (max-width: 1024px) {
            .main-wrapper-1300 {
                flex-direction: column;
                padding: 10px;
                gap: 30px;
            }
            .advertisement-sidebar {
                width: 100%;
                align-items: center;
            }
            .ad-unit-rectangle {
                width: 100%;
                max-width: 300px;
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .main-wrapper-1300 {
                padding: 10px;
            }
            .ad-unit-rectangle {
                height: 200px;
                font-size: 16px;
            }
        }














        /* Centered 1300px column */
        .main-content-wrapper-xyz789 {
            max-width: 1250px;
            margin: 0 auto;
            margin-top: 50px;
        }

        /* Hide title */
        .section-heading-abc456 {
            display: none;
        }

        .image-grid-container-qwe321 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 0 auto;
        }

        /* Responsive adjustments for tablets and mobiles */
        @media (max-width: 1024px) {
            .image-grid-container-qwe321 {
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                gap: 5px;
            }
        }

        @media (max-width: 768px) {
            .image-grid-container-qwe321 {
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .image-grid-container-qwe321 {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 0 10px;
            }
        }

        .image-grid-container-qwe321 img {
            width: 250px;
            height: 162px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .image-grid-container-qwe321 img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

        /* Modal / Lightbox styles - unchanged sizing */
        .lightbox-overlay-rtg654 {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            justify-content: center;
            align-items: center;
        }

        .lightbox-image-content-uio987 {
            max-width: 90%;
            max-height: 90%;
            border-radius: 8px;
        }

        .lightbox-close-btn-poi456 {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }

        .lightbox-close-btn-poi456:hover {
            color: #bbb;
        }

        /* Mobile-friendly close button */
        @media (max-width: 768px) {
            .lightbox-close-btn-poi456 {
                top: 15px;
                right: 20px;
                font-size: 35px;
            }
        }












        .site-content-wrapper {
            width: 1300px;
            max-width: 100%;
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
            margin-top: 50px;
            background-color: #111111;
            border-radius: 10px;
        }

        .section-heading {
            margin-bottom: 20px;
            font-size: 24px;
            font-weight: 600;
        }

        /* Horizontal scrolling container for related posts */
        .related-articles-carousel {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding: 10px 0;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }

        /* Hide scrollbar on all browsers */
        .related-articles-carousel::-webkit-scrollbar {
            display: none;
        }
        .related-articles-carousel {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Individual article card */
        .article-teaser-card {
            flex: 0 0 300px;
            background: rgb(41, 41, 41);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            text-decoration: none;
            display: block;
            color: inherit;
        }

        .article-teaser-card:hover {
            transform: translateY(-8px);
        }

        .teaser-thumbnail {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .teaser-details {
            padding: 16px;
        }

        .teaser-title {
            font-size: 18px;
            margin: 0 0 8px;
            color: #ffffff;
            font-weight: 600;
        }

        .teaser-summary {
            font-size: 14px;
            color: #f3f3f3;
            margin: 0;
            line-height: 1.4;
        }

        /* Ensure visited links don't change color */
        .article-teaser-card:visited .teaser-title,
        .article-teaser-card:visited .teaser-summary {
            color: inherit;
        }

        /* On smaller screens, make cards a bit narrower for better fit */
        @media (max-width: 768px) {
            .article-teaser-card {
                flex: 0 0 280px;
            }
        }

        @media (max-width: 480px) {
            .article-teaser-card {
                flex: 0 0 260px;
            }
        }














        .voidFooterRealm {
            width: 100%;
            background-color: #000;
            color: #fff;
            padding: clamp(20px, 3vw, 30px) clamp(10px, 1.5vw, 20px);
            font-family: -apple-system, BlinkMacSystemFont, sans-serif;
            box-sizing: border-box;
        }

        /* Main footer content wrapper */
        .nebulaFooterCore {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: clamp(10px, 2vw, 20px);
            align-items: flex-start;
        }

        /* Logo section */
        .lunarLogoHub {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .lunarLogoHub a {
            display: inline-block;
        }

        .lunarLogoHub img {
            width: clamp(80px, 15vw, 120px);
            height: auto;
            filter: brightness(0) invert(1);
        }

        .lunarLogoHub p {
            font-size: clamp(10px, 2vw, 12px);
            opacity: 0.7;
            margin: 0;
            line-height: 1.3;
        }

        /* Navigation links */
        .astroNavCluster {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: clamp(6px, 1vw, 8px);
        }

        .astroNavCluster ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .astroNavCluster li {
            margin-bottom: 6px;
        }

        .astroNavCluster a {
            color: #fff;
            text-decoration: none;
            font-size: clamp(11px, 2vw, 13px);
            font-weight: 500;
            transition: color 0.3s ease, transform 0.2s ease;
        }

        .astroNavCluster a:hover {
            color: #ff0000;
            transform: translateX(4px);
        }

        /* Social media section */
        .cosmicSocialSphere {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cosmicSocialSphere h3 {
            font-size: clamp(14px, 2.5vw, 16px);
            font-weight: 600;
            margin: 0;
        }

        .stellarSocialIcons {
            display: flex;
            flex-wrap: wrap;
            gap: clamp(6px, 1vw, 8px);
        }

        .stellarSocialIcons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: background 0.3s ease, transform 0.2s ease;
        }

        .stellarSocialIcons a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .stellarSocialIcons svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .nebulaFooterCore {
                grid-template-columns: 1fr 1fr;
                gap: clamp(8px, 1.5vw, 15px);
            }

            .cosmicSocialSphere {
                grid-column: 1 / -1;
                align-items: center;
                text-align: center;
            }

            .stellarSocialIcons {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .voidFooterRealm {
                padding: clamp(10px, 2vw, 20px) clamp(8px, 1vw, 15px);
            }

            .nebulaFooterCore {
                grid-template-columns: 1fr;
                gap: clamp(10px, 2vw, 15px);
            }

            .lunarLogoHub {
                align-items: center;
                text-align: center;
            }

            .astroNavCluster {
                grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
                justify-items: center;
            }

            .astroNavCluster ul {
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .voidFooterRealm {
                padding: clamp(8px, 1.5vw, 15px) clamp(5px, 0.75vw, 10px);
            }

            .lunarLogoHub img {
                width: clamp(60px, 20vw, 100px);
            }

            .lunarLogoHub p {
                font-size: clamp(9px, 2vw, 11px);
            }

            .astroNavCluster {
                grid-template-columns: 1fr;
            }

            .astroNavCluster ul {
                margin-bottom: 8px;
            }

            .astroNavCluster a {
                font-size: clamp(10px, 2vw, 12px);
            }

            .cosmicSocialSphere h3 {
                font-size: clamp(12px, 2.5vw, 14px);
            }

            .stellarSocialIcons a {
                width: 28px;
                height: 28px;
            }

            .stellarSocialIcons svg {
                width: 16px;
                height: 16px;
            }
        }

        @media (max-width: 360px) {
            .voidFooterRealm {
                padding: clamp(5px, 1.5vw, 10px) clamp(3px, 0.75vw, 5px);
            }

            .lunarLogoHub img {
                width: clamp(50px, 20vw, 80px);
            }

            .lunarLogoHub p {
                font-size: clamp(8px, 2vw, 10px);
            }

            .astroNavCluster a {
                font-size: clamp(9px, 2vw, 11px);
            }

            .cosmicSocialSphere h3 {
                font-size: clamp(11px, 2.5vw, 13px);
            }

            .stellarSocialIcons a {
                width: 24px;
                height: 24px;
            }

            .stellarSocialIcons svg {
                width: 14px;
                height: 14px;
            }
        }