/* ==========================================================================
   GLAMGRIN - SUMMER FLASH SALE & SELF-CARE SEPTEMBER POLL MODULES
   ========================================================================== */

/* Hot Sale Pulsing Badge */
.sale-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #FF4D6D 0%, #E63956 100%);
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(255, 77, 109, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-decoration: none;
  animation: sale-pulse 2.2s infinite;
}

.sale-badge-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 22px rgba(255, 77, 109, 0.55);
}

@keyframes sale-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.7), 0 4px 14px rgba(255, 77, 109, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 77, 109, 0), 0 4px 14px rgba(255, 77, 109, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 109, 0), 0 4px 14px rgba(255, 77, 109, 0.4);
  }
}

/* Floating Corner Hot Sale Pill for Mobile / Universal Visibility */
.floating-sale-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF4D6D 0%, #DE4364 100%);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 10px 25px -3px rgba(222, 67, 100, 0.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  animation: sale-pulse 2.5s infinite;
}

.floating-sale-pill:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 30px rgba(222, 67, 100, 0.65);
}

/* Modal Overlay & Card */
.sale-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 20, 25, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sale-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sale-modal-card {
  background: #ffffff;
  border-radius: 28px;
  max-width: 500px;
  width: 100%;
  padding: 2.25rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(222, 67, 100, 0.25);
  border: 1px solid #FFE4E9;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

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

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFF5F7;
  border: 1px solid #FFE4E9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7A5C64;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: #FF7FA5;
  color: #ffffff;
  border-color: #FF7FA5;
}

/* Dedicated Solid High-Contrast Modal CTA Button */
.btn-sale-modal-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 1.1rem 2rem !important;
  background: linear-gradient(135deg, #FF4D6D 0%, #DE4364 100%) !important;
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.875rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 10px 25px -3px rgba(222, 67, 100, 0.4) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-sale-modal-cta:hover {
  background: linear-gradient(135deg, #DE4364 0%, #B52A47 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 15px 30px -5px rgba(222, 67, 100, 0.6) !important;
}

/* Dedicated Poll Submit Button */
.btn-poll-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem 2.5rem !important;
  background: linear-gradient(135deg, #DE4364 0%, #B52A47 100%) !important;
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  border-radius: 9999px !important;
  border: none !important;
  box-shadow: 0 10px 25px -4px rgba(222, 67, 100, 0.35) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.btn-poll-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #B52A47 0%, #881337 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 15px 30px -4px rgba(222, 67, 100, 0.5) !important;
}

.btn-poll-submit:disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* ==========================================================================
   ULTRA-PREMIUM GAMIFIED KYC DISCOVERY EXPERIENCE (100/100 AESTHETICS)
   ========================================================================== */
.gamified-stage-wrapper {
  background: radial-gradient(circle at 50% 0%, #FFF5F7 0%, #FFFFFF 70%);
  min-height: 80vh;
  padding: 2.5rem 1rem;
}

.game-console-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 36px;
  border: 1.5px solid rgba(255, 204, 213, 0.8);
  box-shadow: 0 30px 70px -15px rgba(222, 67, 100, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.9);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 640px) {
  .game-console-card {
    padding: 1.75rem 1.25rem;
    border-radius: 26px;
  }
}

/* Atmospheric Ambient Glows */
.game-console-card::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 127, 165, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.game-console-card::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 205, 211, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

/* Gamified Quest Header & Dynamic XP Tracker */
.game-tracker-bar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1.5px solid #FFE4E9;
}

.game-xp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #FFF0F3 0%, #FFE4E9 100%);
  color: #DE4364;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #FFCCD5;
  box-shadow: 0 2px 8px rgba(222, 67, 100, 0.08);
}

.game-progress-track {
  width: 100%;
  height: 8px;
  background: #F8E9EC;
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.game-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #FF7FA5 0%, #DE4364 100%);
  border-radius: 9999px;
  transition: width 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 12px rgba(222, 67, 100, 0.6);
}

