* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-image: url("img/loflow_bg.png");
}

.bg-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0;
  transition: opacity 1s ease-in-out;

  /* High-quality image rendering for better upscaling */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;

  /* Subtle blur to smooth pixelation on lower-res images */
  filter: blur(0.3px);

  /* Scale up slightly to fill viewport and hide edge artifacts */
  transform: scale(1.02);
}

body.loaded .bg-fade {
  opacity: 1;
}

.textStroke {
  text-shadow: 0.7px 0.7px 0 rgba(51, 51, 51, 0.2),
    0.7px -0.7px 0 rgba(51, 51, 51, 0.2), -0.7px 0.7px 0 rgba(51, 51, 51, 0.2),
    -0.7px -0.7px 0 rgba(51, 51, 51, 0.2), 0.7px 0 0 rgba(51, 51, 51, 0.2),
    0 0.7px 0 rgba(51, 51, 51, 0.2), -0.7px 0 0 rgba(51, 51, 51, 0.2),
    0 -0.7px 0 rgba(85, 85, 85, 0.6);
}

.logo {
  display: block;
  background-image: url("img/loflow-white.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}

.ftue {
  color: white;
}

.ftue p {
  text-shadow: 0.7px 0.7px 0 rgba(51, 51, 51, 0.2),
    0.7px -0.7px 0 rgba(51, 51, 51, 0.2), -0.7px 0.7px 0 rgba(51, 51, 51, 0.2),
    -0.7px -0.7px 0 rgba(51, 51, 51, 0.2), 0.7px 0 0 rgba(51, 51, 51, 0.2),
    0 0.7px 0 rgba(51, 51, 51, 0.2), -0.7px 0 0 rgba(51, 51, 51, 0.2),
    0 -0.7px 0 rgba(85, 85, 85, 0.6);
}

.bg-light {
  background-color: transparent !important;
  /* backdrop-filter: blur(5px); opcional: vidro fosco */
}

.navbar>.container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.navbar-brand {
  width: 100px;
}

h1.headerFlow {
  height: 13rem;
}

h2.vibe {
  font-weight: bold;
  color: white;
  font-size: 3.5em;
}

h1.vibe {
  font-weight: bold;
  color: white;
  font-size: 3.5em;
  /* Soft, gentle shadow for calm vibe - still readable on dark backgrounds */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4),
    0 1px 2px rgba(0, 0, 0, 0.5);
}

.pickVibeTitle {
  font-weight: bold;
  color: white;
}

.vibe-description {
  color: white;
  font-size: 1.2em;
  /* Subtle shadow for readability without harsh edges */
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5), 0 2px 12px rgba(0, 0, 0, 0.35),
    0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Trial Badge in Player */
.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg,
      rgba(138, 43, 226, 0.75),
      rgba(147, 51, 234, 0.85));
  border: 1.5px solid rgba(167, 139, 250, 0.5);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.98);
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.trial-badge i {
  color: #fef3c7;
  font-size: 1.1em;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.trial-badge strong {
  color: #fef3c7;
  /* Warm yellow for emphasis */
  font-weight: 800;
  font-size: 1.4em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.trial-badge-link {
  margin-left: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.trial-badge-link:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.vibeCard {
  background-color: transparent;
  border: none;
}

.vibeCard a {
  border-radius: 16px;
  font-size: 1.2rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  position: relative;
  display: block;
}

/* Surprise Me button - discrete and minimal */
.vibeCard button#surprise-btn {
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.vibeCard button#surprise-btn:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.15);
}

.vibeCard button#surprise-btn i {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Premium vibe styling */
.vibeCard a.premium-vibe {
  border: 2px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.premium-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #ffd700;
  font-size: 1rem;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

.premium-badge .fa-crown:before {
  padding-right: 6px;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Rotation Badge - for random vibes */
.rotation-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.rotation-badge i {
  animation: rotate-slow 3s linear infinite;
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.vibeCard a:hover .rotation-badge {
  opacity: 1;
  color: rgba(255, 255, 255, 0.9);
}

/* Locked Vibes Styling */
.vibeCard.locked {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vibeCard.locked .locked-vibe-content {
  border-radius: 16px;
  padding: 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  opacity: 0.6;
  filter: grayscale(50%);
  transition: all 0.3s ease;
  min-height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vibeCard.locked:hover .locked-vibe-content {
  opacity: 0.8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.vibeCard.locked .lock-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.vibeCard.locked .locked-vibe-content span {
  display: block;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Premium Badge for Locked Cards */
.premium-badge-card {
  position: absolute;
  top: 8px;
  right: 10px;
  color: #ffd700;
  font-size: 0.9rem;
  z-index: 15;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  opacity: 0.9;
}

.vibeCard.locked:hover .premium-badge-card {
  opacity: 1;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.vibeCard.locked:hover .lock-overlay i {
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Incentive Banners - Minimal Style */
.unlock-banner,
.premium-banner {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-align: center;
  color: #ffffff;
  /* pure white for accessibility */
  font-size: 0.9rem;
  margin: 1.5rem 0;
  background-color: rgba(255, 255, 255, 0.15);
  /* increased opacity from 0.08 */
  border: 1px solid rgba(255, 255, 255, 0.25);
  /* increased border contrast */
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* added shadow for separation */
}

.unlock-banner:hover,
.premium-banner:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

.unlock-banner i,
.premium-banner i {
  margin-right: 0.5rem;
  font-size: 0.9rem;
  opacity: 1;
  /* full opacity */
}

.unlock-banner .btn,
.premium-banner .btn {
  font-size: 0.85rem;
  padding: 0.35rem 0.8rem;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-left: 1rem;
  margin-top: 0.8rem;
  transition: all 0.2s ease;
}

.unlock-banner .btn:hover,
.premium-banner .btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: none;
}

/* Promo Banner Top - (Will be redesigned in next step) */
.promo-banner-top {
  /* ... existing styles ... */
}

/* Updated Unlock Banner Hint */
.unlock-hint {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  /* increased contrast */
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Updated Premium Benefits */
.premium-benefits {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  /* increased contrast */
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Small phone breakpoint (480px and below) */
@media (max-width: 480px) {
  .promo-banner-top {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    gap: 0.625rem;
  }

  .promo-fire {
    font-size: 1.1rem;
  }

  .promo-banner-top strong {
    font-size: 0.9rem;
  }

  .promo-price {
    font-size: 0.875rem;
  }

  .promo-benefits {
    font-size: 0.8125rem;
  }

  .btn-promo {
    width: 100%;
    /* Full width on small phones only */
    font-size: 0.9rem;
    padding: 0.625rem 1rem;
  }
}

/* Tablet/medium phone breakpoint (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .promo-banner-top {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }

  .btn-promo {
    padding: 0.625rem 1.25rem;
  }
}

/* Player Sticky Promo Badge */
.player-promo-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg,
      rgba(255, 193, 7, 0.25),
      rgba(255, 152, 0, 0.3));
  backdrop-filter: blur(15px);
  border-bottom: 2px solid rgba(255, 193, 7, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: slide-down 0.4s ease-out;
  /* Add padding for close button on mobile */
  padding: 0.5rem 3.5rem 0.5rem 0.75rem;
}

/* Promo Top Bar - Slim Notification Style */
.promo-topbar {
  width: 100%;
  padding: 0.6rem 1rem;
  background: linear-gradient(90deg,
      rgba(255, 193, 7, 0.15),
      rgba(255, 152, 0, 0.2));
  border-bottom: 1px solid rgba(255, 193, 7, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: white;
  text-align: center;
  position: relative;
  z-index: 100;
  margin: 0;
  /* Remove margin to touch navbar */
  border-radius: 0;
  /* Full width bar */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.promo-topbar strong {
  font-weight: 600;
  color: #ffca28;
  /* Golden yellow text */
}

.promo-topbar .promo-benefits {
  display: inline-block;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.promo-topbar .btn-promo {
  margin: 0;
  padding: 0.3rem 1rem;
  min-height: 32px;
  font-size: 0.85rem;
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: #ffca28;
  /* Golden yellow text for contrast */
  font-weight: 600;
}

.promo-topbar .btn-promo:hover {
  background: rgba(255, 193, 7, 0.3);
  color: #ffd54f;
  /* Lighter yellow on hover */
  transform: translateY(-1px);
}

/* Mobile adjustments for Top Bar */
@media (max-width: 768px) {
  .promo-topbar {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.8rem;
  }
}

/* Signup Top Bar - Subtle white/gray variant for differentiation */
.signup-topbar {
  width: 100%;
  padding: 0.6rem 1rem;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.08));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: white;
  text-align: center;
  position: relative;
  z-index: 100;
  margin: 0;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.signup-topbar strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  /* Subtle white text */
}

.signup-topbar .promo-benefits {
  display: inline-block;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.signup-topbar .btn-promo {
  margin: 0;
  padding: 0.3rem 1rem;
  min-height: 32px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.95);
  /* White text for contrast */
  font-weight: 600;
}

.signup-topbar .btn-promo:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  /* Pure white on hover */
  transform: translateY(-1px);
}

/* Mobile adjustments for Signup Bar */
@media (max-width: 768px) {
  .signup-topbar {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.8rem;
  }
}

/* Trial Top Bar - Purple/violet theme matching tasks UI */
.trial-topbar {
  width: 100%;
  padding: 0.6rem 1rem;
  background: linear-gradient(90deg,
      rgba(138, 43, 226, 0.85),
      rgba(147, 51, 234, 0.9));
  border-bottom: 1px solid rgba(167, 139, 250, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: white;
  text-align: center;
  position: relative;
  z-index: 100;
  margin: 0;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.trial-topbar strong {
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.trial-topbar .trial-countdown {
  display: inline-block;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
}

.trial-topbar .trial-countdown strong {
  color: #fef3c7;
  /* Warm yellow for emphasis */
  font-size: 1.3em;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.trial-topbar .btn-trial-cta {
  margin: 0;
  padding: 0.4rem 1.2rem;
  min-height: 34px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.trial-topbar .btn-trial-cta:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Mobile adjustments for Trial Bar */
@media (max-width: 768px) {
  .trial-topbar {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.8rem;
  }
}

@keyframes slide-down {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.player-promo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  /* Allow graceful wrapping */
  gap: 0.625rem 0.875rem;
  /* Row gap and column gap */
  color: white;
  font-size: 0.9rem;
  line-height: 1.4;
  /* Better readability */
}

.promo-fire-small {
  font-size: 1.1rem;
  animation: fire-flicker 1.5s ease-in-out infinite;
  flex-shrink: 0;
  /* Don't let emoji shrink */
}

.player-promo-content strong {
  font-weight: 600;
  white-space: nowrap;
  /* Keep main CTA together */
}

.promo-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
}

.btn-promo-player {
  background: linear-gradient(135deg,
      rgba(255, 193, 7, 0.35),
      rgba(255, 152, 0, 0.4));
  border: 1px solid rgba(255, 193, 7, 0.6);
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem;
  min-height: 44px;
  /* WCAG AAA tap target */
  font-size: 0.875rem;
  /* Increased from 0.75rem */
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}

.btn-promo-player:hover {
  background: linear-gradient(135deg,
      rgba(255, 193, 7, 0.45),
      rgba(255, 152, 0, 0.5));
  border-color: rgba(255, 193, 7, 0.8);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
  color: white;
}

.btn-promo-player i {
  font-size: 0.8rem;
}

.promo-close-btn {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  width: 44px;
  /* WCAG AAA compliant tap target */
  height: 44px;
  min-width: 44px;
  /* Prevent shrinking */
  min-height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  z-index: 10;
  /* Always on top */
}

.promo-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-50%) scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.promo-close-btn i {
  font-size: 1rem;
  /* Larger icon for visibility */
}

/* Small phone breakpoint */
@media (max-width: 480px) {
  .player-promo-sticky {
    padding: 0.625rem 3.5rem 0.625rem 0.75rem;
  }

  .player-promo-content {
    font-size: 0.8125rem;
    gap: 0.5rem;
    flex-direction: column;
    /* Stack on very small screens */
  }

  .promo-text {
    font-size: 0.8rem;
    display: block;
    /* Own line */
  }

  .btn-promo-player {
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem;
    width: auto;
    /* Don't force full width */
  }

  .promo-close-btn {
    right: 0.5rem;
    /* Closer to edge on small screens */
  }
}

/* Tablet/medium phone breakpoint */
@media (min-width: 481px) and (max-width: 768px) {
  .player-promo-content {
    font-size: 0.875rem;
    gap: 0.5rem 0.75rem;
  }

  .promo-text {
    font-size: 0.8125rem;
  }

  .btn-promo-player {
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem;
  }
}

.counter {
  display: inline-block;
  padding: 0.7vw 2vh;
  background: rgb(255, 255, 255, 0.3);
  border-radius: 10px;
  font-weight: bold;
  color: white;
  font-size: 1em;
}

#pomodoro {
  position: relative;
}

#breathing-waves {
  position: fixed;
  top: 35%;
  left: 0;
  right: 0;
  width: 100vw;
  height: 400px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  transition: opacity 0.5s ease;
}

#breathing-waves.hidden {
  opacity: 0;
}

#timer {
  font-weight: bolder;
  margin-bottom: 0rem;
  color: white;
  font-size: 14vh;
  position: relative;
  z-index: 1;
}

/* ============================================
   MODE TOGGLE STYLES (Pomodoro vs Vibe Mode)
   ============================================ */

.mode-toggle-section {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.mode-toggle-container {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.4rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  justify-content: space-around;
}

.mode-btn {
  padding: 0.8rem 2rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mode-btn i {
  font-size: 1.2rem;
}

.mode-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
}

.mode-btn.active {
  background: linear-gradient(135deg,
      rgba(255, 127, 80, 0.9),
      rgba(255, 99, 71, 0.9));
  color: white;
  box-shadow: 0 4px 20px rgba(255, 127, 80, 0.4);
}

/* Vibe Mode Timer */
.vibe-timer {
  font-weight: bolder;
  margin-bottom: 2rem;
  color: white;
  font-size: 10vh;
  position: relative;
  z-index: 1;
  line-height: 6rem;
}

/* Current Track Info */
.current-track-info {
  margin: 1.5rem 0;
}

.current-track-info p {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Vibe Controls */
.vibe-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.vibe-controls .btn {
  min-width: 150px;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Stop Button */
#vibe-stop-btn {
  background: linear-gradient(135deg,
      rgba(220, 53, 69, 0.9),
      rgba(200, 35, 51, 0.9));
  border: none;
  transition: all 0.3s ease;
}

#vibe-stop-btn:hover {
  background: linear-gradient(135deg,
      rgba(240, 73, 89, 0.95),
      rgba(220, 55, 71, 0.95));
  box-shadow: 0 6px 25px rgba(220, 53, 69, 0.4);
}

/* Responsive adjustments for mode toggle */
@media (max-width: 768px) {
  .mode-toggle-container {
    width: 90%;
  }

  .mode-btn {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }

  .vibe-timer {
    font-size: 15vw;
  }

  .vibe-controls .btn {
    min-width: 120px;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

/* ============================================
   GLASSMORPHISM BUTTONS (Player Controls)
   ============================================ */

.glass-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
  z-index: 1;
  min-width: 180px;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

.glass-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Play button - green accent */
.glass-btn-play,
.glass-btn-start {
  background: linear-gradient(135deg,
      rgba(72, 187, 120, 0.3),
      rgba(56, 161, 105, 0.3));
  border-color: rgba(72, 187, 120, 0.5);
}

.glass-btn-play:hover,
.glass-btn-start:hover {
  background: linear-gradient(135deg,
      rgba(72, 187, 120, 0.4),
      rgba(56, 161, 105, 0.4));
  border-color: rgba(72, 187, 120, 0.7);
  box-shadow: 0 12px 40px rgba(72, 187, 120, 0.3);
}

/* Pause button - yellow accent */
.glass-btn-pause {
  background: linear-gradient(135deg,
      rgba(237, 137, 54, 0.3),
      rgba(221, 107, 32, 0.3));
  border-color: rgba(237, 137, 54, 0.5);
}

.glass-btn-pause:hover {
  background: linear-gradient(135deg,
      rgba(237, 137, 54, 0.4),
      rgba(221, 107, 32, 0.4));
  border-color: rgba(237, 137, 54, 0.7);
  box-shadow: 0 12px 40px rgba(237, 137, 54, 0.3);
}

/* Stop button - red accent */
.glass-btn-stop {
  background: linear-gradient(135deg,
      rgba(245, 101, 101, 0.3),
      rgba(229, 62, 62, 0.3));
  border-color: rgba(245, 101, 101, 0.5);
}

.glass-btn-stop:hover {
  background: linear-gradient(135deg,
      rgba(245, 101, 101, 0.4),
      rgba(229, 62, 62, 0.4));
  border-color: rgba(245, 101, 101, 0.7);
  box-shadow: 0 12px 40px rgba(245, 101, 101, 0.3);
}

/* Back button - neutral */
.glass-btn-back {
  background: linear-gradient(135deg,
      rgba(160, 174, 192, 0.3),
      rgba(113, 128, 150, 0.3));
  border-color: rgba(160, 174, 192, 0.5);
}

.glass-btn-back:hover {
  background: linear-gradient(135deg,
      rgba(160, 174, 192, 0.4),
      rgba(113, 128, 150, 0.4));
  border-color: rgba(160, 174, 192, 0.7);
  box-shadow: 0 12px 40px rgba(160, 174, 192, 0.3);
}

/* Icon-only buttons (Vibe Mode controls) */
.vibe-controls .glass-btn {
  min-width: 70px;
  width: 70px;
  height: 70px;
  padding: 0;
  border-radius: 50%;
  font-size: 1.5rem;
}

.vibe-controls .glass-btn i {
  margin: 0;
}

/* ============================================
   GLASSMORPHISM COUNTERS (Pomodoro Stats)
   ============================================ */

.counters-section {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  margin-bottom: 0 !important;
}

.glass-counter {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-counter:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.counter-icon {
  font-size: 2rem;
  line-height: 1;
}

.counter-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.counter-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Responsive counters */
@media (max-width: 768px) {
  .counters-section {
    gap: 1rem;
  }

  .glass-counter {
    min-width: 100px;
    padding: 0.8rem 1.2rem;
  }

  .counter-icon {
    font-size: 1.5rem;
  }

  .counter-label {
    font-size: 0.75rem;
  }

  .counter-value {
    font-size: 1.5rem;
  }
}

/* Start Focus button - LARGER with pink-purple-blue gradient */
#start-btn.glass-btn-start {
  min-width: 250px !important;
  font-size: 1.4rem !important;
  padding: 1.2rem 3rem !important;
  background: linear-gradient(135deg,
      rgba(236, 72, 153, 0.4),
      rgba(147, 51, 234, 0.4),
      rgba(59, 130, 246, 0.4)) !important;
  border-color: rgba(236, 72, 153, 0.6) !important;
  font-weight: 700 !important;
}

#start-btn.glass-btn-start:hover {
  background: linear-gradient(135deg,
      rgba(236, 72, 153, 0.5),
      rgba(147, 51, 234, 0.5),
      rgba(59, 130, 246, 0.5)) !important;
  border-color: rgba(236, 72, 153, 0.8) !important;
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.4) !important;
}

/* Back button - SMALLER */
#back-btn.glass-btn-back {
  min-width: 160px !important;
  font-size: 1rem !important;
  padding: 0.8rem 1.5rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .glass-btn {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    min-width: 150px;
  }

  #start-btn.glass-btn-start {
    min-width: 200px !important;
    font-size: 1.2rem !important;
    padding: 1rem 2.5rem !important;
  }

  #back-btn.glass-btn-back {
    min-width: 140px !important;
    font-size: 0.9rem !important;
    padding: 0.7rem 1.3rem !important;
  }

  .vibe-controls .glass-btn {
    min-width: 60px;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
}

/* Legacy button styles (keep for backwards compatibility) */
#start-btn {
  font-size: 1.3em;
  background-color: coral;
  border: 0px;
  padding: 1vh 2vw;
}

#pause-btn {
  font-size: 1.3em;
  background-color: rgba(200, 200, 200, 0.85);
  color: #333;
  border: 0px;
  padding: 1vh 2vw;
  font-weight: 500;
}

#pause-btn:hover {
  background-color: rgba(220, 220, 220, 0.95);
}

.btns-area {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

#back-btn {
  background-color: rgb(68 162 205 / 20%);
}

footer {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  /* opcional: vidro fosco */
  padding: 15px 0;
  position: relative;
  width: 100%;
  bottom: 0;
  color: white;
  z-index: 99;
}

.footer-links {
  font-size: 0.9em;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  margin: 0 8px;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 4px;
}

/* Navbar glassmorphism styling */
.navbar-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-glass .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  height: 40px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.navbar-logo:hover {
  opacity: 1;
}

/* Hide navbar logo on homepage only */
body.homepage .navbar-logo {
  display: none;
}

.navbar-auth-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.navbar-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.navbar-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.navbar-btn i {
  font-size: 0.85rem;
}

.navbar-btn-ghost {
  background: transparent;
  border: 1px solid transparent;
}

.navbar-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* User menu dropdown */
.user-menu {
  position: relative;
}

.user-menu-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.user-menu-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.user-menu-btn i.fa-user,
.user-menu-btn i.fa-circle-user {
  font-size: 1rem;
}

.user-menu-btn i.fa-chevron-down {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.user-menu-btn.active i.fa-chevron-down {
  transform: rotate(180deg);
}

.premium-badge-nav {
  color: #ffd700;
  font-size: 0.85rem;
  margin-left: 0.25rem;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(191, 77, 176, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  min-width: 200px;
  padding: 0.5rem 0;
  display: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.user-dropdown.show {
  display: block;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}

.user-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.user-dropdown-item i {
  width: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Disabled state for coming soon features */
.user-dropdown-item-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.coming-soon-badge {
  margin-left: auto;
  font-size: 0.65rem;
  padding: 0.15rem 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.user-dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.5rem 0;
}

.user-email {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.25rem;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .navbar-auth-buttons {
    gap: 0.5rem;
  }

  .navbar-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
  }

  .navbar-btn span {
    display: none;
  }

  .navbar-btn i {
    font-size: 1rem;
  }

  .user-menu-btn {
    padding: 0.4rem 0.75rem;
  }

  .user-email {
    display: none;
  }

  /* Player page mobile fixes */
  .vibe {
    font-size: 2rem !important;
    margin-top: 1rem;
  }

  .vibe-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .counter {
    display: block;
    margin: 0.5rem auto;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    max-width: 90%;
  }

  #timer {
    font-size: 25vw !important;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
  }

  #start-btn,
  #pause-btn,
  #back-btn {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    width: 90%;
    max-width: 300px;
  }

  .btns-area {
    width: 100%;
    padding: 0 1rem;
  }

  .container.text-center.mt-5 {
    margin-top: 2rem !important;
    padding: 0 0.5rem;
  }

  /* Visualizer mobile adjustments */
  #breathing-waves {
    height: 300px;
  }

  #toggle-visualizer {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.8rem;
  }
}

/* Legal pages styling */
.legal-page {
  max-width: 800px;
}

.legal-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 12px;
  color: #333;
}

.legal-content h2 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.legal-content h3 {
  color: #34495e;
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.legal-content .summary {
  background: rgba(255, 215, 0, 0.1);
  padding: 1rem;
  border-left: 4px solid coral;
  border-radius: 4px;
}

.legal-content a {
  color: coral;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* Auth pages styling */
.auth-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-card h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.auth-card .form-control {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 0.75rem;
}

.auth-card .form-control:focus {
  border-color: coral;
  box-shadow: 0 0 0 0.2rem rgba(255, 127, 80, 0.25);
}

.auth-card .btn-primary {
  background-color: coral;
  border: none;
  border-radius: 8px;
  padding: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.auth-card .btn-primary:hover {
  background-color: #ff6347;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 127, 80, 0.4);
}

/* Pricing page glassmorphism styling */
.pricing-card-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card-glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.25);
}

.pricing-card-featured {
  border: 2px solid rgba(255, 127, 80, 0.4);
  box-shadow: 0 8px 24px rgba(255, 127, 80, 0.15);
}

.pricing-card-current {
  border: 2px solid rgba(255, 215, 0, 0.5);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.pricing-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 127, 80, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 127, 80, 0.4);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-badge-success {
  background: rgba(40, 167, 69, 0.3);
  border-color: rgba(40, 167, 69, 0.4);
}

.pricing-badge-promo {
  background: linear-gradient(135deg,
      rgba(255, 87, 34, 0.4),
      rgba(244, 67, 54, 0.4));
  border-color: rgba(255, 87, 34, 0.6);
  animation: promo-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 87, 34, 0.4);
}

@keyframes promo-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-card-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-amount {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.price-original {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: line-through;
  margin-bottom: 0.25rem;
  display: block;
}

.price-period {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.price-save {
  color: #90ee90;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.pricing-card-body {
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  color: white;
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.pricing-features li i {
  width: 1.2rem;
  text-align: center;
  flex-shrink: 0;
}

.pricing-features li.feature-limited {
  opacity: 0.6;
}

.pricing-card-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.pricing-btn-primary {
  background: coral;
  color: white;
}

.pricing-btn-primary:hover {
  background: #ff6347;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 127, 80, 0.3);
  color: white;
}

.pricing-btn-success {
  background: #28a745;
  color: white;
}

.pricing-btn-success:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(40, 167, 69, 0.3);
  color: white;
}

.pricing-btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.pricing-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.pricing-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.current-plan-badge {
  background: rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.5);
  color: #ffd700;
  padding: 0.75rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.current-plan-badge i {
  margin-right: 0.5rem;
}

/* FAQ Section */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  color: white;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: rgba(255, 255, 255, 0.85);
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

/* CTA Card */
.cta-card-glass {
  background: rgba(255, 127, 80, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 127, 80, 0.3);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
}

/* Account page glassmorphism styling */
.account-card-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.account-card-glass:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.account-card-premium {
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.15);
}

.account-card-upgrade {
  border: 2px solid rgba(255, 127, 80, 0.3);
  box-shadow: 0 8px 24px rgba(255, 127, 80, 0.15);
}

.account-card-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.account-card-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.account-card-title i {
  opacity: 0.9;
}

.account-card-body {
  padding: 1.5rem;
}

.account-settings-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.account-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

/* .account-setting-row:hover {
  background: rgba(255, 255, 255, 0.08);
} */

.account-setting-copy {
  max-width: 70%;
}

.account-setting-title {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.account-setting-description {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.account-setting-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.glass-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 32px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.glass-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.glass-toggle-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.glass-toggle-track {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(16, 16, 24, 0.55);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.glass-toggle-track::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, background 0.25s ease;
}

.glass-toggle-input:checked+.glass-toggle-track {
  background: linear-gradient(135deg,
      rgba(255, 128, 171, 0.85),
      rgba(121, 134, 203, 0.9));
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.2);
}

.glass-toggle-input:checked+.glass-toggle-track::after {
  transform: translateX(24px);
  background: rgba(255, 255, 255, 0.98);
}

.glass-toggle-status {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s ease;
}

.glass-toggle-status.is-disabled {
  color: rgba(255, 255, 255, 0.5);
}

.account-settings-footer {
  opacity: 0.65;
  font-size: 0.85rem !important;
  margin-bottom: 0;
}

/* Timer Settings Styles */
.timer-settings-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

/* Timer Preview Card */
.timer-preview-card {
  background: linear-gradient(135deg,
      rgba(255, 127, 80, 0.15) 0%,
      rgba(255, 127, 80, 0.05) 100%);
  border: 1px solid rgba(255, 127, 80, 0.3);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
}

.timer-preview-display {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.preview-time {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff7f50;
  line-height: 1;
  transition: all 0.3s ease;
}

.preview-time.preview-short {
  color: #4ecdc4;
  font-size: 2rem;
}

.preview-time.preview-long {
  color: #a78bfa;
  font-size: 2rem;
}

.preview-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  font-weight: 300;
}

.timer-preview-labels {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.timer-preview-labels span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Preset Cards */
.presets-label,
.sliders-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.preset-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.preset-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.preset-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.preset-card.active {
  background: rgba(255, 127, 80, 0.15);
  border-color: rgba(255, 127, 80, 0.5);
}

.preset-card.active .preset-icon {
  background: rgba(255, 127, 80, 0.3);
  color: #ff7f50;
}

.preset-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.preset-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.preset-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.preset-values {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Timer Sliders */
.timer-sliders {
  margin-top: 0.5rem;
}

.timer-slider-row {
  margin-bottom: 1.25rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.slider-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slider-label i {
  font-size: 0.85rem;
  opacity: 0.7;
}

.slider-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff7f50;
  min-width: 55px;
  text-align: right;
}

.timer-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.timer-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #ff7f50;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 127, 80, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timer-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 12px rgba(255, 127, 80, 0.5);
}

.timer-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #ff7f50;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(255, 127, 80, 0.4);
}

/* Different colors for each slider */
.short-slider::-webkit-slider-thumb {
  background: #4ecdc4;
  box-shadow: 0 2px 8px rgba(78, 205, 196, 0.4);
}

.short-slider::-moz-range-thumb {
  background: #4ecdc4;
  box-shadow: 0 2px 8px rgba(78, 205, 196, 0.4);
}

.long-slider::-webkit-slider-thumb {
  background: #a78bfa;
  box-shadow: 0 2px 8px rgba(167, 139, 250, 0.4);
}

.long-slider::-moz-range-thumb {
  background: #a78bfa;
  box-shadow: 0 2px 8px rgba(167, 139, 250, 0.4);
}

#short-value {
  color: #4ecdc4;
}

#long-value {
  color: #a78bfa;
}

.slider-range {
  display: flex;
  justify-content: space-between;
  margin-top: 0.25rem;
}

.slider-range span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Save Button */
.btn-save-timer {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #ff7f50 0%, #ff6b3d 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-save-timer:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 127, 80, 0.35);
}

.btn-save-timer:active {
  transform: translateY(0);
}

.btn-save-timer:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.timer-feedback {
  text-align: center;
  font-size: 0.9rem;
  padding: 0.5rem;
  border-radius: 8px;
}

.timer-feedback.success {
  background: rgba(78, 205, 196, 0.15);
  color: #4ecdc4;
}

.timer-feedback.error {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
}

@media (max-width: 576px) {
  .preset-cards {
    grid-template-columns: 1fr;
  }

  .timer-preview-display {
    gap: 0.35rem;
  }

  .preview-time {
    font-size: 2rem;
  }

  .preview-time.preview-short,
  .preview-time.preview-long {
    font-size: 1.75rem;
  }

  .timer-preview-labels {
    gap: 1.75rem;
  }
}

@media (max-width: 576px) {
  .account-setting-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .account-setting-copy {
    max-width: 100%;
  }

  .account-setting-controls {
    width: 100%;
    justify-content: space-between;
  }
}

.account-subtitle {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.account-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.account-info-row:last-child {
  border-bottom: none;
}

.account-info-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 0.95rem;
}

.account-info-value {
  color: white;
  font-weight: 600;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
}

.status-badge-premium {
  background: rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.status-badge-free {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.benefits-list li {
  color: white;
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.benefits-list li i {
  width: 1.2rem;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.9;
}

.account-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.account-btn-primary {
  background: coral;
  color: white;
}

.account-btn-primary:hover {
  background: #ff6347;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 127, 80, 0.3);
  color: white;
}

.account-btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.account-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.account-btn-danger {
  background: rgba(220, 53, 69, 0.2);
  border: 2px solid rgba(220, 53, 69, 0.4);
  color: #ff6b7a;
}

.account-btn-danger:hover {
  background: rgba(220, 53, 69, 0.3);
  border-color: rgba(220, 53, 69, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 53, 69, 0.2);
}

.account-btn i {
  font-size: 0.9rem;
}

/* Stats Page Styles */
.stats-header {
  text-align: center;
}

.stats-period-selector {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.period-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.period-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.period-btn.active {
  background: rgba(255, 127, 80, 0.3);
  border-color: rgba(255, 127, 80, 0.6);
  box-shadow: 0 4px 16px rgba(255, 127, 80, 0.2);
}

.period-btn i {
  font-size: 0.85rem;
}

/* Stats Overview Grid */
.stats-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.stats-metric-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.stats-metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.25);
}

.stats-metric-streak {
  border-color: rgba(255, 127, 80, 0.3);
  box-shadow: 0 8px 24px rgba(255, 127, 80, 0.1);
}

.metric-icon {
  font-size: 2.5rem;
  opacity: 0.9;
}

.stats-metric-card:nth-child(1) .metric-icon {
  color: coral;
}

.stats-metric-card:nth-child(2) .metric-icon {
  color: #ffd700;
}

.stats-metric-card:nth-child(3) .metric-icon {
  color: #ff6347;
}

.stats-metric-card:nth-child(4) .metric-icon {
  color: #87ceeb;
}

.metric-content {
  flex: 1;
}

.metric-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.metric-value {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.metric-value.metric-vibe {
  font-size: 1.3rem;
}

.metric-unit {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.7;
  margin-left: 0.25rem;
}

/* Charts Container */
.stats-chart-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.stats-chart-container:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.stats-chart-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stats-chart-title i {
  opacity: 0.8;
}

/* Table Container */
.stats-table-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
}

.stats-table-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stats-table-title i {
  opacity: 0.8;
}

.stats-vibe-table {
  width: 100%;
  color: white;
  border-collapse: separate;
  border-spacing: 0;
}

.stats-vibe-table thead th {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-vibe-table thead th:first-child {
  border-radius: 12px 0 0 0;
}

.stats-vibe-table thead th:last-child {
  border-radius: 0 12px 0 0;
}

.stats-vibe-table tbody td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-vibe-table tbody tr:last-child td {
  border-bottom: none;
}

.stats-vibe-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* No Data Message */
.stats-no-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.stats-no-data h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.stats-no-data p {
  opacity: 0.7;
  margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .stats-overview-grid {
    grid-template-columns: 1fr;
  }

  .stats-metric-card {
    padding: 1.5rem;
  }

  .metric-icon {
    font-size: 2rem;
  }

  .metric-value {
    font-size: 2rem;
  }

  .stats-chart-container {
    padding: 1.5rem;
  }

  .stats-table-container {
    padding: 1rem;
  }

  .period-btn span {
    display: none;
  }

  .period-btn {
    padding: 0.5rem 0.75rem;
  }
}

/* Accordion dark theme */
.accordion-dark .accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.5rem;
  border-radius: 8px;
}

.accordion-dark .accordion-button {
  background: rgba(33, 37, 41, 0.95);
  color: white;
  border-radius: 8px;
}

.accordion-dark .accordion-button:not(.collapsed) {
  background: rgba(255, 127, 80, 0.2);
  color: white;
}

.accordion-dark .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 127, 80, 0.25);
}

/* ============================================
   TAG MANAGEMENT STYLES
   ============================================ */

/* Tag Button Container */
.tag-button-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

/* Round Tag Button */
.tag-round-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tag-round-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 127, 80, 0.5);
  color: rgba(255, 127, 80, 0.9);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(255, 127, 80, 0.2);
}

.tag-round-btn:active {
  transform: scale(0.95);
}

/* Tag Badge */
.tag-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background-color: #ff7f50;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tag Modal */
.tag-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease-out;
}

.tag-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.tag-modal-content {
  position: relative;
  background: rgba(20, 20, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2rem;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tag-modal-content h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.tag-modal-content h3 i {
  color: rgba(255, 127, 80, 0.9);
  margin-right: 0.5rem;
}

/* Glass Input */
.glass-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  color: white;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  outline: none;
  transition: all 0.3s ease;
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 127, 80, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 127, 80, 0.2);
}

/* Color Picker */
.tag-color-picker {
  margin-bottom: 1.5rem;
}

.tag-color-picker label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.color-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.color-option {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.color-option:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.color-option.selected {
  border-color: white;
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

/* Modal Actions */
.tag-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.glass-btn-secondary,
.glass-btn-primary {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.glass-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.glass-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.glass-btn-primary {
  background: linear-gradient(135deg,
      rgba(34, 197, 94, 0.4),
      rgba(22, 163, 74, 0.5));
  border-color: rgba(34, 197, 94, 0.6);
  color: white;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.glass-btn-primary:hover {
  background: linear-gradient(135deg,
      rgba(34, 197, 94, 0.5),
      rgba(22, 163, 74, 0.6));
  border-color: rgba(34, 197, 94, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.glass-btn-primary:active,
.glass-btn-secondary:active {
  transform: translateY(0);
}

/* Tags List */
.tags-list {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 1rem;
  padding: 0 6px;
}

.tag-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tag-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 127, 80, 0.4);
  transform: translateX(4px);
}

.tag-item.selected {
  background: rgba(255, 127, 80, 0.2);
  border-color: rgba(255, 127, 80, 0.6);
}

.tag-color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.tag-name {
  flex: 1;
  color: white;
  font-weight: 500;
  font-size: 1rem;
}

.tag-selected-icon {
  color: rgba(255, 127, 80, 0.9);
  font-size: 1.1rem;
}

.tag-delete-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.3);
  border: 1px solid rgba(220, 38, 38, 0.5);
  color: white;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}

.tag-item:hover .tag-delete-btn {
  opacity: 1;
}

.tag-delete-btn:hover {
  background: rgba(220, 38, 38, 0.5);
  border-color: rgba(220, 38, 38, 0.8);
  transform: scale(1.1);
}

/* Create Tag Button inside modal */
.tag-create-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg,
      rgba(34, 197, 94, 0.3),
      rgba(22, 163, 74, 0.4));
  border: 1px solid rgba(34, 197, 94, 0.5);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.tag-create-btn:hover {
  background: linear-gradient(135deg,
      rgba(34, 197, 94, 0.4),
      rgba(22, 163, 74, 0.5));
  border-color: rgba(34, 197, 94, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tag-round-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .tag-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.875rem;
  }

  .tag-modal-content {
    padding: 1.5rem;
    max-width: 90%;
  }

  .color-options {
    gap: 0.5rem;
  }

  .color-option {
    width: 36px;
    height: 36px;
  }

  .tag-modal-actions {
    flex-direction: column;
  }

  .glass-btn-secondary,
  .glass-btn-primary {
    width: 100%;
  }

  .tag-item {
    padding: 0.875rem;
  }

  .tag-delete-btn {
    opacity: 1;
  }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 1.5rem;
  background: rgba(18, 18, 18, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-consent-text {
  flex: 1;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-consent-text p {
  margin: 0;
  line-height: 1.6;
}

.cookie-consent-text p:first-child {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.cookie-consent-text p:last-child {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-link {
  color: #ff7f50;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: #ff9f7f;
}

.cookie-consent-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.cookie-btn-primary {
  background: linear-gradient(135deg, #ff7f50 0%, #ff6b3d 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
}

.cookie-btn-primary:hover {
  background: linear-gradient(135deg, #ff9f7f 0%, #ff7f50 100%);
  box-shadow: 0 6px 20px rgba(255, 127, 80, 0.5);
  transform: translateY(-2px);
}

.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-consent-banner {
    padding: 1rem;
  }

  .cookie-consent-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .cookie-consent-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-consent-text p:first-child {
    font-size: 1rem;
  }

  .cookie-consent-text p:last-child {
    font-size: 0.875rem;
  }
}

/* ============================================
   ACCOUNT PAGE - DANGER ZONE
   ============================================ */

.account-card-danger {
  border: 2px solid rgba(220, 38, 38, 0.3) !important;
  background: rgba(220, 38, 38, 0.05) !important;
}

.account-card-danger .account-card-header {
  background: rgba(220, 38, 38, 0.1);
  border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.danger-zone-warning {
  margin-bottom: 1.5rem;
}

.danger-zone-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Trial Activation - Inline Button */
.btn-trial-inline {
  margin-left: 0.75rem;
  padding: 0.4rem 0.85rem;
  background: linear-gradient(135deg, #c084fc 0%, #a78bfa 100%);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(192, 132, 252, 0.3);
}

.btn-trial-inline:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 132, 252, 0.4);
}

.btn-trial-inline:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Trial Info Tooltip */
.trial-info-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: help;
}

.trial-info-tooltip:hover {
  color: rgba(255, 255, 255, 0.9);
}

.trial-tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%;
  right: 0;
  width: 240px;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: left;
  z-index: 1000;
  transition: all 0.2s ease;
  pointer-events: none;
  white-space: normal;
}

.trial-tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 12px;
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.95);
}

.trial-info-tooltip:hover .trial-tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Trial Error Inline */
.trial-error-inline {
  padding: 0.6rem 1rem;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 8px;
  color: #fca5a5;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Trial Modal Styles */
.trial-modal-content {
  border: 2px solid rgba(192, 132, 252, 0.5) !important;
  position: relative;
}

.trial-modal-header {
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.2) 0%, rgba(167, 139, 250, 0.2) 100%) !important;
  padding-right: 3rem;
}

.trial-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.2rem;
  padding: 0;
  z-index: 1;
}

.trial-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: scale(1.05);
}

.trial-modal-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.trial-modal-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.trial-modal-subtext {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.trial-modal-btn-primary {
  background: linear-gradient(135deg, #c084fc 0%, #a78bfa 100%);
  border: none;
  padding: 0.75rem 1.5rem;
  min-width: 150px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.trial-modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(192, 132, 252, 0.4);
}

/* Delete Account Modal */
.delete-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.delete-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.delete-modal-content {
  position: relative;
  max-width: 500px;
  width: 90%;
  background: rgba(18, 18, 18, 0.98);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(220, 38, 38, 0.5);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  animation: slideInModal 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInModal {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.delete-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(220, 38, 38, 0.3);
  background: rgba(220, 38, 38, 0.1);
  border-radius: 16px 16px 0 0;
}

.delete-modal-header h3 {
  margin: 0;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.delete-modal-body {
  padding: 2rem 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.delete-modal-warning {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.1rem;
}

.delete-modal-list {
  margin: 1rem 0 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.delete-modal-confirm-text {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.delete-modal-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.delete-modal-input:focus {
  outline: none;
  border-color: rgba(220, 38, 38, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.delete-modal-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  text-transform: none;
}

.delete-modal-error {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid rgba(220, 38, 38, 0.5);
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
}

.delete-modal-actions {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.delete-modal-btn {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.delete-modal-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.delete-modal-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.delete-modal-btn-danger {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.delete-modal-btn-danger:hover:not(:disabled) {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
  transform: translateY(-2px);
}

.delete-modal-btn-danger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================
   OAUTH / SOCIAL LOGIN STYLES
   ============================================ */

/* OAuth Section Container */
.oauth-section {
  margin-bottom: 1.5rem;
}

/* Google OAuth Button */
.oauth-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.oauth-btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 127, 80, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.oauth-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Google Logo in Button */
.oauth-btn-google .google-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Divider OR */
.oauth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
}

.oauth-divider::before,
.oauth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.oauth-divider span {
  padding: 0 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .oauth-btn {
    font-size: 0.95rem;
    padding: 0.7rem 0.9rem;
  }

  .oauth-divider span {
    font-size: 0.8rem;
  }
}

/* ============================================
   TASKS PAGE STYLES
   ============================================ */

/* Tasks Header */
.tasks-header {
  text-align: center;
}

/* Add Task Container */
.tasks-add-container {
  max-width: 600px;
  margin: 0 auto;
}

.tasks-input-wrapper {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.tasks-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  color: white;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.tasks-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.tasks-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 127, 80, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 127, 80, 0.15);
}

.tasks-add-btn {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg,
      rgba(255, 127, 80, 0.8),
      rgba(255, 99, 71, 0.9));
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
}

.tasks-add-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 127, 80, 0.4);
}

.tasks-add-btn:active:not(:disabled) {
  transform: translateY(0);
}

.tasks-add-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Tasks List Container */
.tasks-list-container {
  max-width: 600px;
  margin: 0 auto;
}

/* Tasks Section */
.tasks-section {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 1.5rem;
}

.tasks-section-title {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tasks-section-title i {
  color: rgba(255, 127, 80, 0.9);
}

.tasks-section-completed .tasks-section-title i,
.tasks-section-completed i {
  color: rgba(34, 197, 94, 0.8);
}

.tasks-toggle-btn {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.35rem 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tasks-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* Tasks List */
.tasks-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Task Item */
.task-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.task-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.task-item-completed {
  opacity: 0.6;
}

.task-item-completed .task-title {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
}

/* Custom Checkbox */
.task-checkbox-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.task-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.task-checkbox-custom {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.task-checkbox-custom::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75rem;
  color: white;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.task-checkbox:checked+.task-checkbox-custom {
  background: linear-gradient(135deg,
      rgba(34, 197, 94, 0.8),
      rgba(22, 163, 74, 0.9));
  border-color: rgba(34, 197, 94, 0.8);
}

.task-checkbox:checked+.task-checkbox-custom::after {
  opacity: 1;
  transform: scale(1);
}

.task-checkbox-wrapper:hover .task-checkbox-custom {
  border-color: rgba(255, 127, 80, 0.6);
}

/* Task Title */
.task-title {
  flex: 1;
  color: white;
  font-size: 1rem;
  word-break: break-word;
}

/* Task Delete Button */
.task-delete-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.task-item:hover .task-delete-btn {
  opacity: 1;
}

.task-delete-btn:hover {
  background: rgba(220, 38, 38, 0.4);
  border-color: rgba(220, 38, 38, 0.6);
  color: white;
}

/* Empty State */
.tasks-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
}

.tasks-empty h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.tasks-empty p {
  opacity: 0.7;
  margin-bottom: 0;
}

/* Loading State */
.tasks-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  max-width: 600px;
  margin: 0 auto;
}

.tasks-loading p {
  margin-top: 1rem;
  opacity: 0.7;
}

/* Toast Notifications */
.tasks-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 0.875rem 1.5rem;
  background: rgba(20, 20, 30, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tasks-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.tasks-toast-success {
  border-color: rgba(34, 197, 94, 0.5);
}

.tasks-toast-success i {
  color: #22c55e;
}

.tasks-toast-error {
  border-color: rgba(220, 38, 38, 0.5);
}

.tasks-toast-error i {
  color: #ef4444;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tasks-input-wrapper {
    flex-direction: column;
  }

  .tasks-input {
    width: 100%;
  }

  .tasks-add-btn {
    width: 100%;
    height: 48px;
    border-radius: 12px;
  }

  .task-delete-btn {
    opacity: 1;
  }

  .tasks-section {
    padding: 1rem;
  }

  .task-item {
    padding: 0.875rem;
  }
}

/* ============================================
   PLAYER PAGE - SESSION SELECTORS
   ============================================ */

/* Session Selectors Container (Tag + Task) */
.session-selectors {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Task Button Container */
.task-button-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Round Task Button */
.task-round-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.task-round-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(138, 43, 226, 0.5);
  color: rgba(138, 43, 226, 0.9);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(138, 43, 226, 0.2);
}

.task-round-btn:active {
  transform: scale(0.95);
}

.task-round-btn.has-selection {
  border-color: rgba(138, 43, 226, 0.6);
  background: rgba(138, 43, 226, 0.15);
  color: rgba(138, 43, 226, 0.9);
}

/* Task Badge */
.task-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background-color: #8a2be2;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease-out;
}

/* ============================================
   VIBE LIKE BUTTON
   ============================================ */

.like-button-container {
  position: relative;
}

.like-round-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.like-round-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(244, 63, 94, 0.4);
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.2);
  transform: translateY(-2px);
}

.like-round-btn:active {
  transform: translateY(0) scale(0.95);
}

/* Liked state - filled heart with red/pink accent */
.like-round-btn.liked {
  background: linear-gradient(135deg,
      rgba(244, 63, 94, 0.25),
      rgba(236, 72, 153, 0.25));
  border-color: rgba(244, 63, 94, 0.6);
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.3);
}

.like-round-btn.liked i {
  color: #f43f5e;
}

.like-round-btn.liked:hover {
  background: linear-gradient(135deg,
      rgba(244, 63, 94, 0.3),
      rgba(236, 72, 153, 0.3));
  border-color: rgba(244, 63, 94, 0.8);
}

/* Heart pop animation */
@keyframes heartPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.like-round-btn.animate-like {
  animation: heartPop 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading state */
.like-round-btn.loading {
  pointer-events: none;
  opacity: 0.6;
}

.like-round-btn.loading i {
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .like-round-btn {
    /* WCAG compliant tap target */
    min-width: 44px;
    min-height: 44px;
  }
}

/* Task Modal */
.task-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease-out;
}

.task-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.task-modal-content {
  position: relative;
  background: rgba(20, 20, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2rem;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.task-modal-content h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.task-modal-content h3 i {
  color: rgba(138, 43, 226, 0.9);
  margin-right: 0.5rem;
}

.task-counter {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* Modal Tasks List */
.modal-tasks-list {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 1rem;
  padding: 0 6px;
}

.modal-task-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-task-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(138, 43, 226, 0.4);
  transform: translateX(4px);
}

.modal-task-item.selected {
  background: rgba(138, 43, 226, 0.2);
  border-color: rgba(138, 43, 226, 0.6);
}

/* Modal Task Checkbox (same style as tasks page) */
.modal-task-checkbox-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.modal-task-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.modal-task-checkbox-custom {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-task-checkbox-custom::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75rem;
  color: white;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.modal-task-checkbox:checked+.modal-task-checkbox-custom {
  background: linear-gradient(135deg,
      rgba(34, 197, 94, 0.8),
      rgba(22, 163, 74, 0.9));
  border-color: rgba(34, 197, 94, 0.8);
}

.modal-task-checkbox:checked+.modal-task-checkbox-custom::after {
  opacity: 1;
  transform: scale(1);
}

.modal-task-checkbox-wrapper:hover .modal-task-checkbox-custom {
  border-color: rgba(34, 197, 94, 0.6);
}

.task-name {
  flex: 1;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  word-break: break-word;
}

.task-selected-icon {
  color: rgba(138, 43, 226, 0.9);
  font-size: 1rem;
}

/* Create Task Button */
.task-create-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg,
      rgba(138, 43, 226, 0.3),
      rgba(106, 27, 154, 0.4));
  border: 1px solid rgba(138, 43, 226, 0.5);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.task-create-btn:hover {
  background: linear-gradient(135deg,
      rgba(138, 43, 226, 0.4),
      rgba(106, 27, 154, 0.5));
  border-color: rgba(138, 43, 226, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138, 43, 226, 0.3);
}

.task-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Mobile Responsive for Session Selectors */
@media (max-width: 576px) {
  .session-selectors {
    gap: 0.75rem;
  }

  .task-round-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .task-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.875rem;
  }

  .task-modal-content {
    padding: 1.5rem;
    max-width: 90%;
  }

  .task-modal-actions {
    flex-direction: column;
  }
}