body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at top left, #2e294e, #1e1b2e 60%) fixed;
  background-size: cover;
  color: #f4e4ff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: radial-gradient(circle, var(--dot-color, #ff4ecd) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  animation: moveDots 40s linear infinite, shiftColor 8s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

header, footer {
  background-color: #2e294e;
  color: #ff4ecd;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(255, 78, 205, 0.2);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

h1, h2 {
  color: #ff4ecd;
  text-align: center;
  font-weight: bold;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}
.button-group button {
  background: linear-gradient(145deg, #ff4ecd, #c084fc);
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  min-width: 180px;
  font-weight: bold;
}
.button-group button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(255, 78, 205, 0.5);
}

button:focus {
  outline: 3px solid #ff4ecd;
  outline-offset: 2px;
}

.scenario-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(255, 78, 205, 0.05);
  width: 100%;
  animation: fadeInUp 0.6s ease-out;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ff4ecd;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.scenario-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 78, 205, 0.4);
}

.back-btn {
  margin-top: 20px;
  background-color: transparent;
  color: #ff4ecd;
  border: 2px solid #ff4ecd;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.back-btn:hover {
  background-color: #ff4ecd;
  color: #ffffff;
}

.intro {
  background-color: rgba(46, 41, 78, 0.95);
  padding: 2rem;
  border-radius: 12px;
  color: #f4e4ff;
  text-align: center;
  animation: fadeIn 0.8s ease-in-out;
  box-shadow: 0 0 12px rgba(255, 78, 205, 0.2);
  border: 1px solid rgba(255, 78, 205, 0.2);
}
@supports ((-webkit-backdrop-filter: blur(6px)) or (backdrop-filter: blur(6px))) or (-webkit-backdrop-filter: blur(6px)) {
  .intro {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}

@media (max-width: 768px) {
  main {
    padding: 1rem;
  }
  button {
    width: 100%;
    font-size: 1rem;
  }
  .scenario-image {
    max-width: 100%;
  }
  .intro, .scenario-card {
    padding: 1.5rem;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes moveDots {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-80px, 80px);
  }
}
@keyframes shiftColor {
  0% {
    --dot-color: #ff4ecd;
  }
  50% {
    --dot-color: #c084fc;
  }
  100% {
    --dot-color: #00faff;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.loading-screen {
  color: #ff4ecd;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 20vh;
  animation: fadeIn 1s ease-in-out;
}/*# sourceMappingURL=style.css.map */