/* Chaos Challenge - Playful, readable design */
#app {
  min-height: calc(100vh - 200px);
  /* padding: 2rem; */
  position: relative;
  z-index: 2;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: 
    radial-gradient(circle at 20% 50%, rgba(155, 93, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 140, 180, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0d1229 0%, #1a1f4a 100%);
  position: relative;
  overflow: hidden;
}

/* Allow overflow for intro screen spirals */
#app:has(.chaos-intro-screen) {
  overflow: visible !important;
}

#app::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(155, 93, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 93, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  opacity: 0.35;
  z-index: 1;
}

/* #app::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(155, 93, 255, 0.05) 50%,
    transparent 100%
  );
  animation: scanline 8s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
} */

/* Ensure all text elements inherit Greek font support */
#app * {
  font-family: inherit;
}

.chaos-intro,
.chaos-transition,
.chaos-game,
.chaos-result {
  min-height: calc(100vh - 300px);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f5f7ff;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-feature-settings: 'kern' 1, 'liga' 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  unicode-range: U+0370-03FF, U+1F00-1FFF;
  
  /* Playful glass card - softer, warmer */
  background: 
    linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(155, 93, 255, 0.08) 50%, rgba(255, 140, 180, 0.06) 100%),
    rgba(18, 22, 48, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(20px) saturate(140%);
  margin: 1rem auto;
  max-width: 900px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.chaos-intro::before,
.chaos-transition::before,
.chaos-game::before,
.chaos-result::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(155, 93, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.chaos-intro-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #9b5dff 0%, #ff6b9d 50%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(155, 93, 255, 0.5);
  filter: drop-shadow(0 0 20px rgba(155, 93, 255, 0.4));
  animation: titlePulse 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes titlePulse {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(155, 93, 255, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.6));
  }
}

.chaos-intro-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #f5f7ff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.chaos-intro-description {
  font-size: 1.1rem;
  max-width: 600px;
  text-align: center;
  margin-bottom: 3rem;
  color: #e8ecff;
  line-height: 1.75;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.chaos-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-btn-primary {
  background: linear-gradient(135deg, #a86bff 0%, #ff7bad 50%, #3ddcff 100%);
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(155, 93, 255, 0.35);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.chaos-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.chaos-btn-primary:hover::before {
  left: 100%;
}

.chaos-btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 28px rgba(155, 93, 255, 0.45);
}

.chaos-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f5f7ff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 0 15px rgba(155, 93, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.chaos-btn-secondary:hover {
  background: rgba(155, 93, 255, 0.25);
  border-color: rgba(155, 93, 255, 0.7);
  box-shadow: 
    0 0 25px rgba(155, 93, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* Transition screen - matches chaos glass morphism */
.chaos-transition {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.chaos-transition-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}

.chaos-transition-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #00dcff 0%, #9b5dff 50%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-transition-loading {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e8ecff;
  margin: 0;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-transition-btn {
  margin-top: 0.5rem;
}

.chaos-transition::after,
.chaos-game::after,
.chaos-result::after {
  content: '';
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle at 25% 25%, rgba(0, 220, 255, 0.28), transparent 55%),
    radial-gradient(circle at 75% 65%, rgba(120, 90, 255, 0.26), transparent 60%),
    radial-gradient(circle at 50% 85%, rgba(90, 140, 255, 0.24), transparent 55%),
    repeating-linear-gradient(
      120deg,
      rgba(0, 220, 255, 0.12) 0,
      rgba(120, 90, 255, 0.04) 60px,
      transparent 120px
    );
  opacity: 0.8;
  filter: blur(14px);
  animation: chaosAmbientDrift 6s ease-in-out infinite, chaosBeamSlide 6s linear infinite, chaosFlicker 2.8s steps(2, end) infinite;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.chaos-transition > *,
.chaos-game > *,
.chaos-result > * {
  position: relative;
  z-index: 2;
}

@keyframes chaosAmbientDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1.5%, -1.5%, 0) scale(1.03);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes chaosBeamSlide {
  0% {
    transform: translate3d(-4%, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(4%, -2%, 0) rotate(1deg);
  }
}

@keyframes chaosFlicker {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

.chaos-glitch {
  font-size: 2rem;
  animation: glitch 0.7s infinite;
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

/* Games */
.chaos-game-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, #00dcff 0%, #7a6bff 50%, #5a8cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  filter: drop-shadow(0 0 15px rgba(155, 93, 255, 0.4));
  text-shadow: 0 0 30px rgba(155, 93, 255, 0.3);
  position: relative;
  z-index: 2;
}

.chaos-seven-seconds .chaos-game-title {
  margin-bottom: 0.25rem;
}

.chaos-game-description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #eef2ff;
  max-width: 750px;
  text-align: center;
  line-height: 1.75;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid rgba(155, 93, 255, 0.5);
  border-radius: 14px;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.chaos-game-prompt {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-align: center;
  max-width: 700px;
  font-weight: 600;
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 140, 180, 0.15);
  border: 1px solid rgba(255, 140, 180, 0.3);
  border-radius: 16px;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.chaos-game-instruction {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 700px;
  color: #e8ecff;
  font-style: normal;
  line-height: 1.7;
  padding: 1rem 1.25rem;
  background: rgba(101, 186, 255, 0.12);
  border-left: 4px solid rgba(101, 186, 255, 0.55);
  border-radius: 12px;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.chaos-choices {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.chaos-choice-btn {
  padding: 1.25rem 1.75rem;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #f5f7ff;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 500;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.chaos-choice-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.chaos-choice-btn:hover::before {
  left: 100%;
}

.chaos-choice-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(155, 93, 255, 0.6);
  transform: translateX(4px) scale(1.01);
  box-shadow: 0 6px 20px rgba(155, 93, 255, 0.25);
}

.chaos-choice-btn:active {
  transform: translateX(3px);
  box-shadow: 0 2px 6px rgba(155, 93, 255, 0.2);
}

/* Seven Seconds */
.chaos-countdown {
  font-size: 5rem;
  font-weight: 700;
  margin: 0;
  color: #ff6b9d;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-shadow: 
    0 0 20px rgba(255, 107, 157, 0.8),
    0 0 40px rgba(255, 107, 157, 0.5),
    0 0 60px rgba(255, 107, 157, 0.3);
  filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.6));
  animation: countdownGlow 1s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes countdownGlow {
  0%, 100% {
    filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.6));
    text-shadow: 
      0 0 20px rgba(255, 107, 157, 0.8),
      0 0 40px rgba(255, 107, 157, 0.5),
      0 0 60px rgba(255, 107, 157, 0.3);
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(255, 107, 157, 0.9));
    text-shadow: 
      0 0 30px rgba(255, 107, 157, 1),
      0 0 50px rgba(255, 107, 157, 0.7),
      0 0 70px rgba(255, 107, 157, 0.5);
  }
}

.chaos-seconds-countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  min-height: 40px;
  transition: transform 0.3s ease-out;
}

@keyframes countdownPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.chaos-seconds-choices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 700px;
  margin: 0;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.chaos-seven-seconds .chaos-seconds-choices {
  gap: 0.4rem;
  margin-top: 0;
}

.chaos-seconds-option {
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 1.05rem;
  line-height: 1.5;
  justify-content: flex-start;
}

/* 7 Seconds specific: tighter layout */
.chaos-seven-seconds .chaos-game {
  padding: 1rem;
  min-height: auto;
}

/* 7 Seconds ambient effects */
.chaos-seven-seconds {
  position: relative;
  overflow: hidden;
}

.chaos-seven-seconds::after {
  content: '';
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 220, 255, 0.35), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(90, 140, 255, 0.3), transparent 60%),
    radial-gradient(circle at 50% 10%, rgba(120, 90, 255, 0.28), transparent 55%);
  filter: blur(14px);
  opacity: 0.9;
  animation: secondsHalo 6s ease-in-out infinite, secondsFlicker 3.2s steps(2, end) infinite;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

