/*
style.css - Estilos para Zenit Player
Author: CrisDEV
*/
/* Variables CSS para temas */
:root {
  /* Colores Zenit Azul */
  --zenit-blue: #007bff;
  --zenit-dark-blue: #0056b3;
  --netflix-black: #000000;
  --netflix-dark-gray: #141414;
  --netflix-gray: #333333;
  --netflix-light-gray: #999999;
  --netflix-white: #ffffff;
  
  /* Tema Claro */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  --bg-modal: rgba(255, 255, 255, 0.95);
  --text-primary: #000000;
  --text-secondary: #6c757d;
  --text-tertiary: #999999;
  --border-color: #e0e0e0;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
  --overlay: rgba(0, 0, 0, 0.7);
  --gradient-overlay: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
}

.light-theme {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  --bg-modal: rgba(255, 255, 255, 0.95);
  --text-primary: #000000;
  --text-secondary: #6c757d;
  --text-tertiary: #999999;
  --border-color: #e0e0e0;
  --navbar-bg: rgba(255, 255, 255, 0.9);
}

.dark-theme {
  --bg-primary: #141414;
  --bg-secondary: #1f1f1f;
  --bg-tertiary: #2a2a2a;
  --bg-modal: rgba(20, 20, 20, 0.95);
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-tertiary: #999999;
  --border-color: #333333;
  --navbar-bg: rgba(20, 20, 20, 0.9);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  transition: all 0.3s ease;
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--netflix-red);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--netflix-dark-red);
}

/* App Container */
.app-container {
  min-height: 100vh;
  position: relative;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--bg-primary);
  box-shadow: var(--shadow);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.logo-text {
  font-size: 24px;
  font-weight: 900;
  color: var(--netflix-red);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--netflix-red);
  border-radius: 1px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 20px;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.theme-toggle:hover {
  background: var(--bg-secondary);
}

.search-container {
  position: relative;
}

.search-input {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 8px 40px 8px 16px;
  color: var(--text-primary);
  width: 250px;
  transition: all 0.2s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--netflix-red);
  box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.2);
}

.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
}

.admin-btn {
  background: var(--netflix-red);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-btn:hover {
  background: var(--netflix-dark-red);
  transform: translateY(-1px);
}

.profile-avatar {
  width: 32px;
  height: 32px;
  background: var(--netflix-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
}

/* Main Container */
.main-container {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
}

/* Content Sections */
.content-section {
  display: none;
  padding: 0;
}

.content-section.active {
  display: block;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 20, 20, 0.8) 0%,
    transparent 50%
  ),
  linear-gradient(
    180deg,
    transparent 0%,
    rgba(20, 20, 20, 0.8) 100%
  );
}

.hero-content {
  padding: 0 50px;
  max-width: 50%;
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
}

.hero-description {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.play-btn,
.info-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.play-btn {
  background: white;
  color: black;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.8);
}

.info-btn {
  background: rgba(109, 109, 110, 0.7);
  color: white;
}

.info-btn:hover {
  background: rgba(109, 109, 110, 0.5);
}

/* Content Rows */
.content-rows {
  padding: 40px 50px;
}

.content-row {
  margin-bottom: 40px;
}

.row-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.movies-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.movies-carousel::-webkit-scrollbar {
  height: 4px;
}

.movie-card {
  min-width: 280px;
  height: 420px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-secondary);
}

.movie-card:hover {
  transform: scale(1.05);
  z-index: 10;
}

.movie-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-overlay);
  padding: 20px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.movie-card:hover .movie-overlay {
  transform: translateY(0);
}

.movie-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.movie-meta {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 8px;
}

.movie-description {
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Section Headers */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 50px 20px;
}

.section-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-primary);
}

.section-filters {
  display: flex;
  gap: 16px;
}

.section-filters select {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--text-primary);
  cursor: pointer;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 50px 40px;
}

