/* General Body & Font */
body {
    font-family: 'Inter', sans-serif;
  }
  
  /* Background Pattern */
  .bg-pattern {
    background-image: radial-gradient(circle at 1px 1px, rgba(203, 213, 225, 0.1) 1px, transparent 0);
    background-size: 2rem 2rem;
  }
  
  /* Skeleton Loader */
  .skeleton-card {
    background: linear-gradient(110deg, #1f2937 8%, #374151 18%, #1f2937 33%);
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
  }
  @keyframes shine {
    to {
      background-position-x: -200%;
    }
  }
  
  /* Collapsible Sections (Search & Sync) */
  .season-list,
  #sync-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
  }
  .season-list.open {
    max-height: 500px;
  }
  #sync-section-content.open {
    max-height: 1000px;
  }
  
  /* Modals */
  #adblock-modal,
  #auth-modal,
  #watchlist-modal {
    transition: opacity 0.3s ease-in-out;
  }
  #adblock-modal.hidden,
  #auth-modal.hidden,
  #watchlist-modal.hidden {
    pointer-events: none;
  }
  
  /* Player Page Specific */
  #content-list::-webkit-scrollbar { width: 8px; }
  #content-list::-webkit-scrollbar-track { background: #2d3748; }
  #content-list::-webkit-scrollbar-thumb { background: #4a5568; border-radius: 4px; }
  #content-list::-webkit-scrollbar-thumb:hover { background: #718096; }
  .content-btn.active { background-color: #06b6d4; color: white; }
  
  /* General hidden utility class */
  .hidden {
    display: none;
  }
  