.chaos-seven-seconds > * {
  position: relative;
  z-index: 2;
}

.chaos-seven-seconds .chaos-countdown {
  position: relative;
}

.chaos-seven-seconds .chaos-countdown::after {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px solid rgba(0, 220, 255, 0.7);
  box-shadow: 0 0 35px rgba(0, 220, 255, 0.65), 0 0 55px rgba(120, 90, 255, 0.45);
  animation: secondsRing 1.2s ease-in-out infinite;
  pointer-events: none;
}

.chaos-seven-seconds .chaos-countdown {
  animation: secondsShake 0.6s ease-in-out infinite;
  text-shadow:
    0 0 20px rgba(0, 220, 255, 0.9),
    0 0 35px rgba(90, 140, 255, 0.75),
    0 0 55px rgba(120, 90, 255, 0.6);
}

.chaos-seven-seconds .chaos-cinematic-content {
  gap: 0.3rem;
}

/* Transition when countdown starts */
.chaos-seven-seconds.countdown-active .chaos-cinematic-content {
  transform: translateY(-10px);
  transition: transform 0.4s ease-out;
}

@keyframes secondsHalo {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate3d(-2%, 1.5%, 0) scale(1.04);
    opacity: 1;
  }
}

@keyframes secondsRing {
  0%, 100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@keyframes secondsFlicker {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes secondsShake {
  0%, 100% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(1px, -1px, 0); }
  50% { transform: translate3d(-1px, 1px, 0); }
  75% { transform: translate3d(1px, 1px, 0); }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .chaos-countdown {
    animation: none !important;
  }
}

/* Opportunity Trap */
.chaos-card-display {
  margin: 0.5rem 0;
  text-align: center;
}

.chaos-opportunity-card {
  padding: 1rem;
  background: 
    linear-gradient(135deg, rgba(155, 93, 255, 0.2) 0%, rgba(255, 107, 157, 0.2) 100%),
    rgba(155, 93, 255, 0.1);
  border: 2px solid rgba(155, 93, 255, 0.6);
  border-radius: 16px;
  margin-bottom: 0.75rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(155, 93, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px) saturate(180%);
  position: relative;
  overflow: hidden;
}

.chaos-opportunity-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: cardShimmer 3s ease-in-out infinite;
}

@keyframes cardShimmer {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) rotate(180deg); opacity: 0.6; }
}

.chaos-opportunity-text {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  max-width: 600px;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-card-progress {
  opacity: 0.6;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Cinematic Scene Styles */
.chaos-cinematic-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-progress-text {
  font-size: 0.95rem;
  opacity: 0.7;
  font-weight: 500;
}

.chaos-progress-dots {
  display: flex;
  gap: 0.5rem;
  font-size: 1.2rem;
}

.chaos-progress-dot {
  transition: opacity 0.3s ease;
  opacity: 0.4;
}

.chaos-progress-dot.active {
  opacity: 1;
  color: #9b5dff;
}

.chaos-cinematic-content {
  width: 100%;
  max-width: 700px;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.chaos-cinematic-content::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0, 220, 255, 0.9), rgba(120, 90, 255, 0.85), rgba(90, 140, 255, 0.9));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.85;
  animation: chaosBorderSpin 4s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.chaos-cinematic-content > * {
  position: relative;
  z-index: 2;
}

@keyframes chaosBorderSpin {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.chaos-seven-seconds .chaos-cinematic-content {
  gap: 0.4rem;
}

.chaos-cinematic-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  color: #f5f7ff;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-cinematic-lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  max-width: 100%;
  line-height: 1.5;
}

.chaos-seven-seconds .chaos-cinematic-lines {
  gap: 0.3rem;
}

.chaos-cinematic-line {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #f0f4ff;
  font-weight: 400;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
}

.chaos-opportunity-question-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  width: 100%;
}

