
  body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: radial-gradient(circle at top left, #1a001a, #330033, #1a001a);
    color: #fff;
    min-height: 100vh;
  }

  main {
    padding: 30px 50px;
    max-width: 1200px;
    margin: auto;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }

  header .logo {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  header .logo h1 {
    font-size: 2rem;
    margin: 0;
    background: linear-gradient(90deg, #ff0055, #ff66aa);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255,0,85,0.7);
  }

  .top-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 12px;
    background: rgba(255,0,85,0.1);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255,0,85,0.2);
  }

  .top-nav a:hover {
    background: rgba(255,0,85,0.3);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255,0,85,0.6);
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
  }

  .card {
    background: rgba(255,0,85,0.05);
    border: 1px solid rgba(255,0,85,0.3);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
  }

  .card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
      0 20px 40px rgba(0,0,0,0.7), 
      0 0 20px rgba(255,0,85,0.8),
      0 0 30px rgba(255,102,170,0.7);
  }

  .poster-wrap {
    position: relative;
  }

  .poster-wrap img {
    width: 100%;
    display: block;
    border-radius: 20px 20px 0 0;
    transition: transform 0.4s ease;
  }

  .card:hover .poster-wrap img {
    transform: scale(1.08);
    filter: brightness(1.1);
  }

  .poster-wrap .favBtn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(45deg, #ff0055, #ff66aa);
    border: none;
    color: #fff;
    padding: 7px 12px;
    font-size: 0.85rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(255,0,85,0.7);
  }

  .poster-wrap .favBtn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(255,0,85,1), 0 0 15px rgba(255,102,170,0.8);
  }

  .meta {
    padding: 12px;
    text-align: center;
    backdrop-filter: blur(5px);
  }

  .meta h3 {
    font-size: 1.1rem;
    margin: 5px 0;
    color: #fff;
    text-shadow: 0 0 8px rgba(255,0,85,0.7);
  }

  .rating {
    position: absolute;
    top: 10px;
    left: 10px;
    background: radial-gradient(circle, #ff0055, #ff66aa);
    color: #fff;
    font-weight: bold;
    padding: 4px 9px;
    border-radius: 12px;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(0,0,0,0.6);
  }

  .empty {
    text-align: center;
    margin-top: 60px;
    font-size: 1.4rem;
    color: #ff66aa;
    font-style: italic;
    text-shadow: 0 0 8px rgba(255,0,85,0.5);
  }

  @media(max-width:600px){
    main { padding: 20px 15px; }
    header .logo h1 { font-size: 1.6rem; }
    .grid { gap: 20px; }
  }