/* Step Stages */
.game-step-screen {
  display: none;
  animation: gameSlideIn 0.38s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.game-step-screen.active {
  display: block;
}

@keyframes gameSlideIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Interactive Gamified Selection Cards */
.game-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .game-card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.game-choice-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.25rem 1.4rem;
  background: #FFFFFF;
  border: 2px solid #FFE4E9;
  border-radius: 22px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  user-select: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.game-choice-card:hover {
  border-color: #FF7FA5;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 24px -6px rgba(222, 67, 100, 0.16);
}

.game-choice-card:active {
  transform: scale(0.98);
}

.game-choice-card.selected {
  background: linear-gradient(135deg, #FFF8FA 0%, #FFF0F4 100%);
  border-color: #DE4364;
  box-shadow: 0 12px 28px -4px rgba(222, 67, 100, 0.24);
}

.game-card-avatar {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: #FFF0F3;
  color: #DE4364;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1.5px solid #FFD4DC;
  transition: all 0.25s ease;
}

.game-choice-card.selected .game-card-avatar {
  background: #DE4364;
  color: #FFFFFF;
  border-color: #DE4364;
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 4px 12px rgba(222, 67, 100, 0.35);
}

.game-card-body h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #1c1917;
  display: flex;
  align-items: center;
  gap: 6px;
}

.game-card-body p {
  font-size: 0.78rem;
  color: #78716c;
  margin-top: 3px;
  line-height: 1.35;
}

/* Custom Live Check Indicator */
.game-check-bubble {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #E7E5E4;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.game-choice-card.selected .game-check-bubble {
  background: #DE4364;
  border-color: #DE4364;
  transform: scale(1.1);
}

.game-check-bubble svg {
  width: 11px;
  height: 11px;
  stroke: #FFFFFF;
  stroke-width: 3.5;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.game-choice-card.selected .game-check-bubble svg {
  opacity: 1;
}

/* Action Floating Controls */
.game-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1.5px solid #FFE8EC;
}

.btn-game-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1.05rem 2.25rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #FF4D6D 0%, #DE4364 100%);
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(222, 67, 100, 0.35);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-game-primary:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 32px rgba(222, 67, 100, 0.45);
}

.btn-game-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-game-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.9rem 1.6rem;
  border-radius: 9999px;
  background: #FFFFFF;
  border: 1.5px solid #FFE4E9;
  color: #78716c;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-game-ghost:hover {
  background: #FFF0F3;
  color: #DE4364;
  border-color: #FFCCD5;
}

/* Success Celebration Screen */
.game-win-card {
  background: linear-gradient(135deg, #FFFDFC 0%, #FFF5F7 100%);
  border: 2px solid #FFCCD5;
  border-radius: 32px;
  padding: 2.75rem 2rem;
  text-align: center;
  box-shadow: 0 20px 45px -10px rgba(222, 67, 100, 0.22);
}

/* Quiz Navigation Action Bar */
.quiz-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #FFE8EC;
  gap: 1rem;
}

.btn-quiz-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid #E7E5E4;
  background: #ffffff;
  color: #78716c;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-quiz-back:hover {
  background: #F5F5F4;
  color: #1c1917;
}

.btn-quiz-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #FF4D6D 0%, #DE4364 100%);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(222, 67, 100, 0.3);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: auto;
}

.btn-quiz-next:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(222, 67, 100, 0.45);
}

.btn-quiz-next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* VAMP Special subtle highlight tag */
.vamp-tag {
  display: inline-block;
  background: linear-gradient(135deg, #FFF0F3, #FFE4E9);
  color: #DE4364;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid #FFCCD5;
  margin-left: 6px;
}

/* ==========================================================================
   ULTRA-PREMIUM VAMP EDUCATIONAL SPOTLIGHT STYLES
   ========================================================================== */
.vamp-spotlight-card {
  background: #ffffff !important;
  border: 1px solid #FFE4E9 !important;
  border-radius: 28px !important;
  padding: 2rem !important;
  box-shadow: 0 14px 35px -8px rgba(222, 67, 100, 0.08), 0 2px 8px rgba(0, 0, 0, 0.02) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.vamp-spotlight-card:hover {
  box-shadow: 0 20px 45px -10px rgba(222, 67, 100, 0.12) !important;
  border-color: #FFCCD5 !important;
}

/* Subtle luxury gold/rose top accent bar */
.vamp-spotlight-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 4px !important;
  background: linear-gradient(90deg, #DE4364 0%, #FF7FA5 50%, #D4AF37 100%) !important;
}

.vamp-badge-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: linear-gradient(135deg, #FFF0F3 0%, #FFE4E9 100%) !important;
  color: #DE4364 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 4px 12px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(222, 67, 100, 0.2) !important;
}

.vamp-feature-box {
  background: #FFFDFE !important;
  border: 1px solid #FFE8EC !important;
  border-radius: 20px !important;
  padding: 1.25rem 1.25rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  transition: all 0.3s ease !important;
}

.vamp-feature-box:hover {
  background: #FFFFFF !important;
  border-color: #FFCCD5 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px -4px rgba(222, 67, 100, 0.08) !important;
}

.vamp-icon-title {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #1c1917 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.vamp-icon-bubble {
  width: 32px !important;
  height: 32px !important;
  border-radius: 10px !important;
  background: #FFF0F3 !important;
  color: #DE4364 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.9rem !important;
  flex-shrink: 0 !important;
}

.vamp-tag-item {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: #57534E !important;
  background: #FFFFFF !important;
  padding: 4px 10px !important;
  border-radius: 8px !important;
  border: 1px solid #F5E5E8 !important;
}

