    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --disneyplus-blue: #0063e5;
      --disneyplus-dark-blue: #040714;
      --disneyplus-blue-hover: #0483ee;
      --nav-height: 68px;
      --transition-speed: 0.3s;
    }

    html, body {
      width: 100%;
      min-height: 100%;
      overflow-x: hidden;
      background: var(--disneyplus-dark-blue);
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      color: #fff;
    }

    /* ===========================
       HEADER / NAVBAR
    =========================== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--nav-height);
      display: flex;
      align-items: center;
      padding: 0 24px;
      background: linear-gradient(to bottom, rgba(4,7,20,0.95) 0%, rgba(4,7,20,0) 100%);
      transition: background var(--transition-speed);
    }

    .header.scrolled {
      background: rgba(4, 7, 20, 0.97);
    }

    .header-inner {
      display: flex;
      align-items: center;
      width: 100%;
      gap: 0;
    }

    /* Logo */
    .logo {
      flex-shrink: 0;
      margin-right: 28px;
      display: flex;
      align-items: center;
      cursor: pointer;
    }

    .logo-img {
      height: 38px;
      width: auto;
      display: block;
      object-fit: contain;
      filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
    }

    /* Primary Nav */
    .primary-nav {
      display: flex;
      align-items: center;
      gap: 4px;
      flex: 1;
    }

    .primary-nav a,
    .primary-nav a:hover,
    .primary-nav a:visited,
    .primary-nav a:focus {
      text-decoration: none;
    }

    .dropdown-menu a,
    .dropdown-menu a:hover,
    .dropdown-menu a:visited,
    .dropdown-menu a:focus {
      text-decoration: none;
    }

    .nav-item {
      position: relative;
      padding: 8px 14px;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.75);
      cursor: pointer;
      border-radius: 4px;
      transition: color var(--transition-speed);
      white-space: nowrap;
      letter-spacing: 0.3px;
      text-decoration: none;
    }

    .nav-item:hover { color: #fff; }
    .nav-item.active { color: #fff; }

    .nav-item.has-dropdown::after {
      content: '';
      display: inline-block;
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 4px solid rgba(255,255,255,0.6);
      margin-left: 6px;
      vertical-align: middle;
      transition: transform var(--transition-speed);
    }

    .nav-item.has-dropdown:hover::after {
      transform: rotate(180deg);
      border-top-color: #fff;
    }

    .dropdown-wrapper { position: relative; }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%) translateY(-8px);
      background: rgba(19, 19, 19, 0.97);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      min-width: 180px;
      padding: 8px 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s, transform 0.2s;
      backdrop-filter: blur(10px);
    }

    .dropdown-wrapper:hover .dropdown-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu::before {
      content: '';
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid rgba(255,255,255,0.1);
    }

    .dropdown-item {
      padding: 10px 20px;
      font-size: 14px;
      color: rgba(255,255,255,0.8);
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
      text-decoration: none;
      display: block;
    }

    .dropdown-item:hover {
      background: rgba(255,255,255,0.08);
      color: #fff;
    }

    /* Right Nav */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: auto;
    }

    /* Search */
    .search-container {
      position: relative;
      display: flex;
      align-items: center;
    }

    .search-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: rgba(255,255,255,0.8);
      display: flex;
      align-items: center;
      padding: 8px;
      border-radius: 50%;
      transition: color var(--transition-speed), background var(--transition-speed);
    }

    .search-btn:hover {
      color: #fff;
      background: rgba(255,255,255,0.1);
    }

    .search-input-wrapper {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      overflow: visible;
      transition: width 0.3s ease;
    }

    .search-input-wrapper.open { width: 280px; }
    .search-input-wrapper.open .search-input { display: block; }

    .search-input {
      display: none;
      width: 100%;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 4px;
      color: #fff;
      font-size: 14px;
      padding: 7px 36px 7px 12px;
      outline: none;
    }

    .search-input::placeholder { color: rgba(255,255,255,0.5); }
    .search-input:focus {
      border-color: rgba(255,255,255,0.6);
      background: rgba(255,255,255,0.18);
    }

    /* Search results dropdown */
    .search-results {
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      right: 0;
      background: rgba(18, 18, 22, 0.98);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      overflow: hidden;
      backdrop-filter: blur(16px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.7);
      display: none;
      z-index: 2000;
      max-height: 40vh;
      min-width: 280px;
    }

    .search-results.visible { display: block; }

    .search-result-section { padding: 8px 0 4px; }

    .search-result-label {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: rgba(255,255,255,0.35);
      padding: 4px 14px 6px;
    }

    .search-result-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 9px 14px;
      cursor: pointer;
      transition: background 0.15s;
      text-decoration: none;
    }

    .search-result-item:hover,
    .search-result-item.focused { background: rgba(255,255,255,0.08); }

    .search-result-icon {
      width: 32px;
      height: 32px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 14px;
    }

    .search-result-info { flex: 1; min-width: 0; }

    .search-result-name {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .search-result-meta {
      font-size: 11px;
      color: rgba(255,255,255,0.45);
      margin-top: 1px;
    }

    .search-result-arrow { color: rgba(255,255,255,0.25); flex-shrink: 0; }

    .search-no-results {
      padding: 20px 14px;
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      text-align: center;
    }

    /* Icon Button */
    .icon-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: rgba(255,255,255,0.8);
      display: flex;
      align-items: center;
      padding: 8px;
      border-radius: 50%;
      transition: color var(--transition-speed), background var(--transition-speed);
      position: relative;
    }

    .icon-btn:hover {
      color: #fff;
      background: rgba(255,255,255,0.1);
    }

    /* Notification badge */
    .notification-badge {
      position: absolute;
      top: 4px;
      right: 4px;
      width: 8px;
      height: 8px;
      background: var(--disneyplus-blue);
      border-radius: 50%;
      border: 2px solid var(--disneyplus-dark-blue);
    }

    /* Profile */
    .profile-btn {
      position: relative;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      padding: 4px 8px;
      border-radius: 6px;
      transition: background var(--transition-speed);
    }

    .profile-btn:hover { background: rgba(255,255,255,0.08); }

    .profile-avatar {
      width: 34px;
      height: 34px;
      border-radius: 6px;
      background: linear-gradient(135deg, #0063e5 0%, #8b1dff 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      flex-shrink: 0;
      overflow: hidden;
    }

    .profile-avatar svg { width: 22px; height: 22px; }

    .profile-chevron {
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 4px solid rgba(255,255,255,0.6);
      transition: transform 0.2s;
    }

    .profile-btn:hover .profile-chevron { transform: rotate(180deg); }

    /* Profile Dropdown */
    .profile-dropdown {
      position: absolute;
      top: calc(100% + 12px);
      right: 0;
      width: 220px;
      background: rgba(19, 19, 19, 0.97);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity 0.2s, transform 0.2s;
      backdrop-filter: blur(10px);
    }

    .profile-dropdown.open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .profile-dropdown-header {
      padding: 16px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .profile-dropdown-avatar {
      width: 42px;
      height: 42px;
      border-radius: 8px;
      background: linear-gradient(135deg, #0063e5 0%, #8b1dff 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .profile-dropdown-avatar svg { width: 28px; height: 28px; }
    .profile-dropdown-name { font-size: 14px; font-weight: 600; color: #fff; }
    .profile-dropdown-plan { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

    .profile-list { padding: 8px 0; }

    .profile-list-item {
      padding: 10px 16px;
      font-size: 14px;
      color: rgba(255,255,255,0.75);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: background 0.15s, color 0.15s;
    }

    .profile-list-item:hover { background: rgba(255,255,255,0.08); color: #fff; }
    .profile-list-item svg { width: 16px; height: 16px; opacity: 0.7; flex-shrink: 0; }
    .profile-list-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 4px 0; }

    /* Who's Watching Panel */
    .whos-watching {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      padding: 12px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .watch-profile {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }

    .watch-profile-avatar {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      border: 2px solid transparent;
      transition: border-color 0.2s;
    }

    .watch-profile:hover .watch-profile-avatar { border-color: #fff; }

    .watch-profile-name {
      font-size: 11px;
      color: rgba(255,255,255,0.6);
    }

    /* ===========================
       CTA BUTTONS (shared with hero)
    =========================== */
    .btn-play {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: #000;
      border: none;
      border-radius: 6px;
      padding: 12px 28px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      letter-spacing: 0.2px;
      text-decoration: none;
      font-family: inherit;
    }

    .btn-play:hover { background: rgba(255,255,255,0.88); transform: scale(1.02); }
    .btn-play:active { transform: scale(0.98); }
    .btn-play svg { width: 18px; height: 18px; }

    .btn-trailer {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.12);
      color: #fff;
      border: 1.5px solid rgba(255,255,255,0.3);
      border-radius: 6px;
      padding: 12px 24px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.1s;
      backdrop-filter: blur(4px);
      text-decoration: none;
      font-family: inherit;
    }

    .btn-trailer:hover {
      background: rgba(255,255,255,0.2);
      border-color: rgba(255,255,255,0.5);
      transform: scale(1.02);
    }

    .btn-trailer:active { transform: scale(0.98); }
    .btn-trailer svg { width: 18px; height: 18px; }

    .btn-watchlist {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.3);
      border-radius: 50%;
      width: 48px;
      height: 48px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.1s;
      backdrop-filter: blur(4px);
      text-decoration: none;
      color: #fff;
    }

    .btn-watchlist:hover {
      background: rgba(255,255,255,0.2);
      border-color: rgba(255,255,255,0.5);
      transform: scale(1.05);
    }

    .btn-watchlist svg { width: 20px; height: 20px; color: #fff; }

    /* Age rating badge */
    .age-rating {
      display: inline-flex;
      align-items: center;
      border: 1.5px solid rgba(255,255,255,0.5);
      border-radius: 3px;
      padding: 2px 8px;
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,0.8);
    }

    /* Toast */
    .toast-container {
      position: fixed;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: center;
    }

    .toast {
      background: rgba(30,30,30,0.95);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 8px;
      padding: 12px 20px;
      font-size: 14px;
      color: #fff;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.5);
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
    }

    .toast.show { opacity: 1; transform: translateY(0); }

    /* ===========================
       MOVIE HERO / BACKDROP
    =========================== */
    .movie-backdrop {
      position: relative;
      width: 100%;
      height: 72vh;
      min-height: 500px;
      overflow: hidden;
      background: #040714;
    }

    .movie-backdrop-img {
      position: absolute;
      inset: 0;
      background-image: url('https://img.netzwelt.de/dw1200_dh675_sw1920_sh1080_sx0_sy0_sr16x9_nu1/picture/original/2023/07/chroniken-narnia-koenig-narnia-2005-378347.jpeg');
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      transform: scale(1.04);
      transition: transform 8s ease;
    }

    .movie-backdrop-img.loaded { transform: scale(1); }

    .backdrop-gradient-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 75%;
      background: linear-gradient(
        to top,
        rgba(4,7,20,1) 0%,
        rgba(4,7,20,0.85) 28%,
        rgba(4,7,20,0.4) 62%,
        rgba(4,7,20,0) 100%
      );
    }

    .backdrop-gradient-left {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(4,7,20,0.7) 0%,
        rgba(4,7,20,0.3) 40%,
        rgba(4,7,20,0) 70%
      );
    }

    /* Hero content overlaid on backdrop */
    .movie-hero-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      padding: 0 60px 56px;
      max-width: 760px;
    }

    .slide-eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }

    .slide-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(0,99,229,0.85);
      padding: 4px 10px;
      border-radius: 3px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .slide-new-badge { background: #f9b109; color: #000; }

    .slide-rating {
      font-size: 12px;
      color: rgba(255,255,255,0.7);
      font-weight: 500;
    }

    .slide-meta-dots { display: flex; gap: 6px; align-items: center; }
    .meta-dot { width: 3px; height: 3px; background: rgba(255,255,255,0.5); border-radius: 50%; }

    .slide-logo { margin-bottom: 20px; }

    .slide-logo-text {
      font-size: 50px;
      font-weight: 900;
      line-height: 1.05;
      text-shadow: 0 4px 24px rgba(0,0,0,0.8);
      letter-spacing: -1px;
    }

    .slide-description {
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255,255,255,0.85);
      margin-bottom: 22px;
      max-width: 560px;
      text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    }

    .slide-info-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
      font-size: 13px;
      color: rgba(255,255,255,0.65);
    }

    .info-separator {
      width: 3px;
      height: 3px;
      background: rgba(255,255,255,0.4);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .slide-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    /* ===========================
       MOVIE DETAILS PAGE BODY
    =========================== */
    .movie-page-body {
      background: var(--disneyplus-dark-blue);
      padding-bottom: 60px;
    }

    .section {
      padding: 0 60px;
      margin-bottom: 48px;
    }

    .section-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 20px;
      color: rgba(255,255,255,0.95);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(255,255,255,0.08);
    }

    /* Video Player */
    .video-player-container {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 12px;
      overflow: hidden;
      background: #000;
      box-shadow: 0 24px 80px rgba(0,0,0,0.8);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .video-player-container iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Info Grid */
    .info-grid {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 40px;
      padding: 0 60px;
      margin-bottom: 48px;
    }

    .info-description {
      font-size: 16px;
      line-height: 1.75;
      color: rgba(255,255,255,0.8);
    }

    .info-description p + p { margin-top: 16px; }

    .info-sidebar { display: flex; flex-direction: column; }

    .info-row {
      display: flex;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .info-row:last-child { border-bottom: none; }

    .info-label {
      font-size: 11px;
      color: rgba(255,255,255,0.4);
      font-weight: 600;
      letter-spacing: 0.5px;
      min-width: 100px;
      flex-shrink: 0;
      text-transform: uppercase;
      padding-top: 1px;
    }

    .info-value {
      font-size: 14px;
      color: rgba(255,255,255,0.85);
      line-height: 1.5;
    }

    /* Cast Grid */
    .cast-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
      gap: 20px;
      padding: 0 60px;
      margin-bottom: 48px;
    }

    .cast-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-align: center;
    }

    .cast-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0d3b8c 0%, #1a56c4 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      font-weight: 700;
      color: rgba(255,255,255,0.9);
      border: 2px solid rgba(255,255,255,0.1);
      overflow: hidden;
      flex-shrink: 0;
    }

    .cast-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .cast-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); line-height: 1.3; }
    .cast-role { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: -4px; }

    /* Tags */
    .tags-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 0 60px;
      margin-bottom: 60px;
    }

    .tag-pill {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      padding: 7px 16px;
      font-size: 13px;
      color: rgba(255,255,255,0.75);
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }

    .tag-pill:hover { background: rgba(255,255,255,0.14); color: #fff; }

    /* Footer */
    .page-footer {
      background: #040715;
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 40px 60px 32px;
      text-align: center;
    }

    .footer-logo {
      font-size: 20px;
      font-weight: 900;
      color: rgba(255,255,255,0.4);
      margin-bottom: 16px;
    }

    .footer-logo span { color: var(--disneyplus-blue); }

    .footer-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 6px 24px;
      margin-bottom: 20px;
    }

    .footer-links a {
      font-size: 12px;
      color: rgba(255,255,255,0.35);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: rgba(255,255,255,0.7); }
    .footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }

    /* ===========================
       RESPONSIVE
    =========================== */
    @media (max-width: 900px) {
      .primary-nav .nav-item:nth-child(n+5) { display: none; }
      .movie-hero-content { padding: 0 30px 44px; }
      .slide-logo-text { font-size: 34px; }
      .section { padding: 0 30px; }
      .info-grid { grid-template-columns: 1fr; padding: 0 30px; }
      .cast-grid { padding: 0 30px; }
      .tags-row { padding: 0 30px; }
      .page-footer { padding: 32px 30px 24px; }
    }

    @media (max-width: 620px) {
      .header { padding: 0 16px; }
      .primary-nav { display: none; }
      .movie-hero-content { padding: 0 20px 36px; max-width: 100%; }
      .slide-logo-text { font-size: 26px; }
      .slide-description { font-size: 13px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
      .btn-play, .btn-trailer { padding: 10px 18px; font-size: 13px; }
      .section { padding: 0 20px; }
      .info-grid { padding: 0 20px; }
      .cast-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); padding: 0 20px; }
      .tags-row { padding: 0 20px; }
      .page-footer { padding: 24px 20px; }
    }