/* Modern Premium Styling System - CinéOST */

:root {
  --bg-dark: #06060c;
  --bg-card: rgba(255, 255, 255, 0.04);
  --border-color: rgba(255, 255, 255, 0.07);
  --border-glow: rgba(243, 146, 0, 0.2);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  
  /* MOST Color Palette */
  --red: #f39200;
  --orange: #fcd724;
  --neon-gradient: linear-gradient(135deg, #4daa6f 0%, #f39200 50%, #fcd724 100%);
  --neon-gradient-hover: linear-gradient(135deg, #5abb80 0%, #ffaa10 50%, #ffe040 100%);
  --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(10, 10, 30, 0.5) 0%, var(--bg-dark) 100%);
  z-index: 0;
  pointer-events: none;
}

/* Background Glowing Orbs (Floating and Alive) */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.orb-1 {
  background: radial-gradient(circle, #f39200 0%, transparent 70%);
  width: 600px;
  height: 600px;
  top: -150px;
  right: -100px;
  animation: float-orb-1 20s infinite alternate ease-in-out;
}

.orb-2 {
  background: radial-gradient(circle, #4daa6f 0%, transparent 70%);
  width: 700px;
  height: 700px;
  bottom: -200px;
  left: -150px;
  animation: float-orb-2 25s infinite alternate ease-in-out;
}

@keyframes float-orb-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-80px, 50px) scale(1.1); }
}

@keyframes float-orb-2 {
  0% { transform: translate(0, 0) scale(1.1); }
  100% { transform: translate(80px, -60px) scale(0.9); }
}

/* Typography & Accent classes */
.font-sans {
  font-family: var(--font-sans);
}

.font-display {
  font-family: var(--font-display);
}

.text-red {
  color: var(--red);
  text-shadow: 0 0 15px rgba(255, 0, 85, 0.4);
}

.text-secondary {
  color: var(--text-secondary);
}

/* Glassmorphism panels */
.glass-panel {
  background: var(--glass-gradient);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-premium), inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
  border-radius: 24px;
}

/* Custom premium badge */
.badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: #fff;
  background: linear-gradient(90deg, rgba(77, 170, 111, 0.25) 0%, rgba(243, 146, 0, 0.25) 100%);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 119, 0, 0.2);
  box-shadow: 0 4px 12px rgba(255, 0, 85, 0.1);
  margin-bottom: 1.25rem;
}

/* Premium Buttons with Glowing Border hover effect */
.btn-primary {
  background: var(--neon-gradient);
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 0, 85, 0.25), 0 2px 4px rgba(0, 0, 0, 0.2);
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--neon-gradient-hover);
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 0, 85, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-giant {
  padding: 1.25rem 2.5rem !important;
  font-size: 1.1rem !important;
  letter-spacing: 0.02em;
}

/* Mode Switcher / Tab Switcher (Pill Style) */
#toggle-search-mode, #toggle-paste-mode {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  outline: none;
}

.mode-switcher-container {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1.5rem;
}

/* Active tab style */
#toggle-search-mode.text-red, #toggle-paste-mode.text-red {
  background: rgba(255, 0, 85, 0.15);
  color: white !important;
  border: 1px solid rgba(255, 0, 85, 0.25);
  box-shadow: 0 4px 12px rgba(255, 0, 85, 0.1);
  text-shadow: none;
}

/* Search Box design */
.search-box {
  width: 100%;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px !important;
}

.search-box:focus-within {
  border-color: rgba(255, 0, 85, 0.4) !important;
  box-shadow: 0 0 30px rgba(255, 0, 85, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.04);
}

.search-box input {
  background: transparent !important;
  color: var(--text-primary) !important;
  border: none !important;
  outline: none !important;
  font-family: var(--font-sans);
}

/* Style for text-area */
#paste-form textarea {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  transition: var(--transition);
}

#paste-form textarea:focus {
  border-color: rgba(255, 0, 85, 0.4);
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.1);
  background: rgba(0, 0, 0, 0.3);
}

/* Eviter le fond blanc d'autofill sur Google Chrome / Safari */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #09090b inset !important;
  -webkit-text-fill-color: var(--text-primary) !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Custom CSS utilities for flex, grid, spacing, layout */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.flex-grow { flex-grow: 1; }
