
    body {
      margin: 0;
      background: linear-gradient(135deg, #191654 0%, #43c6ac 100%);
      color: #fff;
      font-family: 'Montserrat', Arial, sans-serif;
      min-height: 100vh;
    }
    header {
      background: #181818;
      display: flex;
      align-items: center;
      padding: 18px 0 10px 0;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    .logo-area {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .logo-area img {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      box-shadow: 0 0 10px #fff8;
    }
    .logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      background: linear-gradient(90deg, #ffb347 10%, #43c6ac 90%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 900;
      letter-spacing: 2px;
      text-shadow: 2px 2px 8px #000a;
    }
    main {
      max-width: 1200px;
      margin: 40px auto 0 auto;
      padding: 24px;
      background: rgba(30,30,50,0.96);
      border-radius: 18px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    }
    h1, h2, h3 {
      font-family: 'Playfair Display', serif;
      margin-top: 32px;
      margin-bottom: 12px;
      color: #ffd452;
      text-shadow: 1px 1px 6px #000a;
      letter-spacing: 1px;
    }
    h1 { font-size: 2.7rem; }
    h2 { font-size: 2.1rem; }
    h3 { font-size: 1.6rem; }
    .colorful {
      background: linear-gradient(90deg, #ff5858 20%, #43c6ac 80%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: bold;
    }
    .section {
      margin-bottom: 36px;
      line-height: 1.7;
      font-size: 1.12rem;
    }
    .search-area {
      margin: 32px 0 24px 0;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
    }
    .search-input {
      padding: 12px 18px;
      font-size: 1.1rem;
      border-radius: 8px;
      border: none;
      width: 320px;
      outline: none;
      color: #222;
    }
    .search-btn {
      background: linear-gradient(90deg, #43c6ac 10%, #ffd452 90%);
      border: none;
      color: #222;
      padding: 12px 26px;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1.1rem;
      cursor: pointer;
      box-shadow: 0 2px 8px #0004;
      transition: background 0.2s;
    }
    .search-btn:hover {
      background: linear-gradient(90deg, #ffd452 10%, #43c6ac 90%);
    }
    .movie-list, .tv-list, .search-results {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 22px;
      margin-top: 20px;
    }
    .movie-card, .tv-card, .result-card {
      background: linear-gradient(120deg, #232526 0%, #414345 100%);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 16px #0006;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 12px 8px 18px 8px;
      transition: transform 0.15s;
    }
    .movie-card:hover, .tv-card:hover, .result-card:hover {
      transform: scale(1.04);
      box-shadow: 0 8px 24px #000a;
    }
    .movie-card img, .tv-card img, .result-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 10px;
      background: #444;
    }
    .movie-title, .tv-title, .result-title {
      font-size: 1.08rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: #ffd452;
      text-align: center;
      min-height: 2.1em;
    }
    .movie-meta, .tv-meta, .result-meta {
      font-size: 0.98rem;
      color: #fff;
      margin-bottom: 8px;
      text-align: center;
    }
    .play-btn {
      background: linear-gradient(90deg, #43c6ac 10%, #ffd452 90%);
      color: #222;
      font-weight: bold;
      padding: 8px 18px;
      border-radius: 8px;
      text-decoration: none;
      margin-top: 8px;
      font-size: 1rem;
      box-shadow: 0 2px 8px #0003;
      transition: background 0.2s;
      display: inline-block;
    }
    .play-btn:hover {
      background: linear-gradient(90deg, #ffd452 10%, #43c6ac 90%);
      color: #000;
    }
    footer {
      margin-top: 60px;
      background: #181818;
      padding: 36px 0 20px 0;
      text-align: center;
      border-radius: 0 0 18px 18px;
      color: #ffd452;
      font-family: 'Playfair Display', serif;
      font-size: 1.12rem;
      letter-spacing: 1px;
      box-shadow: 0 -2px 8px #000a;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 10px;
    }
    .footer-logo img {
      width: 32px;
      height: 32px;
      border-radius: 7px;
    }
    .footer-logo span {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      background: linear-gradient(90deg, #43c6ac 10%, #ffd452 90%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 900;
      letter-spacing: 1px;
    }
    @media (max-width: 700px) {
      main {
        padding: 7vw 2vw;
      }
      .movie-list, .tv-list, .search-results {
        grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
      }
      .movie-card img, .tv-card img, .result-card img {
        height: 180px;
      }
    }
  