/* KEVEO - Components Stylesheet (Streaming Selector, Catalog, Roulette, Swipe, Modal) */

/* --- STREAMING SELECTOR PANEL --- */
.streaming-selector-panel {
  margin-bottom: 2.5rem;
}

.panel-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.panel-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.panel-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.streaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.streaming-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  user-select: none;
  transition: var(--transition-normal);
}

.streaming-item .service-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.streaming-item .service-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.streaming-item.active {
  background: rgba(18, 18, 24, 0.9);
  border-color: var(--service-color);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05), inset 0 0 10px rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

/* Switch styling for global bypass */
.switch-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.switch-el {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}

.switch-el input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: .3s;
  border-radius: 34px;
  border: 1px solid var(--border-glass);
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-muted);
  transition: .3s;
  border-radius: 50%;
}

.switch-el input:checked + .switch-slider {
  background-color: #8b5cf6;
}

.switch-el input:checked + .switch-slider:before {
  transform: translateX(22px);
  background-color: #ffffff;
}

/* --- QUICK FILTERS HOME --- */
.quick-filters-container {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.filter-group-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Genre Pills */
.filter-pills-row {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.filter-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.filter-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.filter-pill.active {
  background: #ffffff;
  color: #060608;
  border-color: #ffffff;
}

/* Mood Grid */
.mood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.75rem;
}

.mood-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  background: var(--bg-card);
}

.mood-card .mood-icon {
  font-size: 1.8rem;
  transition: var(--transition-normal);
}

.mood-card .mood-name {
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-title);
}

.mood-card.active {
  border-color: #ec4899;
  box-shadow: var(--glow-secondary);
  background: rgba(236, 72, 153, 0.08);
}
.mood-card.active .mood-icon {
  transform: scale(1.2);
}

/* Dinner Grid */
.dinner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

.dinner-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem;
  cursor: pointer;
}

.dinner-card .dinner-icon {
  font-size: 1.7rem;
}

.dinner-card .dinner-name {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-title);
}

.dinner-card.active {
  border-color: #3b82f6;
  box-shadow: var(--glow-accent);
  background: rgba(59, 130, 246, 0.08);
}

/* Catalog Filter Bar */
.catalog-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
}

.catalog-search-row {
  display: flex;
  gap: 0.75rem;
  flex-grow: 1;
  max-width: 500px;
}

.search-input-wrapper {
  position: relative;
  flex-grow: 1;
}

.search-input-wrapper .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dark);
}

.search-input-wrapper input {
  width: 100%;
  padding-left: 2.75rem;
}

/* --- MOVIE CARDS CATALOG --- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.movie-card {
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.movie-poster-container {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #0f0f15;
}

.movie-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.movie-card:hover .movie-poster {
  transform: scale(1.08);
}

.movie-type-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(6, 6, 8, 0.85);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid var(--border-glass);
}

.movie-platforms-overlap {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  display: flex;
  gap: 0.25rem;
}

.plat-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.plat-badge:hover {
  transform: scale(1.15) translateY(-2px);
}

.movie-card-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.movie-rating-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.movie-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  /* Truncar a dos líneas */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6rem;
}

.movie-genres-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.movie-genre-tag {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.movie-duration-row {
  font-size: 0.75rem;
  color: var(--text-dark);
  margin-top: auto;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.empty-icon {
  font-size: 3.5rem;
}

.empty-state p {
  color: var(--text-muted);
}

/* --- ROULETTE SECTION --- */
.roulette-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 0;
}

.canvas-wrapper {
  position: relative;
  padding: 10px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.canvas-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.05);
  pointer-events: none;
}

.roulette-instructions {
  text-align: center;
  max-width: 500px;
}

.roulette-subtext {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: var(--text-muted);
}

