    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
    }

    body {
      background: #0b0a0f;
      color: #f0eaff;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      padding: 2rem 1.5rem;
    }

    .film-page {
      max-width: 1280px;
      width: 100%;
      background: linear-gradient(145deg, #12101a 0%, #1a1625 100%);
      padding: 2rem 2.5rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(160, 120, 255, 0.15);
      backdrop-filter: blur(2px);
    }

    /* ---------- ШАПКА ---------- */
    .film-header {
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
      margin-bottom: 2.8rem;
      padding-bottom: 1.8rem;
      border-bottom: 1px solid rgba(160, 120, 255, 0.2);
    }

    .poster-wrapper {
      flex: 0 0 260px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(100, 70, 200, 0.4);
      transition: transform 0.25s ease;
      border-radius: 12px;
    }

    .poster-wrapper:hover {
      transform: scale(1.01);
    }

    .poster-wrapper img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
      background: #2a2438;
    }

    .film-meta {
      flex: 1;
      min-width: 280px;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .film-title {
      font-size: 2.6rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #d4c2ff, #b18aff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.2rem;
    }

    .meta-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 0.6rem 1.8rem;
      margin: 0.8rem 0 0.8rem 0;
      background: rgba(30, 25, 45, 0.6);
      padding: 1rem 1.5rem;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(180, 150, 255, 0.12);
      border-radius: 8px;
    }

    .meta-item {
      display: flex;
      align-items: baseline;
      gap: 0.4rem;
      font-size: 0.95rem;
      flex-wrap: wrap;
    }

    .meta-label {
      color: #9a8ab0;
      font-weight: 400;
      letter-spacing: 0.3px;
      font-size: 0.8rem;
      text-transform: uppercase;
      opacity: 0.7;
    }

    .meta-value {
      color: #efe6ff;
      font-weight: 500;
      word-break: break-word;
    }

    .meta-value.rating {
      background: #6b4c9e;
      padding: 0.2rem 0.9rem;
      border-radius: 40px;
      font-weight: 600;
      color: white;
      font-size: 1.1rem;
      box-shadow: 0 0 12px #8b6fd0;
    }

    .short-description {
      font-size: 1rem;
      line-height: 1.6;
      color: #c8bde0;
      background: rgba(20, 16, 30, 0.6);
      padding: 0.9rem 1.5rem;
      border-radius: 30px;
      border-left: 4px solid #a17fe0;
      margin-top: 0.3rem;
    }

    /* ---------- ТАБЫ ---------- */
    .tabs-container {
      margin: 2rem 0 1.2rem 0;
    }

    .tabs {
      display: flex;
      gap: 1.2rem;
      border-bottom: 1px solid rgba(140, 110, 210, 0.25);
      padding-bottom: 0.5rem;
    }

    .tab-btn {
      background: transparent;
      border: none;
      padding: 0.7rem 2rem;
      font-size: 1.2rem;
      font-weight: 600;
      color: #9889b2;
      cursor: pointer;
      border-radius: 60px;
      transition: all 0.2s;
      letter-spacing: 0.3px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .tab-btn i {
      font-size: 1.2rem;
    }

    .tab-btn.active {
      color: #f0eaff;
      background: rgba(130, 90, 200, 0.25);
      backdrop-filter: blur(6px);
      box-shadow: 0 0 0 1px rgba(170, 140, 255, 0.3);
    }

    .tab-btn:hover {
      color: #d6c6ff;
      background: rgba(100, 70, 180, 0.15);
    }

    .tab-content {
      margin-top: 1.8rem;
      min-height: 180px;
      background: rgba(18, 14, 28, 0.5);
      padding: 1.5rem 2rem;
      border: 1px solid rgba(130, 100, 200, 0.12);
      backdrop-filter: blur(2px);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #b8aad0;
      transition: all 0.2s;
    }

    .tab-pane {
      display: none;
      width: 100%;
      text-align: center;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }

    .tab-pane.active {
      display: flex;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1rem;
      width: 100%;
    }

    .gallery-item {
      position: relative;
      cursor: pointer;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.2s;
      aspect-ratio: 16/9;
    }

    .gallery-item:hover {
      transform: scale(1.03);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery-item .play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(130, 90, 200, 0.9);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: white;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .gallery-item:hover .play-icon {
      opacity: 1;
    }

    .trailers-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      max-width: 800px;
    }

    .trailer-item {
      background: rgba(30, 25, 50, 0.7);
      padding: 1.2rem 1.8rem;
      border-radius: 12px;
      border: 1px solid rgba(130, 100, 200, 0.2);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: all 0.2s;
    }

    .trailer-item:hover {
      background: rgba(50, 40, 80, 0.9);
      transform: translateX(5px);
    }

    .trailer-item i {
      font-size: 2rem;
      color: #a17fe0;
    }

    .trailer-item span {
      font-size: 1.1rem;
      color: #d4c2ff;
      font-weight: 500;
    }

    /* ---------- ОПИСАНИЕ ---------- */
    .full-description {
      margin: 2.2rem 0 2.2rem 0;
      background: rgba(24, 19, 38, 0.6);
      padding: 1.8rem 2.2rem;
      border: 1px solid rgba(150, 120, 220, 0.15);
      backdrop-filter: blur(4px);
      border-radius: 12px;
    }

    .full-description h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 0.8rem;
      color: #dacbff;
      letter-spacing: -0.2px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .full-description h3 i {
      color: #a17fe0;
      font-size: 1.6rem;
    }

    .full-description p {
      line-height: 1.8;
      color: #cfc2e8;
      font-size: 1.05rem;
      max-width: 900px;
    }

    /* ---------- ВИДЕОПЛЕЕР ---------- */
    .video-player-block {
      margin-top: 1.8rem;
      background: #0d0b13;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
      border: 1px solid #352b4a;
      border-radius: 12px;
      min-height: 400px;
    }

    .video-player-block .player-wrapper {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 */
      height: 0;
      background: #0a0810;
    }

    .video-player-block .player-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .player-caption {
      padding: 0.9rem 2rem;
      background: rgba(20, 16, 30, 0.8);
      color: #b7a5da;
      font-weight: 400;
      letter-spacing: 0.3px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid #2e2542;
    }

    .player-caption i {
      color: #b28bff;
    }

    /* ---------- МОДАЛЬНОЕ ОКНО (POPUP) ---------- */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 9999;
      justify-content: center;
      align-items: center;
      padding: 2rem;
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal-content {
      position: relative;
      max-width: 90%;
      max-height: 90%;
      background: #1a1625;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 0 50px rgba(130, 90, 200, 0.5);
    }

    .modal-content img {
      max-width: 100%;
      max-height: 85vh;
      object-fit: contain;
      display: block;
    }

    .modal-content iframe {
      width: 100%;
      height: 85vh;
      border: none;
    }

    .modal-close {
      position: absolute;
      top: -40px;
      right: 0;
      background: transparent;
      border: none;
      color: white;
      font-size: 2.5rem;
      cursor: pointer;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s;
    }

    .modal-close:hover {
      transform: scale(1.2);
      color: #b18aff;
    }

    .modal-caption {
      padding: 1rem 1.5rem;
      background: rgba(30, 25, 50, 0.9);
      color: #d4c2ff;
      text-align: center;
      font-size: 1.1rem;
    }

    /* ---------- АДАПТИВ ---------- */
    @media (max-width: 780px) {
      .film-page {
        padding: 1.5rem;
      }

      .film-header {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
      }

      .poster-wrapper {
        flex: 0 0 auto;
        width: 220px;
      }

      .film-title {
        font-size: 2.2rem;
        text-align: center;
      }

      .meta-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem 1rem;
      }

      .tabs {
        justify-content: center;
        flex-wrap: wrap;
      }

      .tab-btn {
        padding: 0.5rem 1.2rem;
        font-size: 1rem;
      }

      .tab-content {
        padding: 1rem;
      }

      .full-description {
        padding: 1.2rem;
      }

      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      }
    }

    @media (max-width: 500px) {
      .meta-grid {
        grid-template-columns: 1fr;
      }

      .film-title {
        font-size: 1.8rem;
      }
    }

    i.fa-star {
      color: #f5c542;
      margin-right: 4px;
    }