/* ===== COUPLE FOCUS PREMIUM THEME ===== */
.focus-premium-bg {
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}
.focus-premium-bg::before {
  content: '';
  position: fixed;
  top: -30%;
  left: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse 100% 80% at 20% 20%, rgba(88, 28, 135, 0.08) 0%, rgba(88, 28, 135, 0.04) 30%, transparent 60%);
  filter: blur(80px);
  animation: ambient-drift-1 25s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
.focus-premium-bg::after {
  content: '';
  position: fixed;
  bottom: -25%;
  right: -25%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse 90% 70% at 80% 80%, rgba(30, 64, 175, 0.06) 0%, rgba(30, 64, 175, 0.03) 35%, transparent 55%);
  filter: blur(60px);
  animation: ambient-drift-2 20s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes ambient-drift-1 {
  0% { transform: translate(0%, 0%) scale(1); opacity: 0.8; }
  100% { transform: translate(5%, 8%) scale(1.1); opacity: 0.5; }
}
@keyframes ambient-drift-2 {
  0% { transform: translate(0%, 0%) scale(1); opacity: 0.7; }
  100% { transform: translate(-6%, -5%) scale(1.15); opacity: 0.4; }
}
.focus-glass-card {
  background: rgba(15, 15, 20, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.focus-glass-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 12px 48px rgba(139, 92, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}
@keyframes focus-border-pulse {
  0%, 100% { border-color: rgba(251, 146, 60, 0.4); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(251, 146, 60, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.03); }
  50% { border-color: rgba(251, 146, 60, 0.7); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 35px rgba(251, 146, 60, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05); }
}
.focus-invitation-card {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(251, 146, 60, 0.4);
  border-radius: 1.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(251, 146, 60, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  animation: focus-border-pulse 4s ease-in-out infinite;
}
.focus-invitation-card:hover {
  animation-play-state: paused;
  border-color: rgba(251, 146, 60, 0.8);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), 0 0 45px rgba(251, 146, 60, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}
.focus-premium-title {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(251, 146, 60, 0.2);
  letter-spacing: -0.02em;
}
.focus-glass-card-active {
  border-color: rgba(251, 146, 60, 0.4);
  box-shadow: 0 0 30px rgba(251, 146, 60, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.focus-glow-btn {
  background: linear-gradient(135deg, #FB923C 0%, #F97316 50%, #EA580C 100%);
  color: #0A0A0A;
  font-weight: 700;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(251, 146, 60, 0.3);
}
.focus-glow-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.focus-glow-btn:hover {
  box-shadow: 0 0 35px rgba(251, 146, 60, 0.5);
  transform: translateY(-1px);
}
.focus-glow-btn:hover::before { opacity: 1; }
.focus-glow-btn:disabled { opacity: 0.5; box-shadow: none; }
@keyframes focus-breathe {
  0%, 100% { box-shadow: 0 0 20px rgba(251, 146, 60, 0.3); }
  50% { box-shadow: 0 0 35px rgba(251, 146, 60, 0.5); }
}
.focus-breathe { animation: focus-breathe 3s ease-in-out infinite; }
.focus-progress-dot { width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; transition: all 0.4s ease; }
.focus-progress-dot-pending { background: rgba(75, 85, 99, 0.4); color: rgba(156, 163, 175, 0.8); border: 1px solid rgba(75, 85, 99, 0.6); }
.focus-progress-dot-active { background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%); color: #ffffff; box-shadow: 0 0 20px rgba(139, 92, 246, 0.5); animation: focus-breathe-purple 2s ease-in-out infinite; }
.focus-progress-dot-complete { background: linear-gradient(135deg, #10B981 0%, #34D399 100%); color: #ffffff; box-shadow: 0 0 15px rgba(16, 185, 129, 0.4); }
@keyframes focus-breathe-purple {
  0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.5); }
  50% { box-shadow: 0 0 30px rgba(139, 92, 246, 0.7); }
}
.focus-title { color: #ffffff; font-weight: 700; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); }
.focus-subtitle { color: rgba(209, 213, 219, 0.9); }
.focus-text-muted { color: rgba(156, 163, 175, 0.8); }
.focus-input { background: rgba(30, 30, 40, 0.6); border: 1px solid rgba(139, 92, 246, 0.2); border-radius: 1rem; color: #ffffff; transition: all 0.3s ease; }
.focus-input:focus { border-color: rgba(139, 92, 246, 0.5); box-shadow: 0 0 20px rgba(139, 92, 246, 0.15); outline: none; }
.focus-input::placeholder { color: rgba(156, 163, 175, 0.6); }
.focus-option-btn { background: rgba(30, 30, 40, 0.6); border: 1px solid rgba(139, 92, 246, 0.2); border-radius: 1rem; color: rgba(229, 231, 235, 0.9); transition: all 0.3s ease; }
.focus-option-btn:hover { background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.4); }
.focus-option-btn-selected { background: rgba(139, 92, 246, 0.2); border-color: rgba(139, 92, 246, 0.6); color: #ffffff; box-shadow: 0 0 15px rgba(139, 92, 246, 0.2); }
.focus-waiting-overlay { background: rgba(10, 10, 10, 0.8); backdrop-filter: blur(10px); }
.focus-icon-glow { background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(168, 85, 247, 0.1) 100%); border: 1px solid rgba(139, 92, 246, 0.3); box-shadow: 0 0 20px rgba(139, 92, 246, 0.2); }
.focus-section-header { color: rgba(251, 146, 60, 0.95); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; }
.focus-tabs-container { background: rgba(30, 30, 40, 0.5); border: 1px solid rgba(75, 85, 99, 0.3); border-radius: 9999px; padding: 0.25rem; }
.focus-tab { border-radius: 9999px; padding: 0.5rem 1.5rem; color: rgba(156, 163, 175, 0.8); font-weight: 500; transition: all 0.3s ease; }
.focus-tab-active { background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(168, 85, 247, 0.2) 100%); color: #ffffff; box-shadow: 0 0 15px rgba(139, 92, 246, 0.2); }

/* Game description HTML styling */
.game-description p { margin-bottom: 0.75rem; }
.game-description p:last-child { margin-bottom: 0; }
.game-description ul, .game-description ol { margin: 0.5rem 0; padding-right: 1.5rem; padding-left: 1.5rem; }
.game-description ul { list-style-type: disc; }
.game-description ol { list-style-type: decimal; }
.game-description li { margin-bottom: 0.25rem; }
.game-description strong, .game-description b { color: #F7C873; font-weight: 600; }
.game-description em, .game-description i { font-style: italic; }
.game-description a { color: #F7C873; text-decoration: underline; }
.game-description a:hover { color: #FFD27A; }
.game-description br { display: block; content: ""; margin-top: 0.5rem; }

/* Quiz description HTML styling */
.quiz-html-content ul { margin: 0.5rem 0; padding-right: 1.25rem; padding-left: 1.25rem; list-style-type: disc; }
.quiz-html-content li { margin-bottom: 0.25rem; }
.quiz-html-content strong, .quiz-html-content b { color: #F2B56B; font-weight: 600; }

/* Tip content HTML styling */
.tip-html-content { white-space: pre-wrap; }
.tip-html-content p { margin-bottom: 1rem; }
.tip-html-content p:last-child { margin-bottom: 0; }
.tip-html-content ul { margin: 0.75rem 0; padding-right: 1.5rem; padding-left: 1.5rem; list-style-type: disc; }
.tip-html-content li { margin-bottom: 0.5rem; }
.tip-html-content strong, .tip-html-content b { color: #DEB067; font-weight: 600; }
.tip-html-content em, .tip-html-content i { font-style: italic; color: #F8E1C4; }
.tip-html-content br { display: block; content: ""; margin-top: 0.5rem; }

/* Pack description HTML styling */
.pack-description { text-align: right; }
.pack-description p { margin-bottom: 0.5rem; }
.pack-description p:last-child { margin-bottom: 0; }
.pack-description ul, .pack-description ol { margin: 0.5rem 0; padding-right: 1.25rem; padding-left: 0; list-style-position: inside; }
.pack-description ul { list-style-type: disc; }
.pack-description ol { list-style-type: decimal; }
.pack-description li { margin-bottom: 0.375rem; line-height: 1.5; }
.pack-description strong, .pack-description b { color: #FDEFD0; font-weight: 700; }
.pack-description em, .pack-description i { font-style: italic; }
.pack-description br { display: block; content: ""; margin-top: 0.35rem; }

/* Pack detail page description HTML styling */
.pack-description-html { text-align: center; }
.pack-description-html p { margin-bottom: 0.5rem; }
.pack-description-html p:last-child { margin-bottom: 0; }
.pack-description-html ul, .pack-description-html ol { margin: 0.5rem auto; padding-right: 1.5rem; padding-left: 1.5rem; text-align: right; max-width: 90%; display: inline-block; }
.pack-description-html ul { list-style-type: disc; list-style-position: inside; }
.pack-description-html ol { list-style-type: decimal; list-style-position: inside; }
.pack-description-html li { margin-bottom: 0.375rem; line-height: 1.5; }
.pack-description-html strong, .pack-description-html b { color: #FF8C00; font-weight: 700; }
.pack-description-html em, .pack-description-html i { font-style: italic; }
.pack-description-html br { display: block; content: ""; margin-top: 0.35rem; }
.pack-item-subtitle strong, .pack-item-subtitle b { color: #FF8C00; font-weight: 600; }

/* ============================================
   Feedback Widget Styles
   All classes prefixed with fwgt- to avoid conflicts
   ============================================ */
.fwgt-fixed { position: fixed; }
.fwgt-z-50 { z-index: 50; }
.fwgt-bottom-6 { bottom: 1.5rem; }
.fwgt-left-6 { left: 1.5rem; }
.fwgt-right-6 { right: 1.5rem; }
.fwgt-top-6 { top: 1.5rem; }
.fwgt-flex { display: flex; }
.fwgt-items-center { align-items: center; }
.fwgt-gap-2 { gap: 0.5rem; }
.fwgt-w-5 { width: 1.25rem; }
.fwgt-h-5 { height: 1.25rem; }
.fwgt-w-4 { width: 1rem; }
.fwgt-h-4 { height: 1rem; }
.fwgt-w-8 { width: 2rem; }
.fwgt-h-8 { height: 2rem; }
.fwgt-text-base { font-size: 1rem; }
.fwgt-font-semibold { font-weight: 600; }
.fwgt-text-amber-400 { color: #fbbf24; }
.fwgt-text-amber-500 { color: #f59e0b; }
.fwgt-text-gray-300 { color: #d1d5db; }
.fwgt-text-green-500 { color: #22c55e; }
.fwgt-fill-amber-400 { fill: #fbbf24; }
.fwgt-transition-all { transition: all 0.2s ease; }
.fwgt-trigger-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; background: linear-gradient(135deg, #ff8a3e 0%, #ff4f6c 100%); color: #fff; border-radius: 9999px; font-weight: 600; font-size: 0.875rem; box-shadow: 0 8px 30px -5px rgba(255, 138, 62, 0.5); transition: all 0.3s ease; border: none; cursor: pointer; animation: fwgt-pulse 3s ease-in-out infinite; }
.fwgt-trigger-btn:hover { transform: scale(1.05); box-shadow: 0 12px 40px -5px rgba(255, 138, 62, 0.6); }
@keyframes fwgt-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
.fwgt-modal { width: 340px; max-width: calc(100vw - 2rem); background: linear-gradient(180deg, #241018 0%, #1d0d10 100%); border: 1px solid #3b1817; border-radius: 1.5rem; box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.7); overflow: hidden; animation: fwgt-slide-up 0.3s ease-out; }
@keyframes fwgt-slide-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fwgt-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid #3b1817; color: #ffe2c7; }
.fwgt-close-btn { padding: 0.375rem; border-radius: 9999px; color: #e9bdaa; background: transparent; border: none; cursor: pointer; transition: all 0.2s ease; }
.fwgt-close-btn:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.fwgt-modal-content { padding: 1.5rem 1.25rem; min-height: 120px; }
.fwgt-modal-footer { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-top: 1px solid #3b1817; gap: 1rem; }
.fwgt-progress-dots { display: flex; gap: 0.375rem; }
.fwgt-progress-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: #3b1817; transition: all 0.2s ease; }
.fwgt-progress-dot-active { background: #ff8a3e; transform: scale(1.25); }
.fwgt-progress-dot-done { background: #22c55e; }
.fwgt-submit-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.625rem 1.25rem; background: linear-gradient(135deg, #ff8a3e 0%, #ff4f6c 100%); color: #fff; border-radius: 0.75rem; font-weight: 600; font-size: 0.875rem; border: none; cursor: pointer; transition: all 0.2s ease; }
.fwgt-submit-btn:hover:not(:disabled) { transform: scale(1.02); box-shadow: 0 4px 15px rgba(255, 138, 62, 0.4); }
.fwgt-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.fwgt-question-container { display: flex; flex-direction: column; gap: 1rem; }
.fwgt-question-text { color: #ffe2c7; font-weight: 500; font-size: 0.9375rem; line-height: 1.5; }
.fwgt-stars-container { display: flex; justify-content: center; gap: 0.25rem; }
.fwgt-star-btn { padding: 0.25rem; background: transparent; border: none; cursor: pointer; transition: transform 0.2s ease; }
.fwgt-star-btn:hover { transform: scale(1.1); }
.fwgt-star-selected { animation: fwgt-star-pop 0.3s ease-out; }
@keyframes fwgt-star-pop { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } }
.fwgt-rating-labels { display: flex; justify-content: space-between; padding: 0 0.5rem; margin-top: 0.25rem; }
.fwgt-rating-label-low, .fwgt-rating-label-high { font-size: 0.75rem; color: #e9bdaa; opacity: 0.8; }
.fwgt-textarea { width: 100%; padding: 0.75rem; background: #2b1415; border: 1px solid #3b1817; border-radius: 0.75rem; color: #ffe2c7; font-size: 0.875rem; resize: none; font-family: inherit; }
.fwgt-textarea::placeholder { color: #e9bdaa; opacity: 0.6; }
.fwgt-textarea:focus { outline: none; border-color: #ff8a3e; box-shadow: 0 0 0 2px rgba(255, 138, 62, 0.2); }
.fwgt-boolean-container { display: flex; justify-content: center; gap: 1rem; }
.fwgt-boolean-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 0.75rem; font-weight: 500; font-size: 0.875rem; border: none; cursor: pointer; transition: all 0.2s ease; }
.fwgt-boolean-inactive { background: #2b1415; color: #e9bdaa; border: 1px solid #3b1817; }
.fwgt-boolean-inactive:hover { background: #3b1817; }
.fwgt-boolean-yes-active { background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); color: #fff; transform: scale(1.05); }
.fwgt-boolean-no-active { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); color: #fff; transform: scale(1.05); }
.fwgt-loading { display: flex; align-items: center; justify-content: center; padding: 2rem; }
.fwgt-spinner { width: 2rem; height: 2rem; border: 2px solid #3b1817; border-top-color: #ff8a3e; border-radius: 9999px; animation: fwgt-spin 1s linear infinite; }
@keyframes fwgt-spin { to { transform: rotate(360deg); } }
.fwgt-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 0; }
.fwgt-success-icon { width: 4rem; height: 4rem; display: flex; align-items: center; justify-content: center; background: rgba(34, 197, 94, 0.1); border-radius: 9999px; margin-bottom: 1rem; }
.fwgt-success-title { color: #ffe2c7; font-weight: 600; font-size: 1rem; margin: 0 0 0.25rem 0; }
.fwgt-success-subtitle { color: #e9bdaa; font-size: 0.875rem; margin: 0; }
.fwgt-options-container { display: flex; flex-direction: column; gap: 0.5rem; }
.fwgt-option-btn { padding: 0.75rem 1rem; border-radius: 0.75rem; border: 1px solid #3b1817; background: #2b1415; color: #e9bdaa; text-align: right; font-size: 0.875rem; font-weight: 500; transition: all 0.2s ease; cursor: pointer; }
.fwgt-option-btn:hover { border-color: #ff8a3e; background: #3b1817; }
.fwgt-option-selected { background: linear-gradient(135deg, #ff8a3e 0%, #ff4f6c 100%); color: #fff; border-color: transparent; transform: scale(1.02); }