/* Video Player Modal */
.player-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.player-container {
  width: 100%;
  max-width: 1200px;
  background: var(--bg-primary);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.close-player {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: all 0.2s ease;
}

.close-player:hover {
  background: rgba(0, 0, 0, 0.8);
}

.video-wrapper {
  position: relative;
  background: black;
  aspect-ratio: 16/9;
}

#videoPlayer {
  width: 100%;
  height: 100%;
  outline: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.loading-spinner {
  text-align: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.player-info {
  padding: 20px;
}

.player-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.player-info p {
  color: var(--text-secondary);
  line-height: 1.5;
}

.player-controls {
  display: flex;
  gap: 20px;
  padding: 0 20px 20px;
}

.control-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.control-group label {
  font-weight: 500;
  color: var(--text-secondary);
}

.control-group select {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 6px 10px;
  color: var(--text-primary);
}

/* Detail Modal */
.detail-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1500;
  overflow-y: auto;
}

.detail-container {
  min-height: 100vh;
  background: var(--bg-primary);
  position: relative;
}

.close-detail {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
}

.detail-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.detail-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.detail-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 20, 20, 0.9) 0%,
    transparent 50%
  ),
  linear-gradient(
    180deg,
    transparent 0%,
    rgba(20, 20, 20, 0.9) 100%
  );
}

.detail-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 30px;
  padding: 0 50px 50px;
  color: white;
}

.detail-poster {
  width: 300px;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-heavy);
}

.detail-info {
  flex: 1;
  max-width: 600px;
}

.detail-info h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.detail-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.detail-meta span {
  opacity: 0.9;
}

.detail-info p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.detail-buttons {
  display: flex;
  gap: 16px;
}

.add-list-btn {
  background: rgba(109, 109, 110, 0.7);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.add-list-btn:hover {
  background: rgba(109, 109, 110, 0.5);
}

.detail-episodes {
  padding: 40px 50px;
}

.detail-episodes h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.episodes-container {
  display: grid;
  gap: 16px;
}

.episode-card {
  display: flex;
  gap: 16px;
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.episode-card:hover {
  background: var(--bg-tertiary);
  transform: translateY(-2px);
}

.episode-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--netflix-red);
  min-width: 40px;
}

.episode-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.episode-info p {
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: var(--bg-modal);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
}

.admin-modal {
  max-width: 800px;
}

.modal-header {
  background: var(--bg-secondary);
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.close-btn:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.modal-body {
  padding: 20px;
  max-height: calc(90vh - 80px);
  overflow-y: auto;
}

/* Admin Panel */
.admin-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 4px;
}

.admin-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 12px 16px;
  border-radius: 6px;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-tab.active,
.admin-tab:hover {
  background: var(--netflix-red);
  color: white;
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--netflix-red);
  box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.2);
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.server-help {
  margin-top: 8px;
  padding: 12px;
  background: var(--bg-tertiary);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  border-left: 3px solid var(--netflix-red);
}

.submit-btn {
  background: var(--netflix-red);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  width: 100%;
}

.submit-btn:hover {
  background: var(--netflix-dark-red);
  transform: translateY(-1px);
}

/* Episodes Management */
.episodes-management {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.episodes-management h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

/* Manage Content */
.manage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.stat-card {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.stat-card h3 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--netflix-red);
  margin-bottom: 4px;
}

.stat-card p {
  color: var(--text-secondary);
  font-weight: 500;
}

.manage-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 4px;
}

.manage-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.manage-tab.active,
.manage-tab:hover {
  background: var(--netflix-red);
  color: white;
}

.manage-list {
  display: grid;
  gap: 12px;
}

.manage-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
  transition: all 0.2s ease;
}

.manage-item:hover {
  background: var(--bg-tertiary);
  transform: translateY(-1px);
}

.manage-item-info h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.manage-item-info p {
  color: var(--text-secondary);
  font-size: 14px;
}

.manage-actions {
  display: flex;
  gap: 8px;
}

.edit-btn,
.delete-btn {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.edit-btn {
  background: #007bff;
  color: white;
}

.edit-btn:hover {
  background: #0056b3;
}

.delete-btn {
  background: var(--netflix-red);
  color: white;
}

.delete-btn:hover {
  background: var(--netflix-dark-red);
}

/* Notifications */
.notifications-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notification {
  background: var(--bg-modal);
  backdrop-filter: blur(20px);
  color: var(--text-primary);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-heavy);
  border-left: 4px solid var(--netflix-red);
  max-width: 350px;
  animation: slideInRight 0.3s ease;
  cursor: pointer;
  transition: all 0.2s ease;
}

.notification:hover {
  transform: translateX(-5px);
}

.notification.success {
  border-left-color: #28a745;
}

.notification.error {
  border-left-color: #dc3545;
}

.notification.warning {
  border-left-color: #ffc107;
}

