
    @import url('inline-font1_1');
    body {
      font-family: 'Roboto', Arial, sans-serif;
      background: linear-gradient(135deg, #18122B 0%, #635985 100%);
      margin: 0;
      color: #fff;
    }
    header {
      background: #443C68;
      padding: 20px 0 10px 0;
      text-align: center;
      border-bottom: 5px solid #6C4AB6;
    }
    .logo {
      width: 90px;
      border-radius: 20px;
      box-shadow: 0 0 10px #6C4AB6;
      margin-bottom: 10px;
    }
    h1 {
      font-family: 'Montserrat', Arial, sans-serif;
      font-size: 2.5em;
      letter-spacing: 2px;
      background: linear-gradient(90deg, #FF6F61, #FFD166, #06D6A0, #118AB2, #6C4AB6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin: 0 0 10px 0;
    }
    .search-area {
      text-align: center;
      margin: 25px 0 20px 0;
    }
    .search-bar {
      width: 50%;
      padding: 12px;
      border-radius: 30px;
      border: none;
      font-size: 1.1em;
      color: #222;
    }
    .search-btn {
      background: linear-gradient(90deg, #FF6F61, #6C4AB6);
      color: #fff;
      border: none;
      border-radius: 30px;
      padding: 12px 25px;
      font-size: 1.1em;
      cursor: pointer;
      margin-left: 10px;
      transition: background 0.3s;
    }
    .search-btn:hover {
      background: linear-gradient(90deg, #FFD166, #06D6A0);
      color: #222;
    }
    .section-title {
      font-family: 'Montserrat', Arial, sans-serif;
      font-size: 2em;
      margin: 40px 0 20px 0;
      background: linear-gradient(90deg, #FFD166, #06D6A0, #6C4AB6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: 1px;
    }
    .movie-list, .tv-list, .search-results {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 22px;
      margin-bottom: 30px;
    }
    .movie-card, .tv-card, .result-card {
      background: #393053;
      border-radius: 18px;
      box-shadow: 0 4px 20px #6C4AB6aa;
      width: 180px;
      padding: 14px 10px 18px 10px;
      text-align: center;
      transition: transform 0.2s;
      position: relative;
    }
    .movie-card:hover, .tv-card:hover, .result-card:hover {
      transform: scale(1.04);
      box-shadow: 0 6px 30px #FFD16688;
    }
    .movie-card img, .tv-card img, .result-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 12px;
      border: 3px solid #6C4AB6;
    }
    .movie-title, .tv-title, .result-title {
      font-size: 1.1em;
      font-weight: bold;
      color: #FFD166;
      margin-bottom: 8px;
      min-height: 40px;
      text-shadow: 0 2px 6px #222;
    }
    .play-btn {
      display: inline-block;
      margin-top: 8px;
      background: linear-gradient(90deg, #06D6A0, #118AB2);
      color: #fff;
      border: none;
      border-radius: 14px;
      padding: 8px 20px;
      font-size: 1em;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.2s;
      box-shadow: 0 2px 10px #118AB2aa;
    }
    .play-btn:hover {
      background: linear-gradient(90deg, #FFD166, #FF6F61);
      color: #222;
    }
    footer {
      background: #443C68;
      color: #FFD166;
      text-align: center;
      padding: 30px 10px 24px 10px;
      font-size: 1.1em;
      border-top: 5px solid #6C4AB6;
      margin-top: 40px;
    }
    .footer-logo {
      width: 60px;
      margin-bottom: 10px;
      border-radius: 12px;
      box-shadow: 0 0 8px #FFD166;
    }
    @media (max-width: 700px) {
      .movie-list, .tv-list, .search-results { flex-direction: column; align-items: center; }
      .search-bar { width: 90%; }
      .movie-card, .tv-card, .result-card { width: 90vw; }
    }
  