
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
    
    :root {
      --primary: #ff4c60;
      --primary-light: #ff6b7a;
      --primary-dark: #e63e50;
      --bg: #0f0f1a;
      --card: #1e1e2f;
      --text: #fff;
      --text-secondary: #b4b4b4;
      --accent: #6c63ff;
      --gradient: linear-gradient(135deg, #ff4c60, #6c63ff);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.6;
      min-height: 100vh;
    }
    
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    
    /* NAVIGATION */
    nav {
      background-color: rgba(14, 14, 26, 0.95);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2rem;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      background: var(--gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 0 10px rgba(255, 76, 96, 0.3);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .logo i {
      color: var(--primary);
    }
    
    .nav-links {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }
    
    .nav-links a {
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
      padding: 5px 0;
    }
    
    .nav-links a:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: var(--primary);
      left: 0;
      bottom: 0;
      transition: width 0.3s ease;
    }
    
    .nav-links a:hover {
      color: var(--primary);
    }
    
    .nav-links a:hover:after {
      width: 100%;
    }
    
    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: white;
    }
    
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(14, 14, 26, 0.98);
        position: absolute;
        top: 70px;
        left: 0;
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      }
      
      .nav-links.active {
        display: flex;
        animation: slideDown 0.3s forwards;
      }
      
      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      .menu-toggle {
        display: block;
      }
    }
    
    /* SEARCH SECTION */
    .search-section {
      background: radial-gradient(circle at 50% 50%, var(--card), var(--bg));
      padding: 2rem 1rem;
      margin-bottom: 2rem;
    }
    
    .search-header {
      text-align: center;
      margin-bottom: 2rem;
    }
    
    .search-header h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      background: var(--gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    .search-header p {
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .search-container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .search-bar {
      position: relative;
      margin-bottom: 1.5rem;
    }
    
    .search-input {
      width: 100%;
      padding: 1rem 1.5rem 1rem 3.5rem;
      border: 2px solid transparent;
      border-radius: 50px;
      background: var(--card);
      color: var(--text);
      font-size: 1rem;
      outline: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .search-input:focus {
      border-color: var(--primary);
      box-shadow: 0 4px 20px rgba(255, 76, 96, 0.3);
    }
    
    .search-icon {
      position: absolute;
      left: 1.2rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-secondary);
      font-size: 1.2rem;
    }
    
    .search-input:focus + .search-icon {
      color: var(--primary);
    }
    
    /* FILTER SECTION */
    .filter-section {
      background: var(--card);
      border-radius: 15px;
      padding: 1.5rem;
      margin-bottom: 2rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .filter-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
      color: var(--primary);
      font-weight: 600;
    }
    
    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    
    .filter-btn {
      background: var(--bg);
      color: var(--text);
      border: 2px solid transparent;
      padding: 0.5rem 1rem;
      border-radius: 25px;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
    }
    
    .filter-btn:hover {
      border-color: var(--primary);
      transform: translateY(-2px);
    }
    
    .filter-btn.selected {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(255, 76, 96, 0.3);
    }
    
    /* RESULTS SECTION */
    .results-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
      gap: 1rem;
    }
    
    .results-count {
      color: var(--text-secondary);
      font-size: 0.9rem;
    }
    
    .sort-controls {
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }
    
    .sort-btn {
      background: var(--card);
      color: var(--text);
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.8rem;
    }
    
    .sort-btn:hover, .sort-btn.active {
      background: var(--primary);
      color: white;
    }
    
    .results-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      padding: 0.5rem;
    }
    
    @media (min-width: 768px) {
      .results-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    
    .result-card {
      background: var(--card);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .result-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(255, 76, 96, 0.2);
    }
    
    .result-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .result-card:hover img {
      transform: scale(1.05);
    }
    
    .card-content {
      padding: 1rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    
    .card-title {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text);
      text-decoration: none;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    .card-meta {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      font-size: 0.8rem;
      color: var(--text-secondary);
      margin-top: auto;
    }
    
    .card-rating {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      color: gold;
      font-size: 0.8rem;
      margin-bottom: 0.5rem;
    }
    
    .genre-badge {
      position: absolute;
      top: 8px;
      left: 8px;
      background: rgba(14, 14, 26, 0.9);
      color: var(--primary);
      padding: 2px 8px;
      border-radius: 15px;
      font-size: 0.7rem;
      font-weight: 600;
    }
    
    /* LOADING & EMPTY STATES */
    .loading, .no-results {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 3rem;
      text-align: center;
      color: var(--text-secondary);
      grid-column: 1 / -1;
    }
    
    .loading i, .no-results i {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }
    
    .loader {
      display: flex;
      gap: 0.3rem;
      margin: 1rem 0;
    }
    
    .loader .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      animation: bounce 1.5s infinite ease-in-out;
    }
    
    .loader .dot:nth-child(2) {
      animation-delay: 0.2s;
      background: var(--accent);
    }
    
    .loader .dot:nth-child(3) {
      animation-delay: 0.4s;
    }
    
    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }
    
    /* FOOTER */
        /* FOOTER */
    footer {
      background: linear-gradient(to top, var(--bg), var(--card));
      padding: 4rem 2rem 2rem;
      color: var(--text-secondary);
      margin-top: 4rem;
    }
    
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
      max-width: 1280px;
      margin: 0 auto;
    }
    
    .footer-section {
      flex: 1 1 250px;
    }
    
    .footer-section h3 {
      margin-bottom: 1.5rem;
      color: var(--primary);
      font-size: 1.2rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    
    .footer-section h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--primary);
    }
    
    .footer-section p {
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }
    
    .footer-section a {
      display: block;
      color: var(--text-secondary);
      text-decoration: none;
      margin-bottom: 0.8rem;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }
    
    .footer-section a:hover {
      color: var(--primary);
      transform: translateX(5px);
    }
    
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }
    
    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: var(--card);
      border-radius: 50%;
      color: var(--text);
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }
    
    .social-links a:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-5px);
    }
    
    .footer-bottom {
      text-align: center;
      margin-top: 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 2rem;
      font-size: 0.9rem;
      color: var(--text-secondary);
    }
    
    /* LOADING ANIMATION */
    .loader {
      display: flex;
      justify-content: center;
      margin: 2rem 0;
      width: 100%;
      box-sizing: border-box;
      padding: 0 120px;
    }
    
    .loader .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--primary);
      margin: 0 5px;
      animation: bounce 1.5s infinite ease-in-out;
    }
    
    .loader .dot:nth-child(2) {
      animation-delay: 0.2s;
      background: var(--accent);
    }
    
    .loader .dot:nth-child(3) {
      animation-delay: 0.4s;
    }
    
    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-15px);
      }
    }
    
    /* SCROLL TO TOP BUTTON */
    .scroll-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 45px;
      height: 45px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 100;
      box-shadow: 0 4px 15px rgba(255, 76, 96, 0.4);
    }
    
    .scroll-top.active {
      opacity: 1;
      visibility: visible;
    }
    
    .scroll-top:hover {
      background: var(--accent);
      transform: translateY(-5px);
    }
    
    /* SCROLL TO TOP */
    .scroll-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 45px;
      height: 45px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 100;
      box-shadow: 0 4px 15px rgba(255, 76, 96, 0.4);
    }
    
    .scroll-top.active {
      opacity: 1;
      visibility: visible;
    }
    
    .scroll-top:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }
    
    .fade-in {
      animation: fadeIn 0.5s forwards;
    }
    
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