.chaos-opportunity-question {
  font-size: 1.3rem;
  font-weight: 600;
  color: #e5e9ff;
  margin: 0;
  text-align: center;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-cinematic-choices {
  display: flex;
  gap: 1rem;
  justify-content: center;
  width: 100%;
  max-width: 500px;
}

.chaos-cinematic-btn {
  flex: 1;
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid rgba(155, 93, 255, 0.6);
  background: rgba(155, 93, 255, 0.15);
  color: #e5e9ff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(155, 93, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.chaos-cinematic-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.chaos-cinematic-btn:hover::before,
.chaos-cinematic-btn:focus::before {
  left: 100%;
}

.chaos-cinematic-btn:hover,
.chaos-cinematic-btn:focus {
  background: rgba(155, 93, 255, 0.3);
  border-color: rgba(155, 93, 255, 0.9);
  box-shadow: 0 6px 20px rgba(155, 93, 255, 0.35);
  transform: translateY(-3px) scale(1.02);
  outline: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.chaos-cinematic-btn.dimmed {
  opacity: 0.75;
}

.chaos-cinematic-btn:focus-visible {
  outline: 2px solid rgba(155, 93, 255, 0.8);
  outline-offset: 3px;
}

.chaos-cinematic-end-card {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem;
}

.chaos-cinematic-end-card .chaos-cinematic-line {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #e5e9ff;
}

/* Pretend/FakeIt specific cinematic styles */
.chaos-scene-title {
  font-size: 1.1rem;
  opacity: 0.75;
  margin: 0 0 0.25rem 0;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chaos-cinematic-question {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: #e5e9ff;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-pretend-choices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 700px;
}

.chaos-pretend-option {
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  justify-content: flex-start;
  text-align: center;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .chaos-cinematic-line,
  .chaos-cinematic-btn,
  .chaos-progress-dot,
  .chaos-cinematic-question,
  .chaos-pretend-option {
    transition: none !important;
    animation: none !important;
  }
  
  .chaos-cinematic-line,
  .chaos-cinematic-question,
  .chaos-pretend-option {
    opacity: 1 !important;
    transform: none !important;
  }
}

.chaos-opportunity-feedback {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(101, 186, 255, 0.2);
  border: 2px solid rgba(101, 186, 255, 0.4);
  border-left: 4px solid rgba(101, 186, 255, 0.7);
  border-radius: 10px;
  font-size: 1rem;
  line-height: 1.7;
  animation: fadeIn 0.4s ease-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-scenario-progress {
  opacity: 0.6;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.chaos-yes-no {
  flex-direction: row;
  justify-content: center;
}

/* Everyone Talks */
.chaos-bubbles-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  min-height: 500px;
  height: 500px;
  margin: 2rem 0;
  border: 1px solid rgba(155, 93, 255, 0.2);
  border-radius: 8px;
  overflow: visible;
  display: block;
  visibility: visible;
}

.chaos-bubble {
  position: absolute !important;
  padding: 1.2rem;
  background: 
    linear-gradient(135deg, rgba(155, 93, 255, 0.2) 0%, rgba(255, 107, 157, 0.2) 100%),
    rgba(155, 93, 255, 0.15);
  border: 2px solid rgba(155, 93, 255, 0.6);
  border-radius: 16px;
  min-width: 180px;
  max-width: 220px;
  z-index: 10;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(155, 93, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px) saturate(180%);
  animation: bubbleAppear 0.3s ease-out;
  cursor: default;
  pointer-events: auto;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.3s;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.chaos-bubble:hover {
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.5),
    0 0 35px rgba(155, 93, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}

/* Variant styles for visual variety */
.chaos-bubble[data-variant="0"] {
  background: rgba(155, 93, 255, 0.25);
  border-color: rgba(155, 93, 255, 0.5);
}

.chaos-bubble[data-variant="1"] {
  background: rgba(255, 107, 157, 0.2);
  border-color: rgba(255, 107, 157, 0.45);
}

.chaos-bubble[data-variant="2"] {
  background: rgba(101, 186, 255, 0.2);
  border-color: rgba(101, 186, 255, 0.45);
}

@keyframes bubbleAppear {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.chaos-bubble-text {
  margin-bottom: 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-bubble-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.chaos-bubble-action {
  padding: 0.5rem 0.7rem;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #e5e9ff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
  pointer-events: auto;
  position: relative;
  z-index: 20;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-bubble-action:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.chaos-bubble-action:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.2);
}

.chaos-timer {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b9d;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  visibility: visible !important;
  opacity: 1 !important;
  text-shadow: 0 0 12px rgba(255, 107, 157, 0.5);
}

/* Quit or Push - Tighter spacing for intensity */
.chaos-quit-or-push .chaos-cinematic-content {
  gap: 16px;
}

/* Quit or Push ambient effects */
.chaos-quit-or-push {
  position: relative;
  overflow: hidden;
}

.chaos-quit-or-push::after {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 70%, rgba(0, 220, 255, 0.3), transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(90, 140, 255, 0.28), transparent 65%),
    radial-gradient(circle at 50% 50%, rgba(120, 90, 255, 0.25), transparent 60%);
  filter: blur(14px);
  opacity: 0.9;
  animation: energyAura 7s ease-in-out infinite, energyFlicker 2.6s steps(2, end) infinite;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

.chaos-quit-or-push > * {
  position: relative;
  z-index: 2;
}

.chaos-quit-or-push .chaos-cinematic-lines {
  margin-bottom: 0;
}

.chaos-quit-or-push .chaos-energy-container {
  margin-top: 0;
}

.chaos-quit-or-push .chaos-energy-container {
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.35);
  animation: energyPulse 1.6s ease-in-out infinite;
}

.chaos-quit-or-push .chaos-energy-bar {
  position: relative;
  overflow: hidden;
}

.chaos-quit-or-push .chaos-energy-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 45%, transparent 70%);
  animation: energySweep 1.4s linear infinite;
  pointer-events: none;
}

.chaos-quit-or-push .chaos-energy-fill {
  background: linear-gradient(90deg, #00dcff 0%, #7a6bff 50%, #5a8cff 100%);
  box-shadow: 0 0 25px rgba(0, 220, 255, 0.5), 0 0 40px rgba(120, 90, 255, 0.45);
}

@keyframes energyAura {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(2%, -1.5%, 0) scale(1.05);
    opacity: 1;
  }
}

@keyframes energyPulse {
  0%, 100% {
    box-shadow: 0 0 25px rgba(0, 220, 255, 0.6);
  }
  50% {
    box-shadow: 0 0 70px rgba(120, 90, 255, 0.7);
  }
}

@keyframes energySweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes energyFlicker {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.chaos-energy-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 2rem auto;
}

.chaos-energy-label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-energy-bar {
  width: 100%;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  position: relative;
}

.chaos-energy-bar.low-energy {
  /* Subtle warning glow - warmer purple tone, not alarm red */
  box-shadow: 0 0 12px rgba(155, 93, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.chaos-energy-bar.low-energy .chaos-energy-fill {
  /* Warmer gradient when energy is low */
  background: linear-gradient(90deg, #ff8cc4, #b872ff);
}

.chaos-energy-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6b9d 0%, #9b5dff 50%, #00d4ff 100%);
  transition: width 0.5s ease-out;
  will-change: width;
  box-shadow: 
    0 0 20px rgba(255, 107, 157, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.chaos-energy-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: energyFlow 2s ease-in-out infinite;
}

@keyframes energyFlow {
  0% { left: -100%; }
  100% { left: 100%; }
}

.chaos-energy-end {
  padding: 3rem 0;
}

.chaos-energy-value {
  text-align: center;
  font-weight: 600;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Results */
.chaos-result {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-top: 3rem;
}

.chaos-result-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Result - v2 zones profile */
.chaos-result-zones {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: rgba(155, 93, 255, 0.06);
  border: 1px solid rgba(155, 93, 255, 0.25);
  border-radius: 14px;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-result-zones-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(155, 93, 255, 0.95);
  margin: 0 0 1.25rem;
}

.chaos-result-zones-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chaos-zone-item {
  display: grid;
  grid-template-columns: 120px 1fr 3rem;
  align-items: center;
  gap: 1rem;
}

.chaos-zone-label {
  font-size: 0.9rem;
  color: #e8ecff;
}

.chaos-zone-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.chaos-zone-fill {
  height: 100%;
  background: linear-gradient(90deg, #9b5dff, #65baff);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.chaos-zone-item.chaos-zone-high .chaos-zone-fill {
  background: linear-gradient(90deg, #39f2ff, #9b5dff);
}

.chaos-zone-item.chaos-zone-mid .chaos-zone-fill {
  background: linear-gradient(90deg, #9b5dff, #ff6b9d);
}

.chaos-zone-item.chaos-zone-low .chaos-zone-fill {
  background: linear-gradient(90deg, rgba(155, 93, 255, 0.5), rgba(155, 93, 255, 0.8));
}

.chaos-zone-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(155, 93, 255, 0.9);
  text-align: right;
}

/* Result - API archetype */
.chaos-result-api-archetype {
  margin: 1.5rem 0;
  padding: 1.5rem 2rem;
  background: rgba(155, 93, 255, 0.08);
  border: 1px solid rgba(155, 93, 255, 0.2);
  border-radius: 12px;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-result-archetype-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(155, 93, 255, 1);
  margin-bottom: 0.5rem;
}

.chaos-result-archetype-summary {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #e8ecff;
}

.chaos-result-patterns {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chaos-result-pattern-tag {
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  background: rgba(155, 93, 255, 0.15);
  border: 1px solid rgba(155, 93, 255, 0.3);
  border-radius: 20px;
  color: rgba(155, 93, 255, 0.9);
}

/* Result - API narrative */
.chaos-result-api-narrative {
  margin: 2rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(57, 242, 255, 0.08), rgba(155, 93, 255, 0.12));
  border: 1px solid rgba(57, 242, 255, 0.25);
  border-radius: 14px;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-result-narrative-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.chaos-result-narrative-icon {
  font-size: 1.4rem;
}

.chaos-result-narrative-title {
  font-size: 1.3rem;
  margin: 0;
  color: rgba(57, 242, 255, 0.95);
}

.chaos-result-narrative-body {
  white-space: pre-line;
  font-size: 1rem;
  line-height: 1.8;
  color: #e8ecff;
  margin-bottom: 1rem;
}

.chaos-result-recommendations {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(57, 242, 255, 0.15);
}

.chaos-result-recommendations-title {
  font-size: 1rem;
  color: rgba(57, 242, 255, 0.85);
  margin-bottom: 0.75rem;
}

.chaos-result-recommendations-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chaos-result-recommendations-list li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #e0e6ff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chaos-result-recommendations-list li::before {
  content: '→ ';
  color: rgba(57, 242, 255, 0.7);
}

/* Result - XP award */
.chaos-result-xp {
  text-align: center;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 10px;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-result-xp-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255, 193, 7, 1);
}

.chaos-result-xp-label {
  font-size: 0.85rem;
  margin-left: 0.75rem;
  color: #d8e0ff;
}

/* Result - View role CTA */
.chaos-view-role-cta {
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(155, 93, 255, 0.15), rgba(57, 242, 255, 0.1));
  border: 1px solid rgba(155, 93, 255, 0.3);
  border-radius: 12px;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-view-role-message {
  font-size: 1rem;
  line-height: 1.6;
  color: #e8ecff;
  margin-bottom: 1rem;
}

.chaos-view-role-btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

.chaos-result-primary,
.chaos-result-secondary {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(155, 93, 255, 0.1);
  border-left: 4px solid #9b5dff;
  border-radius: 8px;
}

.chaos-result-primary h2,
.chaos-result-secondary h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #d0d8ff;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-insight-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #f5f7ff;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-insight-explanation {
  font-size: 1rem;
  line-height: 1.7;
  color: #e8ecff;
  margin-top: 0.5rem;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-result-summary {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(101, 186, 255, 0.1);
  border-left: 4px solid #65baff;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.6;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-quit-result {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 107, 157, 0.2);
  border: 2px solid rgba(255, 107, 157, 0.4);
  border-left: 4px solid rgba(255, 107, 157, 0.7);
  border-radius: 10px;
  animation: fadeIn 0.4s ease-out;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.2);
}

.chaos-quit-result p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Combined Feedback Styles */
.chaos-combined-feedback {
  width: 100%;
  max-width: 700px;
  margin: 2rem 0;
  padding: 0;
}

.chaos-feedback-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #e5e9ff;
  text-align: center;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-feedback-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(155, 93, 255, 0.15);
  border: 2px solid rgba(155, 93, 255, 0.3);
  border-left: 4px solid rgba(155, 93, 255, 0.6);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.4s ease-out;
}

.chaos-feedback-item:last-child {
  margin-bottom: 0;
}

.chaos-feedback-card-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #e5e9ff;
  opacity: 0.9;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-feedback-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #e5e9ff;
  opacity: 0.95;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-feedback-text strong {
  font-weight: 600;
  color: #fff;
}

.chaos-result-narrative {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 107, 157, 0.1);
  border-left: 4px solid #ff6b9d;
  border-radius: 8px;
  font-style: italic;
  font-family: 'Manrope', 'Noto Sans Greek', 'Noto Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chaos-result-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Card */
.chaos-card {
  width: 100%;
  padding: 2rem;
  background: rgba(155, 93, 255, 0.1);
  border: 2px solid rgba(155, 93, 255, 0.3);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.chaos-card-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.chaos-card-section {
  margin-bottom: 1.5rem;
}

.chaos-card-section h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  /* Don't use text-transform for Greek text - it can distort characters */
  letter-spacing: 0.02em;
  font-weight: 600;
}

.chaos-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chaos-tag {
  padding: 0.4rem 0.8rem;
  background: rgba(155, 93, 255, 0.2);
  border: 1px solid rgba(155, 93, 255, 0.4);
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Responsive Design */

/* Mobile devices (< 768px) */
@media (max-width: 768px) {
  #app {
    /* padding: 1rem; */
    min-height: calc(100vh - 150px);
  }

  .chaos-intro,
  .chaos-transition,
  .chaos-game,
  .chaos-result {
    padding: 1.5rem;
    min-height: auto;
    margin: 0.5rem auto;
  }

  .chaos-intro-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .chaos-intro-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .chaos-intro-description {
    font-size: 1rem;
    padding: 0.75rem;
    margin-bottom: 2rem;
  }

  .chaos-game-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .chaos-game-description {
    font-size: 1rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
  }

  .chaos-game-prompt {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
  }

  .chaos-game-instruction {
    font-size: 0.95rem;
    padding: 0.6rem 0.85rem;
    margin-bottom: 1.5rem;
  }

  .chaos-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .chaos-choices {
    max-width: 100%;
    gap: 0.75rem;
  }

  .chaos-choice-btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Seven Seconds */
  .chaos-countdown {
    font-size: 3.5rem;
    margin: 0;
  }

  .chaos-seconds-countdown-container {
    margin: 0;
    min-height: 45px;
  }

  .chaos-seconds-choices {
    max-width: 100%;
    gap: 0.5rem;
    margin: 0;
  }

  .chaos-seconds-option {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .chaos-seven-seconds .chaos-game {
    padding: 1rem;
  }
  
  .chaos-seven-seconds .chaos-cinematic-content {
    gap: 0.4rem;
  }

  /* Cinematic elements */
  .chaos-cinematic-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .chaos-cinematic-line {
    font-size: 1rem;
    line-height: 1.5;
  }

  .chaos-cinematic-lines {
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .chaos-cinematic-question {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .chaos-cinematic-btn {
    padding: 1rem 1.75rem;
    font-size: 1rem;
  }

  .chaos-cinematic-end-card {
    margin: 2rem 0;
    padding: 1.5rem;
  }

  .chaos-cinematic-end-card .chaos-cinematic-line {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }

  .chaos-scene-title {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .chaos-pretend-choices {
    max-width: 100%;
    gap: 0.75rem;
  }

  .chaos-pretend-option {
    padding: 1.25rem 1rem;
    font-size: 0.95rem;
  }

  /* Opportunity Trap */
  .chaos-opportunity-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
    min-height: 100px;
  }

  .chaos-opportunity-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .chaos-opportunity-question {
    font-size: 1.1rem;
  }

  .chaos-opportunity-question-container {
    gap: 1.25rem;
    margin-top: 1.5rem;
  }

  .chaos-cinematic-choices {
    max-width: 100%;
    gap: 1rem;
  }

  /* Everyone Talks */
  .chaos-bubbles-container {
    max-width: 100%;
    min-height: 400px;
    height: 400px;
    margin: 1.5rem 0;
  }

  .chaos-bubble {
    min-width: 150px;
    max-width: 180px;
    padding: 1rem;
  }

  .chaos-bubble-text {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }

  .chaos-bubble-action {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }

  .chaos-timer {
    font-size: 1.5rem;
  }

  /* Quit or Push */
  .chaos-quit-or-push .chaos-cinematic-content {
    gap: 12px;
  }
  
  .chaos-quit-or-push .chaos-cinematic-lines {
    margin-bottom: 0;
  }
  
  .chaos-quit-or-push .chaos-energy-container {
    margin-top: 0;
  }
  
  .chaos-energy-container {
    max-width: 100%;
    margin: 1.5rem auto;
  }

  .chaos-energy-bar {
    height: 25px;
  }

  .chaos-energy-value {
    font-size: 0.95rem;
  }

  .chaos-choices {
    gap: 0.75rem;
  }

  /* Results */
  .chaos-result {
    max-width: 100%;
    padding-top: 2rem;
  }

  .chaos-result-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .chaos-result-primary,
  .chaos-result-secondary {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .chaos-insight-label {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .chaos-insight-explanation {
    font-size: 0.95rem;
  }

  .chaos-card {
    padding: 1.5rem;
  }

  .chaos-card-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .chaos-card-section h3 {
    font-size: 0.95rem;
  }

  .chaos-yes-no {
    flex-direction: column;
    gap: 0.75rem;
  }

  .chaos-result-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .chaos-zone-item {
    grid-template-columns: 100px 1fr 2.5rem;
    gap: 0.5rem;
  }

  .chaos-zone-label {
    font-size: 0.8rem;
  }

  .chaos-result-zones {
    padding: 1.25rem 1rem;
  }

  .chaos-combined-feedback {
    max-width: 100%;
  }

  .chaos-feedback-title {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }

  .chaos-feedback-item {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .chaos-feedback-card-label {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .chaos-feedback-text {
    font-size: 0.95rem;
  }
}

/* Tablet devices (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  /* #app {
    padding: 1.5rem;
  } */

  .chaos-intro,
  .chaos-transition,
  .chaos-game,
  .chaos-result {
    padding: 2rem;
    max-width: 95%;
  }

  .chaos-intro-title {
    font-size: 2.5rem;
  }

  .chaos-game-title {
    font-size: 2rem;
  }

  .chaos-countdown {
    font-size: 4.5rem;
  }

  .chaos-bubbles-container {
    max-width: 90%;
  }

  .chaos-energy-container {
    max-width: 450px;
  }

  .chaos-result {
    max-width: 90%;
  }
}

/* Large screens (> 1024px) - ensure proper max-widths */
@media (min-width: 1025px) {
  .chaos-intro,
  .chaos-transition,
  .chaos-game,
  .chaos-result {
    max-width: 900px;
  }

  .chaos-result {
    max-width: 800px;
  }
}

/* Very small mobile devices (< 480px) */
@media (max-width: 480px) {
  /* #app {
    padding: 0.75rem;
  } */

  .chaos-intro,
  .chaos-transition,
  .chaos-game,
  .chaos-result {
    padding: 1rem;
    border-radius: 12px;
  }

  .chaos-intro-title {
    font-size: 1.75rem;
  }

  .chaos-game-title {
    font-size: 1.5rem;
  }

  .chaos-countdown {
    font-size: 3rem;
  }

  .chaos-seconds-countdown-container {
    min-height: 80px;
  }

  .chaos-bubbles-container {
    min-height: 350px;
    height: 350px;
  }

  .chaos-bubble {
    min-width: 130px;
    max-width: 160px;
    padding: 0.875rem;
  }

  .chaos-cinematic-line {
    font-size: 0.95rem;
  }

  .chaos-opportunity-card {
    padding: 1.25rem;
  }

  .chaos-energy-bar {
    height: 22px;
  }
}

/* Additional futuristic animations */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

/* Neon Button Design for Chaos Challenge Start */
.game-btn.chaos-neon-btn,
button.chaos-neon-btn,
#chaos-start-btn.chaos-neon-btn {
  background: linear-gradient(135deg, #00d4ff 0%, #9b5dff 50%, #ff6b9d 100%) !important;
  color: #ffffff !important;
  border: 2px solid rgba(0, 212, 255, 0.8) !important;
  border-radius: 50px !important;
  box-shadow: 
    0 0 20px rgba(0, 212, 255, 0.6),
    0 0 40px rgba(155, 93, 255, 0.4),
    0 0 60px rgba(255, 107, 157, 0.3),
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(0, 212, 255, 0.6),
    0 0 30px rgba(155, 93, 255, 0.4) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  animation: neonPulse 2s ease-in-out infinite !important;
}

.game-btn.chaos-neon-btn::before,
button.chaos-neon-btn::before,
#chaos-start-btn.chaos-neon-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  animation: neonShimmer 3s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.game-btn.chaos-neon-btn::after,
button.chaos-neon-btn::after,
#chaos-start-btn.chaos-neon-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(135deg, #00d4ff, #9b5dff, #ff6b9d, #00d4ff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: neonRotate 3s linear infinite;
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}

.game-btn.chaos-neon-btn:hover,
button.chaos-neon-btn:hover,
#chaos-start-btn.chaos-neon-btn:hover {
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 
    0 0 30px rgba(0, 212, 255, 0.8),
    0 0 50px rgba(155, 93, 255, 0.6),
    0 0 70px rgba(255, 107, 157, 0.5),
    0 12px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  text-shadow: 
    0 0 15px rgba(255, 255, 255, 1),
    0 0 25px rgba(0, 212, 255, 0.8),
    0 0 35px rgba(155, 93, 255, 0.6) !important;
  border-color: rgba(0, 212, 255, 1) !important;
  background: linear-gradient(135deg, #00e5ff 0%, #a86bff 50%, #ff7ba8 100%) !important;
}

.game-btn.chaos-neon-btn:active,
button.chaos-neon-btn:active,
#chaos-start-btn.chaos-neon-btn:active {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 
    0 0 25px rgba(0, 212, 255, 0.7),
    0 0 45px rgba(155, 93, 255, 0.5),
    0 0 65px rgba(255, 107, 157, 0.4),
    0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

@keyframes neonPulse {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(0, 212, 255, 0.6),
      0 0 40px rgba(155, 93, 255, 0.4),
      0 0 60px rgba(255, 107, 157, 0.3),
      0 8px 32px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(0, 212, 255, 0.8),
      0 0 50px rgba(155, 93, 255, 0.6),
      0 0 70px rgba(255, 107, 157, 0.5),
      0 8px 32px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

@keyframes neonShimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes neonRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* CTA Button Style for Transition Screen - Match Site CTAs */
#chaos-continue-btn.cta-button,
.cta-button#chaos-continue-btn {
  background: linear-gradient(135deg, #39F2FF 0%, #9B5DFF 100%) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 1rem 2.25rem !important;
  color: white !important;
  font-weight: 700 !important;
  font-size: 1.125rem !important;
  cursor: pointer !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 
    0 8px 28px rgba(57, 242, 255, 0.4),
    0 0 0 1px rgba(57, 242, 255, 0.2),
    0 0 20px rgba(155, 93, 255, 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  display: inline-block !important;
}

#chaos-continue-btn.cta-button::before,
.cta-button#chaos-continue-btn::before {
  content: '' !important;
  position: absolute !important;
  inset: -2px !important;
  background: linear-gradient(135deg, #39F2FF, #9B5DFF) !important;
  border-radius: 50px !important;
  opacity: 0 !important;
  filter: blur(12px) !important;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: -1 !important;
}

#chaos-continue-btn.cta-button:hover,
.cta-button#chaos-continue-btn:hover {
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 
    0 16px 48px rgba(57, 242, 255, 0.5),
    0 0 0 1px rgba(57, 242, 255, 0.3),
    0 0 30px rgba(155, 93, 255, 0.4) !important;
}

#chaos-continue-btn.cta-button:hover::before,
.cta-button#chaos-continue-btn:hover::before {
  opacity: 0.6 !important;
}

#chaos-continue-btn.cta-button:focus-visible,
.cta-button#chaos-continue-btn:focus-visible {
  outline: 3px solid rgba(120, 200, 255, 0.95) !important;
  outline-offset: 3px !important;
  border-radius: 14px !important;
}

#chaos-continue-btn.cta-button:active,
.cta-button#chaos-continue-btn:active {
  transform: translateY(-2px) scale(1.01) !important;
}

/* Final CTA Button Style for Transition Screen - Override game-btn */
#chaos-continue-btn.final-cta-button,
.final-cta-button#chaos-continue-btn,
button.final-cta-button#chaos-continue-btn {
  background: linear-gradient(135deg, #39F2FF 0%, #9B5DFF 100%) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 1rem 2.25rem !important;
  color: white !important;
  font-weight: 700 !important;
  font-size: 1.125rem !important;
  cursor: pointer !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 
    0 8px 28px rgba(57, 242, 255, 0.4),
    0 0 0 1px rgba(57, 242, 255, 0.2),
    0 0 20px rgba(155, 93, 255, 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  display: inline-block !important;
  text-decoration: none !important;
}

#chaos-continue-btn.final-cta-button::before,
.final-cta-button#chaos-continue-btn::before,
button.final-cta-button#chaos-continue-btn::before {
  content: '' !important;
  position: absolute !important;
  inset: -2px !important;
  background: linear-gradient(135deg, #39F2FF, #9B5DFF) !important;
  border-radius: 50px !important;
  opacity: 0 !important;
  filter: blur(12px) !important;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: -1 !important;
}

#chaos-continue-btn.final-cta-button:hover,
.final-cta-button#chaos-continue-btn:hover,
button.final-cta-button#chaos-continue-btn:hover {
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 
    0 16px 48px rgba(57, 242, 255, 0.5),
    0 0 0 1px rgba(57, 242, 255, 0.3),
    0 0 30px rgba(155, 93, 255, 0.4) !important;
  background: linear-gradient(135deg, #39F2FF 0%, #9B5DFF 100%) !important;
}

#chaos-continue-btn.final-cta-button:hover::before,
.final-cta-button#chaos-continue-btn:hover::before,
button.final-cta-button#chaos-continue-btn:hover::before {
  opacity: 0.6 !important;
}

#chaos-continue-btn.final-cta-button:focus-visible,
.final-cta-button#chaos-continue-btn:focus-visible,
button.final-cta-button#chaos-continue-btn:focus-visible {
  outline: 3px solid rgba(120, 200, 255, 0.95) !important;
  outline-offset: 3px !important;
  border-radius: 14px !important;
}

#chaos-continue-btn.final-cta-button:active,
.final-cta-button#chaos-continue-btn:active,
button.final-cta-button#chaos-continue-btn:active {
  transform: translateY(-2px) scale(1.01) !important;
}

/* Chaos Intro Screen - Spiral Animations */
/* .chaos-intro-screen {
  position: relative !important;
  min-height: calc(100vh - 200px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 3rem 2rem !important;
  overflow: visible !important;
  background: 
    radial-gradient(circle at 20% 50%, rgba(155, 93, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%),
    linear-gradient(180deg, #0a0e27 0%, #1a1f4a 100%) !important;
  width: 100% !important;
  z-index: 1 !important;
} */

/* Ambient light layers for intro */
.chaos-aurora,
.chaos-light-beams {
  position: absolute !important;
  inset: -10% !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.chaos-aurora {
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.25), transparent 55%),
    radial-gradient(circle at 80% 60%, rgba(155, 93, 255, 0.25), transparent 60%),
    radial-gradient(circle at 60% 20%, rgba(255, 107, 157, 0.2), transparent 55%);
  /* filter: blur(24px); */
  opacity: 0.55;
  /* animation: auroraDrift 18s ease-in-out infinite; */
  mix-blend-mode: screen;
}

/* .chaos-light-beams { */
  /* background: repeating-linear-gradient(
    120deg,
    rgba(0, 212, 255, 0.08) 0,
    rgba(0, 212, 255, 0.02) 50px,
    transparent 110px
  );
  opacity: 0.35; */
  /* filter: blur(1px); */
  /* animation: beamsSlide 14s linear infinite; */
/* } */

/* @keyframes auroraDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-2%, 2%, 0) scale(1.05);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
} */

/* @keyframes beamsSlide {
  0% {
    transform: translate3d(-4%, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(4%, -2%, 0) rotate(1deg);
  }
} */

/* Spiral Container */
.chaos-spiral-container {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  z-index: 2 !important;
  overflow: visible !important;
}

/* Individual Spirals */
.chaos-spiral {
  position: absolute !important;
  border-radius: 50% !important;
  border: 2px solid !important;
  opacity: 0.5 !important;
  box-shadow: 
    0 0 15px currentColor,
    0 0 30px currentColor,
    inset 0 0 15px currentColor !important;
  filter: blur(0.5px);
}

.chaos-spiral-1 {
  width: 200px !important;
  height: 200px !important;
  top: 10% !important;
  left: 5% !important;
  border-color: rgba(0, 212, 255, 0.6) !important;
  color: rgba(0, 212, 255, 0.4) !important;
  animation-duration: 8s !important;
  animation-direction: normal !important;
  animation: spiralRotate 8s linear infinite, spiralFloat 12s ease-in-out infinite !important;
}

.chaos-spiral-2 {
  width: 150px !important;
  height: 150px !important;
  top: 20% !important;
  right: 8% !important;
  border-color: rgba(155, 93, 255, 0.6) !important;
  color: rgba(155, 93, 255, 0.4) !important;
  animation-duration: 10s !important;
  animation-direction: reverse !important;
  animation: spiralRotate 10s linear infinite, spiralFloat 15s ease-in-out infinite !important;
}

.chaos-spiral-3 {
  width: 180px !important;
  height: 180px !important;
  bottom: 15% !important;
  left: 8% !important;
  border-color: rgba(255, 107, 157, 0.6) !important;
  color: rgba(255, 107, 157, 0.4) !important;
  animation-duration: 9s !important;
  animation-direction: normal !important;
  animation: spiralRotate 9s linear infinite, spiralFloat 14s ease-in-out infinite !important;
}

.chaos-spiral-4 {
  width: 160px !important;
  height: 160px !important;
  bottom: 20% !important;
  right: 5% !important;
  border-color: rgba(0, 212, 255, 0.5) !important;
  color: rgba(0, 212, 255, 0.3) !important;
  animation-duration: 11s !important;
  animation-direction: reverse !important;
  animation: spiralRotate 11s linear infinite, spiralFloat 13s ease-in-out infinite !important;
}

@keyframes spiralRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes spiralFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  25% {
    transform: translate(20px, -30px) scale(1.1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-15px, -50px) scale(0.9);
    opacity: 0.6;
  }
  75% {
    transform: translate(30px, -20px) scale(1.05);
    opacity: 0.7;
  }
}

/* Floating Particles */
/* .chaos-particles {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  z-index: 3 !important;
} */

/* .chaos-particle {
  position: absolute !important;
  width: 6px !important;
  height: 6px !important;
  background: radial-gradient(circle, rgba(0, 212, 255, 1), rgba(0, 212, 255, 0.3)) !important;
  border-radius: 50% !important;
  box-shadow: 
    0 0 10px rgba(0, 212, 255, 0.8),
    0 0 20px rgba(0, 212, 255, 0.6),
    0 0 30px rgba(0, 212, 255, 0.4) !important;
  animation: particleFloat 15s ease-in-out infinite !important;
}

.chaos-particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.chaos-particle:nth-child(2) {
  left: 80%;
  top: 30%;
  animation-delay: 2s;
  animation-duration: 18s;
}

.chaos-particle:nth-child(3) {
  left: 30%;
  top: 70%;
  animation-delay: 4s;
  animation-duration: 14s;
}

.chaos-particle:nth-child(4) {
  left: 70%;
  top: 60%;
  animation-delay: 1s;
  animation-duration: 16s;
}

.chaos-particle:nth-child(5) {
  left: 50%;
  top: 10%;
  animation-delay: 3s;
  animation-duration: 13s;
}

.chaos-particle:nth-child(6) {
  left: 20%;
  top: 50%;
  animation-delay: 5s;
  animation-duration: 17s;
}

.chaos-particle:nth-child(7) {
  left: 90%;
  top: 80%;
  animation-delay: 2.5s;
  animation-duration: 15s;
}

.chaos-particle:nth-child(8) {
  left: 5%;
  top: 90%;
  animation-delay: 4.5s;
  animation-duration: 19s;
}

.chaos-particle:nth-child(9) {
  left: 15%;
  top: 35%;
  animation-delay: 1.5s;
  animation-duration: 14s;
}

.chaos-particle:nth-child(10) {
  left: 60%;
  top: 25%;
  animation-delay: 3.5s;
  animation-duration: 16s;
}

.chaos-particle:nth-child(11) {
  left: 40%;
  top: 85%;
  animation-delay: 5.5s;
  animation-duration: 18s;
}

.chaos-particle:nth-child(12) {
  left: 85%;
  top: 15%;
  animation-delay: 0.5s;
  animation-duration: 13s;
}

.chaos-particle:nth-child(13) {
  left: 25%;
  top: 60%;
  animation-delay: 2.2s;
  animation-duration: 17s;
}

.chaos-particle:nth-child(14) {
  left: 75%;
  top: 70%;
  animation-delay: 4.2s;
  animation-duration: 20s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(30px, -50px) scale(1.2);
    opacity: 1;
  }
  50% {
    transform: translate(-20px, -100px) scale(0.8);
    opacity: 0.8;
  }
  75% {
    transform: translate(40px, -150px) scale(1.1);
    opacity: 0.9;
  }
} */

/* Main Content */
.chaos-intro-content {
  position: relative !important;
  z-index: 10 !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4rem !important;
  /* animation: contentFadeIn 1.5s ease-out !important; */
  width: 100% !important;
}

/* @keyframes contentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
} */

.chaos-intro-header {
  position: relative;
  z-index: 11;
}

.chaos-title-glow {
  font-size: clamp(2.5rem, 8vw, 4.5rem) !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #6dd5ff 0%, #b57dff 50%, #ff8fb3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)) !important;
  animation: titleGlowPulse 3s ease-in-out infinite !important;
  position: relative !important;
  z-index: 12 !important;
  letter-spacing: 0.02em !important;
}

@keyframes titleGlowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 30px rgba(155, 93, 255, 0.6)) drop-shadow(0 0 60px rgba(0, 212, 255, 0.4));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 50px rgba(255, 107, 157, 0.8)) drop-shadow(0 0 90px rgba(155, 93, 255, 0.6));
    transform: scale(1.02);
  }
}

.chaos-intro-button-container {
  position: relative;
  z-index: 11;
  animation: buttonFloat 3s ease-in-out infinite;
}

@keyframes buttonFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.chaos-intro-nav {
  position: relative;
  z-index: 11;
  margin-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .chaos-spiral-1,
  .chaos-spiral-2,
  .chaos-spiral-3,
  .chaos-spiral-4 {
    width: 120px !important;
    height: 120px !important;
  }
  
  .chaos-title-glow {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }
  
  .chaos-intro-content {
    gap: 3rem;
  }
}

/* Chaos intro minigames list */
.chaos-intro-minigames {
  margin: 2rem auto 1.5rem;
  max-width: 900px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.chaos-intro-minigames-header {
  margin-bottom: 22px;
  width: 100%;
}

.chaos-intro-minigames-title {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #c8d4ff;
  margin: 0 0 8px;
}

.chaos-intro-minigames-subtitle {
  font-size: 1.05rem;
  color: #e0e8ff;
  margin: 0;
}

.chaos-minigame-section {
  text-align: left;
}

.chaos-minigame-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.chaos-minigame-section .chaos-minigame-list {
  grid-template-columns: 1fr;
}

.chaos-minigame-section-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 10px;
  color: #d8e0ff;
}

.chaos-minigame-teaser {
  font-size: 0.88rem;
  margin-bottom: 12px;
  color: #c8d4ff;
  line-height: 1.5;
}

.chaos-minigame-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.chaos-minigame-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 16px 18px 16px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f7ff;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chaos-minigame-item:not(.is-locked) {
  cursor: pointer;
}

.chaos-minigame-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 4px 20px rgba(155, 93, 255, 0.2);
  transform: translateX(4px) scale(1.01);
}

.chaos-minigame-item:focus-visible {
  outline: 2px solid rgba(155, 93, 255, 0.6);
  outline-offset: 2px;
}

.chaos-minigame-item.is-locked {
  opacity: 0.75;
  background: rgba(15, 20, 40, 0.45);
  border-color: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  box-shadow: none;
  color: #c8d0e8;
}

.chaos-minigame-item.is-locked:hover {
  opacity: 0.68;
  background: rgba(15, 20, 40, 0.45);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.chaos-minigame-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  text-align: center;
  font-size: 0.9rem;
  color: #e8ecff;
}

.chaos-minigame-label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: left;
}