.notification.info {
  border-left-color: #17a2b8;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .navbar {
    padding: 0 30px;
  }
  
  .hero-content,
  .content-rows,
  .section-header,
  .content-grid {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .detail-content {
    padding: 0 30px 30px;
  }
  
  .detail-episodes {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
  
  .nav-left {
    gap: 20px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .nav-right {
    gap: 12px;
  }
  
  .search-input {
    width: 180px;
  }
  
  .hero-content {
    max-width: 80%;
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .content-rows,
  .section-header,
  .content-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .section-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .section-header h1 {
    font-size: 2rem;
  }
  
  .movies-carousel {
    gap: 12px;
  }
  
  .movie-card {
    min-width: 250px;
    height: 375px;
  }
  
  .content-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }
  
  .detail-content {
    flex-direction: column;
    text-align: center;
    padding: 0 20px 30px;
  }
  
  .detail-poster {
    width: 250px;
    height: 375px;
    margin: 0 auto;
  }
  
  .detail-info h1 {
    font-size: 2rem;
  }
  
  .detail-meta {
    justify-content: center;
  }
  
  .detail-episodes {
    padding: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .manage-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .modal-content {
    margin: 10px;
    max-width: calc(100% - 20px);
  }
  
  .player-modal {
    padding: 10px;
  }
}

.iframe-controls {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px 12px;
    transition: opacity 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.iframe-controls button {
    transition: all 0.2s ease;
}

.iframe-controls button:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

/* Contenedores de iframe */
.mega-iframe-container,
.video-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10;
    border-radius: 0;
}

.mega-iframe-container iframe,
.video-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

/* Mejorar los botones de servidor en episodios */
.episode-servers {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
}

.episode-server-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 32px;
}

.episode-server-btn:hover {
    opacity: 0.8;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.episode-server-btn:active {
    transform: translateY(0);
}

/* Mejorar episodios cards */
.episode-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.episode-card:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--netflix-red);
}

.episode-info {
    display: flex;
    gap: 16px;
    width: 100%;
    align-items: flex-start;
}

.episode-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--netflix-red);
    min-width: 50px;
    background: rgba(229, 9, 20, 0.1);
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid rgba(229, 9, 20, 0.2);
}

.episode-details {
    flex: 1;
}

.episode-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.3;
}

.episode-details p {
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.episode-meta {
    display: flex;
    gap: 12px;
    margin: 8px 0;
    font-size: 12px;
    color: var(--text-tertiary);
}

.episode-meta span {
    background: var(--bg-tertiary);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Mejorar botones de servidor en detail */
.servers-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.server-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
}

.server-btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Mejorar indicadores de servidor */
.server-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    color: white;
    margin-right: 4px;
    margin-bottom: 2px;
}

/* Mejorar overlay de carga */
.loading-spinner {
    text-align: center;
    color: white;
}

.loading-spinner p {
    margin: 8px 0;
    opacity: 0.9;
}

.loading-spinner button {
    transition: all 0.2s ease;
}

.loading-spinner button:hover {
    transform: scale(1.05);
}

