
    @import url('inline-font1_1');
    body {
      margin: 0;
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      font-family: 'Roboto', Arial, sans-serif;
      color: #fff;
      min-height: 100vh;
    }
    header {
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(90deg, #ff512f 0%, #dd2476 100%);
      padding: 24px 0 18px 0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .logo img {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 3px solid #fff;
      box-shadow: 0 0 8px #fff3;
    }
    .logo-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.5rem;
      font-weight: bold;
      letter-spacing: 3px;
      background: linear-gradient(90deg, #ff512f, #f9d423, #24fe41, #2196f3, #dd2476, #ff512f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: rainbow 4s linear infinite;
    }
    @keyframes rainbow {
      0% {background-position: 0%;}
      100% {background-position: 100%;}
    }
    main {
      max-width: 1100px;
      margin: 40px auto 0 auto;
      padding: 0 20px 40px 20px;
      background: rgba(22,33,62,0.93);
      border-radius: 18px;
      box-shadow: 0 6px 32px rgba(0,0,0,0.22);
    }
    h1, h2, h3, h4 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      margin-top: 36px;
      margin-bottom: 18px;
      text-shadow: 0 2px 8px #0007;
    }
    h1 { font-size: 2.6rem; color: #f9d423; }
    h2 { font-size: 2.1rem; color: #24fe41; }
    h3 { font-size: 1.6rem; color: #2196f3; }
    h4 { font-size: 1.2rem; color: #ff512f; }
    .section-divider {
      border-bottom: 2px dashed #f9d42344;
      margin: 32px 0 20px 0;
    }
    .search-area {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 30px 0 20px 0;
    }
    .search-area input[type="text"] {
      width: 350px;
      padding: 12px 16px;
      font-size: 1.1rem;
      border-radius: 25px 0 0 25px;
      border: none;
      outline: none;
      background: #fff;
      color: #222;
      font-family: 'Montserrat', sans-serif;
    }
    .search-area button {
      padding: 12px 22px;
      font-size: 1.1rem;
      border-radius: 0 25px 25px 0;
      border: none;
      background: linear-gradient(90deg, #ff512f, #dd2476);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
    }
    .search-area button:hover {
      background: linear-gradient(90deg, #24fe41, #2196f3);
    }
    .trending-list {
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      justify-content: center;
      margin-top: 10px;
    }
    .movie-card, .tv-card {
      background: rgba(34,44,84,0.96);
      border-radius: 16px;
      box-shadow: 0 2px 18px #0006;
      width: 190px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: transform 0.15s;
    }
    .movie-card:hover, .tv-card:hover {
      transform: scale(1.045);
      box-shadow: 0 6px 32px #f9d42366;
    }
    .movie-card img, .tv-card img {
      width: 100%;
      height: 285px;
      object-fit: cover;
      border-bottom: 2px solid #ff512f55;
    }
    .card-content {
      padding: 12px 10px 18px 10px;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .card-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      font-weight: bold;
      color: #f9d423;
      margin-bottom: 4px;
      min-height: 44px;
    }
    .card-overview {
      font-size: 0.95rem;
      color: #eee;
      min-height: 36px;
      max-height: 48px;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .play-btn {
      margin-top: 10px;
      background: linear-gradient(90deg, #24fe41, #2196f3);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: bold;
      border: none;
      border-radius: 18px;
      padding: 8px 18px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s;
      text-decoration: none;
      display: inline-block;
    }
    .play-btn:hover {
      background: linear-gradient(90deg, #ff512f, #dd2476);
    }
    footer {
      margin-top: 40px;
      background: linear-gradient(90deg, #2196f3 0%, #24fe41 100%);
      color: #fff;
      padding: 32px 0 18px 0;
      text-align: center;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      border-radius: 0 0 18px 18px;
      box-shadow: 0 -2px 10px #0005;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 8px;
    }
    .footer-logo img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid #fff;
    }
    .footer-logo span {
      font-weight: bold;
      font-size: 1.3rem;
      background: linear-gradient(90deg, #ff512f, #f9d423, #24fe41, #2196f3, #dd2476, #ff512f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    @media (max-width: 800px) {
      .trending-list {gap: 18px;}
      .movie-card, .tv-card {width: 46vw;}
    }
    @media (max-width: 500px) {
      .movie-card, .tv-card {width: 92vw;}
      .search-area input[type="text"] {width: 70vw;}
    }
  