/* --- RULETA WINNER CARD PREMIUM --- */
.roulette-winner-card {
  width: 100%;
  max-width: 650px;
  margin: 2rem auto 0 auto;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 92, 246, 0.15);
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.7) 0%, rgba(10, 10, 15, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.winner-card-header {
  margin-bottom: 1.25rem;
  text-align: center;
}

.winner-badge {
  background: linear-gradient(90deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
  display: inline-block;
  text-transform: uppercase;
}

.winner-card-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.5rem;
}

.winner-poster-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  aspect-ratio: 2/3;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.winner-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winner-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.winner-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.winner-type {
  font-weight: 700;
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.winner-rating {
  font-weight: 700;
  color: #f59e0b;
}

.winner-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.winner-details-row {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.winner-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 0.2rem 0;
}

.winner-synopsis {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 4.5rem;
}

.winner-platforms-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
}

@media (max-width: 580px) {
  .winner-card-body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .winner-poster-wrapper {
    max-width: 130px;
    margin: 0 auto;
  }
  
  .winner-info-wrapper {
    text-align: center;
    align-items: center;
  }
  
  .winner-platforms-row {
    justify-content: center;
    width: 100%;
  }
}

/* --- TINDER SWIPE CO-OP SECTION --- */
.swipe-setup-view {
  max-width: 550px;
  margin: 2rem auto;
}

.swipe-setup-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.voters-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Tinder Intro Page */
.swipe-intro-card {
  text-align: center;
  max-width: 500px;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.turn-badge {
  background: var(--grad-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
}

.intro-desc {
  color: var(--text-muted);
  line-height: 1.6;
}

.intro-visual {
  width: 100%;
  padding: 1.5rem 0;
}

.phone-mock {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(236,72,153,0.15) 0%, transparent 70%);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phone-mock .icon {
  font-size: 2.5rem;
}

.avatar-pair {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #7c3aed;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  border: 2px solid var(--bg-deep);
}

.avatar.active {
  border-color: #ffffff;
  box-shadow: 0 0 10px #7c3aed;
}

.avatar-heart {
  font-size: 0.9rem;
}

/* Tinder Active Game Screen */
.swipe-game-view {
  max-width: 440px;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.swipe-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-title);
}

.voter-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.card-progress {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card-deck {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3.1;
}

.swipe-card {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.swipe-card:active {
  cursor: grabbing;
}

.card-poster-container {
  position: relative;
  flex-grow: 1;
  overflow: hidden;
}

.card-poster-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.btn-card-details {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  z-index: 20;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(6, 6, 8, 0.75);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-card-details:hover {
  transform: scale(1.05);
  background: rgba(6, 6, 8, 0.95);
  border-color: rgba(255, 255, 255, 0.4);
}

.card-genres {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.genre-tag {
  font-size: 0.75rem;
  background: rgba(6, 6, 8, 0.85);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  border: 1px solid var(--border-glass);
}

.card-info {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(12,12,16,0.95) 0%, #060608 100%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-movie-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
}

.card-rating {
  font-weight: 600;
  font-size: 0.95rem;
}

.card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.card-synopsis {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0.25rem 0;
  /* Truncar a 2 líneas */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-platforms {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.platform-list-inline {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.platform-list-inline .badge {
  border: 1px solid;
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.platform-list-inline .badge:hover {
  transform: scale(1.1);
}

/* Tinder card stamp overlays */
.swipe-overlay {
  position: absolute;
  top: 2rem;
  border: 4px solid;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-title);
  letter-spacing: 2px;
  transform: rotate(-15deg);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.15s ease;
}

.swipe-overlay.like {
  right: 2rem;
  border-color: #10b981;
  color: #10b981;
  transform: rotate(15deg);
}

.swipe-overlay.nope {
  left: 2rem;
  border-color: #ef4444;
  color: #ef4444;
}

.swipe-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.btn-round {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: var(--transition-normal);
}

.btn-round:hover {
  transform: scale(1.1);
}

.btn-nope {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.btn-nope:hover {
  background: rgba(239, 68, 68, 0.25);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.btn-like {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.btn-like:hover {
  background: rgba(16, 185, 129, 0.25);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

/* Tinder Swipe Results Page */
.swipe-results-view {
  max-width: 600px;
  margin: 1rem auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.results-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.avatar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.res-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-primary);
}

.res-avatar.pink {
  background: var(--grad-secondary);
  box-shadow: var(--glow-secondary);
}

.res-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.avatar-heartpulse {
  font-size: 1.8rem;
  animation: pulse-heart 1.2s infinite;
}

.results-subtitle {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem;
}

.match-item {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.match-item img {
  width: 100%;
  aspect-ratio: 2/2.5;
  object-fit: cover;
}

.match-item-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.match-item-info h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.match-platforms {
  font-size: 0.8rem;
}

.results-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* Tinder Rescue (No matches) View */
.no-matches-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem;
}

.cry-icon {
  font-size: 3rem;
}

.rescue-card {
  display: flex;
  text-align: left;
  gap: 1.5rem;
  max-width: 450px;
  padding: 1rem;
  margin: 1rem 0;
  width: 100%;
}

.rescue-card img {
  width: 100px;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.rescue-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}

.rescue-info h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
}

.rescue-synopsis {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- YOUTUBE GRID --- */
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.youtube-card {
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.yt-thumb-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0f0f15;
}

.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.youtube-card:hover .yt-thumb {
  transform: scale(1.05);
}

.yt-duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(6, 6, 8, 0.85);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  border: 1px solid var(--border-glass);
}

.yt-category-tag {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #ef4444;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.play-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 2.2rem;
  opacity: 0;
  transition: var(--transition-normal);
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.youtube-card:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.yt-info {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.yt-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7rem;
}

.yt-creator {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- OVERLAY DETAIL MODAL --- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4, 4, 6, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: var(--z-modal);
  display: none; /* Controlado por JS */
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

.modal-container {
  width: 100%;
  max-width: 900px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  position: relative;
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255,255,255,0.15);
  transform: rotate(90deg);
}

.modal-scroll-area {
  padding: 2.5rem;
  overflow-y: auto;
  flex-grow: 1;
}

.modal-details-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
}

.modal-poster-col {
  width: 100%;
}

.modal-poster {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.modal-info-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.modal-type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #8b5cf6;
}

.modal-rating {
  font-weight: 700;
  font-size: 0.95rem;
}

.modal-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.modal-meta-row {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.modal-divider {
  height: 1px;
  background: var(--border-glass);
  margin: 0.5rem 0;
}

.modal-section-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
}

.modal-synopsis {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.modal-platforms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.modal-platform-badge {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.2s ease;
  cursor: pointer;
}

.modal-platform-badge:hover {
  transform: scale(1.05) translateY(-1px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.25);
}

.modal-trailer-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.modal-iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

/* Modal YouTube Player View */
.youtube-player-view {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.youtube-player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid var(--border-glass);
}

.youtube-iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

.youtube-player-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.yt-tag {
  align-self: flex-start;
  background: #ef4444;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.youtube-player-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.youtube-player-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.yt-enjoy-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

/* --- GAMING GRID & CARDS --- */
.gaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gaming-card {
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

/* Platform Specific Glows on Hover */
.gaming-card.platform-twitch:hover {
  border-color: #9146FF;
  box-shadow: 0 8px 24px rgba(145, 70, 255, 0.2);
  transform: translateY(-4px);
}

.gaming-card.platform-kick:hover {
  border-color: #53FC18;
  box-shadow: 0 8px 24px rgba(83, 252, 24, 0.2);
  transform: translateY(-4px);
}

.gaming-card.platform-youtube:hover {
  border-color: #FF0000;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.2);
  transform: translateY(-4px);
}

.gaming-thumb-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0f0f15;
}

.gaming-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gaming-card:hover .gaming-thumb {
  transform: scale(1.05);
}

.gaming-status-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-live {
  background: #ef4444;
  color: #fff;
  box-shadow: 0 0 8px #ef4444;
  animation: pulse-glow-live 1.5s infinite alternate ease-in-out;
}

@keyframes pulse-glow-live {
  0% { opacity: 0.8; box-shadow: 0 0 4px #ef4444; }
  100% { opacity: 1; box-shadow: 0 0 12px #ef4444; }
}

.badge-clip {
  background: #3b82f6;
  color: #fff;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.gaming-viewers {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(6, 6, 8, 0.85);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  border: 1px solid var(--border-glass);
}

.gaming-platform-icon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(6, 6, 8, 0.85);
  border: 1px solid var(--border-glass);
}

.gaming-info {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: linear-gradient(180deg, rgba(12, 12, 16, 0.5) 0%, rgba(6, 6, 8, 0.9) 100%);
  flex-grow: 1;
}

.gaming-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gaming-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7rem;
}

.gaming-streamer {
  font-size: 0.8rem;
  color: #a78bfa;
}

.platform-kick .gaming-streamer {
  color: #53FC18;
}

/* --- GAMING PLAYER MODAL --- */
.gaming-player-view {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gaming-player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid var(--border-glass);
}

.gaming-iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

.gaming-player-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gaming-platform-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.gaming-platform-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.gaming-player-view.platform-twitch .gaming-platform-badge {
  background: rgba(145, 70, 255, 0.15);
  border-color: rgba(145, 70, 255, 0.4);
  color: #c8a2ff;
}

.gaming-player-view.platform-kick .gaming-platform-badge {
  background: rgba(83, 252, 24, 0.1);
  border-color: rgba(83, 252, 24, 0.4);
  color: #53FC18;
}

.gaming-player-view.platform-youtube .gaming-platform-badge {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.4);
  color: #ff8080;
}

.gaming-live-indicator {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.gaming-player-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.gaming-player-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.gaming-enjoy-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Responsive Modal styling */
/* Responsive Modal styling */
@media (max-width: 768px) {
  .modal-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .modal-poster-col {
    max-width: 240px;
    margin: 0 auto;
  }
  
  .modal-title {
    font-size: 1.75rem;
  }
  
  .modal-scroll-area {
    padding: 1.5rem;
  }
  
  .modal-overlay {
    padding: 1rem;
  }
}

/* ================= OVERRIDES RESPONSIVOS DE COMPONENTES (Cine & Cena Premium Móvil) ================= */

@media (max-width: 768px) {
  /* --- STREAMING SELECTOR --- */
  .streaming-grid {
    grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
    gap: 0.5rem;
  }
  
  .streaming-item {
    padding: 0.55rem 0.65rem;
    gap: 0.4rem;
    justify-content: flex-start;
  }
  
  .streaming-item .service-icon {
    font-size: 1.1rem;
  }
  
  .streaming-item .service-name {
    font-size: 0.75rem;
  }

  .panel-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .switch-container {
    font-size: 0.78rem;
  }

  /* --- FILTROS RÁPIDOS --- */
  .dinner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .dinner-card {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  
  .dinner-card .dinner-icon {
    font-size: 1.3rem;
  }
  
  .dinner-card .dinner-name {
    font-size: 0.78rem;
  }

  .mood-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .mood-card {
    padding: 0.75rem 0.35rem;
    gap: 0.3rem;
  }
  
  .mood-card .mood-icon {
    font-size: 1.35rem;
  }
  
  .mood-card .mood-name {
    font-size: 0.75rem;
  }

  /* --- BUSCADOR Y BARRA DE FILTROS --- */
  .catalog-header-bar {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    gap: 0.75rem;
  }

  .catalog-search-row {
    width: 100%;
    max-width: 100%;
  }

  .filter-pills-row {
    width: 100%;
    padding-bottom: 0.25rem;
  }
  
  .filter-pill {
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
  }

  /* --- RULETA --- */
  .roulette-container {
    gap: 1.25rem;
    padding: 0.75rem 0;
  }

  .canvas-wrapper {
    max-width: 280px;
    max-height: 280px;
    width: 100%;
    margin: 0 auto;
  }

  #roulette-canvas {
    max-width: 100%;
    height: auto !important;
  }

  .roulette-instructions button {
    width: 100%;
    padding: 0.85rem 1.5rem !important;
    font-size: 1rem !important;
  }

  .roulette-subtext {
    font-size: 0.82rem;
    margin-top: 0.5rem;
  }

  /* --- TINDER SWIPE GAME --- */
  .swipe-setup-view {
    padding: 1.25rem;
    margin: 1rem auto;
  }
  
  .swipe-setup-grid {
    gap: 1rem;
  }

  .voters-inputs-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .swipe-game-view {
    max-width: 100%;
    gap: 0.75rem;
    padding: 0 0.15rem;
  }

  /* Forzar que las tarjetas quepan de forma compacta y perfecta en vertical en teléfonos */
  .card-deck {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 2/2.7;
  }

  .card-info {
    padding: 0.75rem 1rem;
    gap: 0.2rem;
  }

  .card-movie-title {
    font-size: 1.05rem;
  }

  .card-rating {
    font-size: 0.8rem;
  }

  .card-meta {
    font-size: 0.72rem;
    gap: 0.4rem;
  }

  .card-synopsis {
    font-size: 0.75rem;
    line-height: 1.35;
    -webkit-line-clamp: 2;
  }

  .card-platforms {
    margin-top: 0.15rem;
    font-size: 0.72rem;
  }

  .platform-list-inline {
    margin-top: 0.1rem;
  }

  .swipe-actions {
    gap: 1.5rem;
    margin-top: 0.25rem;
  }

  .btn-round {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  .swipe-overlay {
    font-size: 1.35rem;
    padding: 0.3rem 0.6rem;
    top: 1.5rem;
  }

  .swipe-overlay.like {
    right: 1.5rem;
  }

  .swipe-overlay.nope {
    left: 1.5rem;
  }

  /* Tinder Results */
  .matches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .match-item-info {
    padding: 0.65rem;
  }

  .match-item-info h4 {
    font-size: 0.8rem;
  }

  .results-avatars {
    gap: 0.5rem;
  }

  .avatar-heartpulse {
    font-size: 1.2rem;
  }

  .results-subtitle {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  /* YouTube Grid & Gaming Grid */
  .youtube-grid,
  .gaming-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  /* --- CATÁLOGO EN CUADRÍCULA DE 2 COLUMNAS (Estilo Premium Netflix/Spotify) --- */
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .movie-card-info {
    padding: 0.65rem;
    gap: 0.35rem;
  }

  .movie-title {
    font-size: 0.88rem;
    line-height: 1.25;
    height: 2.2rem;
    -webkit-line-clamp: 2;
  }

  .movie-rating-row {
    font-size: 0.7rem;
  }

  .movie-genre-tag {
    font-size: 0.65rem;
    padding: 0.1rem 0.35rem;
  }

  .movie-duration-row {
    font-size: 0.7rem;
  }

  .movie-type-badge {
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.2rem 0.4rem;
    font-size: 0.62rem;
  }

  .movie-platforms-overlap {
    bottom: 0.5rem;
    right: 0.5rem;
  }

  .plat-badge {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

/* ========================================================
   🔥 ESTILOS DE CELEBRACIÓN DE MATCH VIRAL (100% PREMIUM)
   ======================================================== */
.match-celebration-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.25) 0%, rgba(6, 6, 8, 0.98) 80%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.match-celebration-overlay.active {
  opacity: 1;
}

.match-celebration-card {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 50px rgba(139, 92, 246, 0.2);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.match-celebration-overlay.active .match-celebration-card {
  transform: scale(1) translateY(0);
}

.match-neon-ring {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, rgba(139, 92, 246, 0) 70%);
  filter: blur(20px);
  pointer-events: none;
  animation: pulse-ring 2s infinite alternate;
}

@keyframes pulse-ring {
  0% { transform: translateX(-50%) scale(0.9); opacity: 0.5; }
  100% { transform: translateX(-50%) scale(1.1); opacity: 0.9; }
}

.match-title-group h2 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  letter-spacing: -0.5px;
}

.match-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.match-poster-glow-container {
  position: relative;
  width: 170px;
  height: 250px;
  margin: 0 auto 1.5rem auto;
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  z-index: 2;
}

.match-poster-glow-container::after {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: calc(var(--border-radius-md) + 4px);
  z-index: -1;
  opacity: 0.6;
  filter: blur(6px);
}

.match-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  background-color: #0d0d12;
}

.match-movie-info h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.match-meta-badges {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.match-badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--border-radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
}

.match-badge.dinner {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.match-badge.platform {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
  color: var(--primary-light);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: transform 0.2s ease;
}

.match-badge.platform:hover {
  transform: scale(1.1) translateY(-1px);
  background: rgba(139, 92, 246, 0.3);
}

.match-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.btn-viral-share {
  background: linear-gradient(135deg, #FF007A 0%, #7B00FF 100%) !important;
  border: none !important;
  font-weight: 700 !important;
  padding: 1rem 1.5rem !important;
  font-size: 1.05rem !important;
  box-shadow: 0 10px 25px rgba(255, 0, 122, 0.3) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease !important;
}

.btn-viral-share:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 0, 122, 0.45), 0 0 20px rgba(123, 0, 255, 0.3) !important;
}

/* Toast flotante de éxito */
.keveo-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(6, 6, 8, 0.95);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius-md);
  z-index: 1000000;
  font-family: var(--font-main);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.keveo-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