.chaos-minigame-recommended {
  font-size: 0.7rem;
  color: #c8d0e8;
}

.chaos-minigame-badge {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(180, 90, 255, 0.22);
  border: 1px solid rgba(180, 90, 255, 0.4);
  color: #e8dcff;
  white-space: nowrap;
}

.chaos-minigames-cta {
  margin-top: 14px;
}

.chaos-minigames-cta-btn {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(155, 93, 255, 0.2);
  border: 2px solid rgba(155, 93, 255, 0.5);
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f5f7ff;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chaos-minigames-cta-btn:hover {
  background: rgba(155, 93, 255, 0.35);
  border-color: rgba(155, 93, 255, 0.7);
  transform: translateY(-2px);
}

.chaos-minigames-cta-subtext {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #b8c4ff;
  text-align: center;
}

/* New intro effect: darker mist + ember drift */
.chaos-shadow-mist {
  position: absolute;
  inset: -15% 0 0 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(10, 18, 40, 0.85), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(18, 10, 44, 0.75), transparent 60%),
    radial-gradient(circle at 50% 80%, rgba(6, 12, 26, 0.8), transparent 65%);
  opacity: 0.9;
  filter: blur(28px);
  animation: chaosMistDrift 18s ease-in-out infinite;
  pointer-events: none;
}

.chaos-ember-field {
  position: absolute;
  inset: -10% 0 0 0;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(130, 70, 50, 0.2), transparent 60%),
    radial-gradient(2px 2px at 35% 40%, rgba(120, 80, 60, 0.18), transparent 60%),
    radial-gradient(2px 2px at 70% 25%, rgba(110, 60, 90, 0.16), transparent 60%),
    radial-gradient(2px 2px at 85% 60%, rgba(70, 90, 130, 0.16), transparent 60%),
    radial-gradient(2px 2px at 55% 75%, rgba(90, 60, 120, 0.16), transparent 60%);
  opacity: 0.28;
  filter: blur(0.5px);
  animation: chaosEmberDrift 16s ease-in-out infinite;
  pointer-events: none;
}

@keyframes chaosMistDrift {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3%) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes chaosEmberDrift {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2%) scale(1.01); }
  100% { transform: translateY(0) scale(1); }
}

@media (max-width: 640px) {
  .chaos-minigame-sections {
    grid-template-columns: 1fr;
  }
}