.flex-1 { flex: 1 1 0%; }
.w-full { width: 100%; }
.w-80 { width: 20rem; }
.w-48 { width: 12rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-md { max-width: 28rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-6 { gap: 1.5rem; }
.gap-4 { gap: 1rem; }
.gap-3 { gap: 0.75rem; }
.gap-2 { gap: 0.5rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.pb-4 { padding-bottom: 1rem; }
.pt-2 { padding-top: 0.5rem; }
.pl-0 { padding-left: 0; }
.border-b { border-bottom: 1px solid; }
.border-t { border-top: 1px solid; }
.border-l { border-left: 1px solid; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-light { font-weight: 300; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-widest { letter-spacing: 0.12em; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.hidden { display: none !important; }
.relative { position: relative; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.bottom-6 { bottom: 1.5rem; }
.right-6 { right: 1.5rem; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.rounded-2xl { border-radius: 1.25rem; }
.rounded-xl { border-radius: 1rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.mt-1 { margin-top: 0.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.h-44 { height: 11rem; }
.h-60 { height: 15rem; }
.text-white\/20 { color: rgba(255, 255, 255, 0.2); }
.text-white\/30 { color: rgba(255, 255, 255, 0.3); }
.text-white\/40 { color: rgba(255, 255, 255, 0.4); }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white { color: #ffffff; }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.overflow-y-auto { overflow-y: auto; }
.max-h-\[90vh\] { max-height: 90vh; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4); }
.gap-1 { gap: 0.25rem; }
.self-end { align-self: flex-end; }

/* Responsive utility helpers — colon must be escaped in CSS selectors */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:self-auto { align-self: auto; }
}

@media (min-width: 768px) {
  .md\:px-8 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .md\:py-20 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:text-6xl { font-size: 4rem; }
  .md\:text-lg { font-size: 1.125rem; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:items-start { align-items: flex-start; }
  .md\:text-left { text-align: left; }
  .md\:pl-6 { padding-left: 1.5rem; }
  .md\:w-auto { width: auto; }
}

/* Header always above everything and clickable */
header {
  position: relative;
  z-index: 20;
  pointer-events: auto;
}

/* ── Mobile overrides ─────────────────────────────────────────────────────── */
@media (max-width: 639px) {
  /* Preview player: full-width bar at bottom on mobile */
  #preview-player-container {
    right: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    border-radius: 16px 16px 0 0 !important;
  }

  /* Carousel modal: less padding on mobile */
  #carousel-modal > div {
    padding: 1.25rem !important;
  }

  /* Track images grid: 2 columns on mobile instead of 4 */
  #track-images-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Track title: don't exceed screen width */
  .track-title {
    max-width: calc(100vw - 160px) !important;
  }

  /* Header: hide wordmark subtitle on very small screens */
  header .wordmark-sub {
    display: none;
  }

  /* Auth button: icon only on mobile */
  #auth-login-btn .auth-label {
    display: none;
  }

  /* Search placeholder shorter on mobile */
  #search-input {
    font-size: 0.875rem;
  }

  /* 3 action buttons stack vertically — reduce padding */
  #create-yt-playlist-btn,
  #generate-playlist-btn,
  #open-carousel-btn {
    padding: 0.875rem 1rem !important;
    font-size: 0.8rem !important;
  }
  .btn-giant {
    padding: 0.875rem 1rem !important;
    font-size: 0.9rem !important;
  }
}

/* Spinner Loader */
.spinner {
  width: 55px;
  height: 55px;
  border: 3.5px solid rgba(255, 0, 85, 0.1);
  border-radius: 50%;
  border-top-color: var(--red);
  animation: spin 0.8s cubic-bezier(0.5, 0.1, 0.1, 0.9) infinite;
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.2);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Playlist Grid and Cards */
.playlist-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.playlist-card:hover {
  background: rgba(255, 0, 85, 0.05);
  border-color: rgba(255, 0, 85, 0.25);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 0, 85, 0.1);
}

.playlist-card:hover h4 {
  color: var(--red);
}

/* Track List Items */
.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.track-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.track-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-container input {
  display: none;
}

.custom-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: rgba(0, 0, 0, 0.2);
}

.checkbox-container:hover .custom-checkbox {
  border-color: var(--red);
}

.checkbox-container input:checked + .custom-checkbox {
  background: var(--neon-gradient);
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(255, 0, 85, 0.3);
}

.checkbox-container input:checked + .custom-checkbox::after {
  content: '\e5ca';
  font-family: 'Material Symbols Outlined';
  font-size: 15px;
  color: white;
  font-weight: 800;
}

.track-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.03);
}

.track-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.track-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #f8fafc;
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-author {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.track-duration {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.8;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ── Track Actions ──────────────────────────────────────────────────── */

.track-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.track-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.track-action-btn:hover {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
}

.track-action-btn .material-symbols-outlined {
  font-size: 18px;
}

.swap-btn:hover {
  color: var(--red) !important;
}

/* ── Alternatives Panel ──────────────────────────────────────────────── */

.track-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.alt-panel {
  background: rgba(20, 12, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(20px);
  animation: slideDown 0.2s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.alt-panel.hidden {
  display: none;
}

.alt-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alt-panel-title {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.alt-panel-title strong {
  color: rgba(255,255,255,0.8);
}

.alt-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s;
}

.alt-close-btn:hover {
  color: white;
  background: rgba(255,255,255,0.08);
}

.alt-search-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.alt-search-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.82rem;
  outline: none;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
}

.alt-search-input:focus {
  border-color: var(--red);
}

.alt-search-btn {
  padding: 8px 14px !important;
  border-radius: 10px !important;
  font-size: 0.8rem !important;
}

.alt-results {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 260px;
  overflow-y: auto;
}

.alt-loading {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  padding: 16px;
}

.alt-result-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.2s;
  cursor: default;
}

.alt-result-row:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
}

.alt-thumb {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.alt-result-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.alt-result-title {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alt-result-author {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.alt-result-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* ── Modal Playlist ──────────────────────────────────────────────── */

#playlist-name-modal input {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.9rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease;
  font-family: var(--font-sans);
}

#playlist-name-modal input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

#playlist-name-modal input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 45, 85, 0.12);
}

#playlist-name-modal input:-webkit-autofill,
#playlist-name-modal input:-webkit-autofill:hover,
#playlist-name-modal input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0px 1000px rgba(30, 20, 40, 0.9) inset !important;
  background-color: transparent !important;
}

#modal-status {
  font-size: 0.8rem;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}

/* Pulse animation for auth button */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 45, 85, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(255, 45, 85, 0); }
}

.pulse-anim {
  animation: pulse-glow 0.6s ease 3;
  border-color: var(--red) !important;
  color: white !important;
}

/* Spin animation for loading */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-spin {
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

/* Theme Selector Buttons for Carousel Export */
.theme-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition);
}

.theme-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.theme-btn.active {
  border-color: var(--red);
  background: rgba(255, 0, 85, 0.1);
  color: white;
}
