    * { box-sizing: border-box; margin: 0; padding: 0; }
    :root{
      --bg:#141414; --muted:#bdbdbd; --accent:#e50914; --card:#2f3140;
      --glass: rgba(255,255,255,0.04);
    }

    body{
      font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      background: linear-gradient(180deg, #0f0f0f 0%, #141414 60%);
      color:#fff;
      min-height:100vh;
      line-height:1.4;
      -webkit-font-smoothing:antialiased;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    .site-header{
      position:fixed; top:0; left:0; right:0;
      background: rgba(0,0,0,0.45);
      border-bottom: 1px solid rgba(255,255,255,0.03);
      z-index:1000;
      backdrop-filter: blur(6px);
    }
    .header-inner{
      max-width:1400px; margin:0 auto; padding:12px 20px;
      display:flex; align-items:center; justify-content:space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .logo {
      background: #fff;
      border-radius: 8px;
      padding: 4px 12px;
      display: inline-block;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }
    .logo img { height: 36px; display: block; }
    
    .primary-nav ul{ 
      list-style:none; 
      display:flex; 
      gap:22px; 
      align-items: center;
      flex-wrap: wrap;
    }
    .primary-nav a{
      text-decoration:none; 
      color:#fff; 
      font-weight:600; 
      opacity:0.95;
      transition: color .18s, transform .18s;
    }
    .primary-nav a:hover{ color:var(--accent); transform:translateY(-2px); }
    .primary-nav a.active { color: var(--accent); }

    .page-header {
      margin-top: 72px;
      padding: 60px 50px 40px;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(20,20,20,0.95));
    }

    .page-header h1 {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 800;
      margin-bottom: 12px;
    }

    .page-header p {
      font-size: 18px;
      color: var(--muted);
      max-width: 700px;
    }

    .tab-nav {
      display: flex;
      gap: 0;
      border-bottom: 2px solid rgba(255,255,255,0.1);
      margin-bottom: 40px;
      padding: 0 50px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .tab-nav::-webkit-scrollbar {
      display: none;
    }

    .tab-btn {
      background: transparent;
      border: none;
      color: rgba(255,255,255,0.7);
      padding: 16px 24px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      border-bottom: 3px solid transparent;
      transition: all 0.3s;
      white-space: nowrap;
    }

    .tab-btn:hover {
      color: #fff;
    }

    .tab-btn.active {
      color: #fff;
      border-bottom-color: var(--accent);
    }

    .content-section {
      padding: 0 50px 60px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .coming-soon-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .coming-item {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 24px;
      padding: 20px;
      background: rgba(255,255,255,0.03);
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .coming-item:hover {
      background: rgba(255,255,255,0.08);
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }

    .coming-date {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .month {
      font-size: 14px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .day {
      font-size: 48px;
      font-weight: 800;
      line-height: 1;
      margin: 8px 0;
    }

    .coming-content {
      display: flex;
      gap: 20px;
    }

    .coming-poster {
      width: 140px;
      height: 200px;
      border-radius: 6px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .coming-info {
      flex: 1;
    }

    .coming-info h3 {
      font-size: 22px;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .coming-meta {
      display: flex;
      gap: 12px;
      align-items: center;
      margin-bottom: 12px;
      flex-wrap: wrap;
      font-size: 14px;
      color: var(--muted);
    }

    .new-badge {
      background: var(--accent);
      color: #fff;
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .coming-info p {
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255,255,255,0.85);
      margin-bottom: 16px;
    }

    .coming-genres {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .genre-tag {
      background: rgba(255,255,255,0.1);
      padding: 6px 12px;
      border-radius: 16px;
      font-size: 12px;
    }

    .notify-btn {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.3);
      color: #fff;
      padding: 8px 20px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.2s;
      margin-top: 12px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .notify-btn:hover {
      background: rgba(255,255,255,0.2);
      transform: scale(1.05);
    }

    .notify-btn.active {
      background: var(--accent);
      border-color: var(--accent);
    }

    .trending-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }

    .trending-card {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      background: rgba(255,255,255,0.03);
    }

    .trending-card:hover {
      transform: scale(1.05);
      box-shadow: 0 12px 32px rgba(0,0,0,0.7);
      z-index: 10;
    }

    .trending-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      display: block;
    }

    .trending-info {
      padding: 16px;
    }

    .trending-rank {
      position: absolute;
      top: 8px;
      left: 8px;
      background: var(--accent);
      color: #fff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 800;
      box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    }

    .trending-info h3 {
      font-size: 18px;
      margin-bottom: 8px;
      font-weight: 700;
    }

    .trending-meta {
      display: flex;
      gap: 10px;
      align-items: center;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .match-score {
      color: #46d369;
      font-weight: 700;
    }

    .trending-info p {
      font-size: 14px;
      line-height: 1.5;
      color: rgba(255,255,255,0.8);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .worth-wait {
      margin-bottom: 50px;
    }

    .wait-carousel {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 12px 0;
      scrollbar-width: none;
    }

    .wait-carousel::-webkit-scrollbar {
      display: none;
    }

    .wait-item {
      min-width: 360px;
      flex-shrink: 0;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s;
      background: rgba(255,255,255,0.05);
    }

    .wait-item:hover {
      transform: scale(1.05);
    }

    .wait-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .wait-content {
      padding: 20px;
    }

    .wait-content h4 {
      font-size: 20px;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .wait-date {
      color: var(--accent);
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .wait-content p {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255,255,255,0.8);
    }

    .content-modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 2000;
      overflow-y: auto;
      padding: 40px 20px;
    }

    .content-modal.active {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .modal-content {
      background: #181818;
      border-radius: 10px;
      max-width: 920px;
      width: 100%;
      position: relative;
      animation: slideUp 0.4s ease-out;
      box-shadow: 0 8px 32px rgba(0,0,0,0.8);
    }

    @keyframes slideUp {
      from { transform: translateY(60px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .close-modal {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(24,24,24,0.9);
      border: none;
      font-size: 32px;
      color: #fff;
      cursor: pointer;
      z-index: 10;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .close-modal:hover {
      background: rgba(42,42,42,0.95);
    }

    .modal-hero {
      position: relative;
      height: 450px;
      overflow: hidden;
    }

    .modal-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .modal-hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 65%;
      background: linear-gradient(to top, #181818, transparent);
    }

    .modal-hero-content {
      position: absolute;
      bottom: 50px;
      left: 48px;
      right: 48px;
      z-index: 2;
    }

    .modal-title {
      font-size: 42px;
      font-weight: 800;
      margin-bottom: 18px;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      cursor: pointer;
      border-radius: 6px;
      padding: 14px 32px;
      font-weight: 700;
      font-size: 17px;
      transition: all 0.2s;
    }

    .btn.primary {
      background: #fff;
      color: #000;
    }

    .btn.primary:hover {
      background: rgba(255,255,255,0.85);
      transform: scale(1.05);
    }

    .btn.secondary {
      background: rgba(109,109,110,0.7);
      color: #fff;
    }

    .btn.secondary:hover {
      background: rgba(109,109,110,0.9);
    }

    .modal-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .modal-body {
      padding: 36px 48px 48px;
    }

    .modal-info-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
    }

    .modal-description {
      font-size: 16px;
      line-height: 1.6;
      color: rgba(255,255,255,0.9);
      margin-bottom: 20px;
    }

    .modal-meta-info {
      display: flex;
      flex-direction: column;
      gap: 12px;
      font-size: 14px;
    }

    .meta-row {
      display: flex;
      gap: 8px;
    }

    .meta-label {
      color: #777;
      min-width: 80px;
    }

    .meta-value {
      color: #fff;
    }

    @media (max-width: 1024px) {
      .trending-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
      .wait-item { min-width: 320px; }
    }

    @media (max-width: 768px) {
      .page-header, .content-section, .tab-nav { padding-left: 20px; padding-right: 20px; }
      .page-header h1 { font-size: 2rem; }
      .tab-btn { padding: 14px 18px; font-size: 14px; }
      .coming-item { grid-template-columns: 80px 1fr; gap: 16px; padding: 16px; }
      .day { font-size: 36px; }
      .coming-poster { width: 100px; height: 150px; }
      .coming-info h3 { font-size: 18px; }
      .trending-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
      .wait-item { min-width: 280px; }
      .modal-body { padding: 24px; }
      .modal-hero { height: 350px; }
      .modal-hero-content { left: 24px; right: 24px; bottom: 30px; }
      .modal-title { font-size: 28px; }
      .modal-info-grid { grid-template-columns: 1fr; gap: 24px; }
    }

    @media (max-width: 480px) {
      .page-header { padding: 50px 16px 30px; }
      .content-section { padding: 0 16px 40px; }
      .coming-item { grid-template-columns: 1fr; text-align: center; }
      .coming-content { flex-direction: column; align-items: center; }
      .coming-poster { width: 100%; max-width: 200px; }
      .trending-grid { grid-template-columns: 1fr; }
      .wait-item { min-width: 240px; }
      .btn { padding: 10px 20px; font-size: 14px; }
    }
