
    @import url('inline-font1_1');
    body {
      margin: 0;
      background: linear-gradient(135deg, #141e30 0%, #243b55 100%);
      color: #fff;
      font-family: 'Roboto', Arial, sans-serif;
    }
    header {
      background: linear-gradient(90deg, #ff4e50 0%, #f9d423 100%);
      padding: 20px 0 10px 0;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    .logo-title {
      font-family: 'Luckiest Guy', cursive;
      font-size: 2.7rem;
      letter-spacing: 2px;
      color: #fff;
      text-shadow: 2px 2px 8px #000, 0 0 10px #f9d423;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .logo-title img {
      height: 48px;
      vertical-align: middle;
      border-radius: 12px;
      box-shadow: 0 2px 8px #000;
    }
    nav {
      margin: 20px 0 10px 0;
    }
    nav a {
      font-family: 'Luckiest Guy', cursive;
      font-size: 1.1rem;
      text-decoration: none;
      margin: 0 18px;
      padding: 8px 18px;
      border-radius: 24px;
      background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
      color: #fff;
      transition: background 0.3s, color 0.3s;
      border: 2px solid #fff0;
      box-shadow: 0 2px 6px #0006;
    }
    nav a:hover {
      background: linear-gradient(90deg, #f7971e 0%, #ffd200 100%);
      color: #222;
      border: 2px solid #fff;
    }
    main {
      max-width: 1100px;
      margin: 30px auto 0 auto;
      background: rgba(0,0,0,0.85);
      border-radius: 18px;
      box-shadow: 0 4px 24px #0008;
      padding: 32px 28px 32px 28px;
    }
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Luckiest Guy', cursive;
      margin-top: 32px;
      margin-bottom: 18px;
      color: #ffef4a;
      text-shadow: 1px 1px 8px #000, 0 0 8px #f9d423;
      letter-spacing: 1.2px;
    }
    h1 { font-size: 2.5rem; color: #ff4e50; }
    h2 { font-size: 2rem; color: #43cea2; }
    h3 { font-size: 1.5rem; color: #f9d423; }
    h4 { font-size: 1.2rem; color: #43cea2; }
    h5, h6 { color: #ffd200; }
    .rainbow { background: linear-gradient(90deg, #ff4e50, #f9d423, #43cea2, #185a9d, #ff4e50); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .search-area {
      margin: 32px 0 24px 0;
      text-align: center;
    }
    .search-area input[type="text"] {
      width: 330px;
      padding: 12px 18px;
      font-size: 1.1rem;
      border-radius: 24px 0 0 24px;
      border: none;
      outline: none;
      background: #222;
      color: #fff;
      font-family: 'Roboto', Arial, sans-serif;
      box-shadow: 0 2px 8px #0006;
    }
    .search-area button {
      padding: 12px 24px;
      font-size: 1.1rem;
      border-radius: 0 24px 24px 0;
      border: none;
      background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
      color: #fff;
      font-family: 'Luckiest Guy', cursive;
      cursor: pointer;
      box-shadow: 0 2px 8px #0006;
      transition: background 0.3s;
    }
    .search-area button:hover {
      background: linear-gradient(90deg, #f7971e 0%, #ffd200 100%);
      color: #222;
    }
    .search-results {
      margin: 20px 0 0 0;
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      justify-content: center;
    }
    .movie-list, .tv-list {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
      margin-top: 24px;
    }
    .movie-card, .tv-card, .search-card {
      background: linear-gradient(135deg, #232526 0%, #414345 100%);
      border-radius: 18px;
      box-shadow: 0 2px 12px #0008;
      width: 180px;
      padding: 18px 12px 14px 12px;
      text-align: center;
      color: #fff;
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
      overflow: hidden;
    }
    .movie-card:hover, .tv-card:hover, .search-card:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 24px #000a;
      z-index: 2;
    }
    .movie-card img, .tv-card img, .search-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 12px;
      box-shadow: 0 2px 8px #0007;
    }
    .movie-card .title, .tv-card .title, .search-card .title {
      font-family: 'Luckiest Guy', cursive;
      font-size: 1.1rem;
      margin-bottom: 8px;
      color: #f9d423;
      text-shadow: 1px 1px 4px #000;
      min-height: 42px;
    }
    .movie-card .year, .tv-card .year, .search-card .year {
      color: #43cea2;
      font-size: 0.95rem;
      margin-bottom: 8px;
    }
    .movie-card .play-btn, .tv-card .play-btn, .search-card .play-btn {
      display: inline-block;
      margin-top: 8px;
      padding: 8px 18px;
      border-radius: 24px;
      background: linear-gradient(90deg, #ff4e50 0%, #f9d423 100%);
      color: #fff;
      font-family: 'Luckiest Guy', cursive;
      font-size: 1rem;
      text-decoration: none;
      box-shadow: 0 2px 8px #0006;
      transition: background 0.3s;
    }
    .movie-card .play-btn:hover, .tv-card .play-btn:hover, .search-card .play-btn:hover {
      background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
      color: #fff;
    }
    footer {
      margin: 40px 0 0 0;
      padding: 32px 0 18px 0;
      background: linear-gradient(90deg, #185a9d 0%, #43cea2 100%);
      text-align: center;
      border-radius: 0 0 18px 18px;
      box-shadow: 0 -2px 12px #0006;
      color: #fff;
    }
    .footer-links {
      margin-bottom: 18px;
    }
    .footer-links a {
      color: #fff;
      text-decoration: none;
      margin: 0 18px;
      font-family: 'Luckiest Guy', cursive;
      font-size: 1.1rem;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: #f9d423;
      text-decoration: underline;
    }
    .footer-credit {
      font-size: 0.98rem;
      color: #ffe;
      margin-top: 12px;
    }
    @media (max-width: 900px) {
      main { padding: 16px 2vw; }
      .movie-card, .tv-card, .search-card { width: 44vw; min-width: 140px; }
    }
    @media (max-width: 600px) {
      nav a { font-size: 0.98rem; padding: 8px 8px; }
      .movie-card, .tv-card, .search-card { width: 90vw; min-width: 110px; }
      .logo-title { font-size: 1.5rem; }
    }
  