/* Mejorar player server info */
.player-server-info {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.quality-badge, .language-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animaciones mejoradas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.episode-card {
    animation: fadeInUp 0.3s ease forwards;
}

.episode-server-btn {
    animation: slideInFromRight 0.2s ease forwards;
}

/* Estados de carga mejorados */
.video-overlay .loading-spinner .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

/* Mejoras responsive */
@media (max-width: 768px) {
    .episode-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .episode-number {
        min-width: auto;
        width: fit-content;
        align-self: flex-start;
    }
    
    .episode-servers {
        flex-direction: column;
    }
    
    .episode-server-btn {
        width: 100%;
        justify-content: center;
        min-height: 40px;
    }
    
    .servers-buttons {
        flex-direction: column;
    }
    
    .server-btn {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }
    
    .iframe-controls {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }
    
    .iframe-controls > div:first-child {
        font-size: 12px;
    }
    
    .iframe-controls button {
        font-size: 11px;
        padding: 8px 12px;
    }
}

/* Estados hover mejorados para móvil */
@media (hover: none) {
    .episode-card:hover {
        transform: none;
        background: var(--bg-secondary);
    }
    
    .episode-server-btn:hover,
    .server-btn:hover {
        transform: none;
        opacity: 1;
    }
}

/* Mejoras de accesibilidad */
.episode-server-btn:focus,
.server-btn:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Indicadores de estado del reproductor */
.player-status {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 1001;
}

.player-status.loading {
    background: rgba(0, 123, 255, 0.8);
}

.player-status.error {
    background: rgba(220, 53, 69, 0.8);
}

.player-status.success {
    background: rgba(40, 167, 69, 0.8);
}

/* Mejoras para el tema claro */
.light-theme .episode-card {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.light-theme .episode-card:hover {
    background: var(--bg-tertiary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.light-theme .episode-number {
    background: rgba(0, 123, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.2);
    color: var(--zenit-blue);
}

.light-theme .iframe-controls {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
}

/* Transiciones suaves */
* {
    -webkit-tap-highlight-color: transparent;
}

.episode-card,
.episode-server-btn,
.server-btn {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/* 
ESTILOS ADICIONALES PARA ZENIT PLAYER MEJORADO
Agregar estos estilos al final de tu style.css existente
*/

/* ==========================================
   PROTECCIONES DE SEGURIDAD
========================================== */

/* Bloquear selección de texto en áreas sensibles */
.video-wrapper,
.player-container,
.navbar,
.admin-panel {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Ocultar elementos cuando DevTools están abiertos */
@media (max-height: 500px) and (min-width: 800px) {
    .security-blur {
        filter: blur(10px);
        pointer-events: none;
    }
}

/* Protección contra impresión */
@media print {
    body * { 
        display: none !important; 
    }
    
    body::after { 
        content: "🔒 CONTENIDO PROTEGIDO - NO SE PUEDE IMPRIMIR"; 
        display: block !important; 
        text-align: center; 
        font-size: 24px; 
        padding: 50px; 
        color: #dc3545;
    }
}

/* ==========================================
   SIN INFORMACIÓN DE SERVIDORES
========================================== */

/* Ocultar completamente información de servidores */
.server-badge,
.movie-servers,
.player-server-info,
.episode-servers .server-info,
.detail-servers .server-tech-info {
    display: none !important;
}

/* Estilos para badges de disponibilidad */
.availability-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 8px;
}

/* Botones de servidor uniformes */
.server-btn,
.episode-server-btn {
    background: #007bff !important;
    color: white !important;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.server-btn:hover,
.episode-server-btn:hover {
    background: #0056b3 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Controles simplificados para iframes */
.simple-controls {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px;
    transition: opacity 0.3s ease;
}

.simple-controls button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    transition: all 0.2s ease;
}

.simple-controls button:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ==========================================
   EPISODIOS CLICKEABLES
========================================== */

/* Episodios con indicador visual de clickeable */
.episode-card {
    cursor: pointer !important;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.episode-card::before {
    content: '▶';
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--netflix-red);
    font-size: 20px;
    opacity: 0;
    transition: all 0.2s ease;
}

.episode-card:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.episode-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    border-color: var(--netflix-red);
}

.episode-card:active {
    transform: translateY(-1px);
}

/* Meta información de episodios */
.episode-meta span:last-child {
    color: var(--netflix-red) !important;
    font-weight: 600 !important;
    font-size: 11px;
    background: rgba(229, 9, 20, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    border: 1px solid rgba(229, 9, 20, 0.2);
}

/* ==========================================
   REPOSITORIOS - PANEL DE ADMIN
========================================== */

.repositories-management {
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Estadísticas de repositorios */
.repos-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.repos-stats-grid .stat-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.repos-stats-grid .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107);
}

/* Lista de repositorios */
.repos-list h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.repo-item {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.repo-item.active {
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.1);
}

.repo-item.inactive {
    opacity: 0.6;
    border-color: #6c757d;
}

.repo-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* Header de repositorio */
.repo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.repo-header h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.repo-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.repo-status.loaded {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.repo-status.not-loaded {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* URL del repositorio */
.repo-url {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    padding: 8px 12px;
    border-radius: 6px;
    word-break: break-all;
    margin: 10px 0;
    border-left: 3px solid var(--netflix-red);
}

/* Estadísticas del repositorio */
.repo-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 12px 0;
}

.repo-stats span {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
}

/* Controles del repositorio */
.repo-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* Toggle switch personalizado */
.repo-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.repo-toggle input[type="checkbox"] {
    width: 44px;
    height: 24px;
    background: #ccc;
    border-radius: 12px;
    outline: none;
    cursor: pointer;
    position: relative;
    appearance: none;
    transition: background 0.3s;
}

.repo-toggle input[type="checkbox"]:checked {
    background: #28a745;
}

.repo-toggle input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.repo-toggle input[type="checkbox"]:checked::before {
    transform: translateX(20px);
}

.toggle-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Acciones del repositorio */
.repo-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.repo-actions button {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.test-repo-btn {
    background: #007bff;
    color: white;
}

.test-repo-btn:hover {
    background: #0056b3;
}

.refresh-repo-btn {
    background: #28a745;
    color: white;
}

.refresh-repo-btn:hover {
    background: #1e7e34;
}

.edit-repo-btn {
    background: #ffc107;
    color: #000;
}

.edit-repo-btn:hover {
    background: #e0a800;
}

.delete-repo-btn {
    background: #dc3545;
    color: white;
}

.delete-repo-btn:hover {
    background: #c82333;
}

/* Formulario agregar repositorio */
.add-repo-section {
    background: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
}

.add-repo-section h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.add-repo-form .form-row {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 16px;
    margin-bottom: 16px;
}

.add-repo-form .form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.add-repo-form .form-group small {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
    line-height: 1.3;
}

/* Acciones masivas */
.bulk-actions {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-radius: 16px;
    padding: 25px;
    margin-top: 30px;
}

.bulk-actions h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.bulk-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.bulk-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.bulk-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.refresh-all {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.test-all {
    background: linear-gradient(45deg, #007bff, #17a2b8);
    color: white;
}

.export-config {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
    color: #000;
}

.import-config {
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
    color: white;
    position: relative;
    cursor: pointer;
}



/* Alternativas de MEGA más atractivas */
.mega-alternatives {
    background: linear-gradient(135deg, rgba(217, 39, 46, 0.1) 0%, rgba(217, 39, 46, 0.05) 100%);
    border: 2px solid rgba(217, 39, 46, 0.2);
    border-radius: 16px;
    padding: 25px;
    margin: 20px 0;
    text-align: center;
}

.mega-alternatives h3 {
    color: #d9272e;
    margin-bottom: 16px;
}

.mega-alternatives .action-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.mega-alternatives .action-buttons button {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mega-alternatives .action-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}



@media (max-width: 768px) {
    /* Repositorios en móvil */
    .repos-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .repo-controls {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .repo-actions {
        justify-content: center;
    }
    
    .add-repo-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .bulk-buttons {
        flex-direction: column;
    }
    
    .bulk-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Episodios en móvil */
    .episode-card::before {
        top: 5px;
        right: 10px;
        font-size: 16px;
    }
    
    .episode-meta {
        flex-direction: column;
        gap: 4px;
    }
    
    /* Controles simples en móvil */
    .simple-controls {
        position: fixed !important;
        top: 10px !important;
        left: 10px !important;
        right: 10px !important;
        flex-direction: column;
        gap: 8px;
    }
    
    .simple-controls button {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

/* ==========================================
   ANIMACIONES Y TRANSICIONES
========================================== */

/* Animación de carga de repositorios */
@keyframes repoLoad {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.repo-item {
    animation: repoLoad 0.3s ease forwards;
}

.repo-item:nth-child(1) { animation-delay: 0.1s; }
.repo-item:nth-child(2) { animation-delay: 0.2s; }
.repo-item:nth-child(3) { animation-delay: 0.3s; }
.repo-item:nth-child(4) { animation-delay: 0.4s; }

/* Pulso para indicador de estado */
@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.repo-status.loading {
    animation: statusPulse 1.5s ease-in-out infinite;
}

/* Efecto de ondas para botones */
.bulk-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.bulk-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* ==========================================
   TEMA CLARO - AJUSTES
========================================== */

.light-theme .repo-item {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.light-theme .repo-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.light-theme .repo-url {
    background: #f8f9fa;
    border-left-color: #007bff;
}

.light-theme .add-repo-section {
    background: #f8f9fa;
    border-color: #dee2e6;
}

.light-theme .bulk-actions {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* ==========================================
   SCROLL PERSONALIZADO
========================================== */

.repositories-management::-webkit-scrollbar {
    width: 8px;
}

.repositories-management::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

.repositories-management::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--netflix-red), #ff6b6b);
    border-radius: 4px;
}

.repositories-management::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #c82333, #ff5252);
}