/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  background: linear-gradient(135deg, #1a0033 0%, #0d001a 50%, #000000 100%);
  background-attachment: fixed;
  color: #e0d4f7;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  cursor: none;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid #b19cd9;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, border-color 0.3s ease;
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.6),
    inset 0 0 10px rgba(138, 43, 226, 0.4);
  background: radial-gradient(circle, rgba(138, 43, 226, 0.3), transparent);
}

.custom-cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #b19cd9;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  box-shadow: 0 0 10px #8a2be2, 0 0 20px #8a2be2;
  transition: transform 0.05s ease;
}

.custom-cursor.hover {
  transform: scale(1.8);
  border-color: #8a2be2;
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.9),
    inset 0 0 15px rgba(138, 43, 226, 0.6);
}

.custom-cursor-dot.hover {
  transform: scale(1.5);
  background: #8a2be2;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(138, 43, 226, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(75, 0, 130, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
  animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}

/* ===== SMOKE EFFECT ===== */
.smoke-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(138, 43, 226, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: smokeFloat 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes smokeFloat {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* ===== LANDING PAGE ===== */
.main-header {
  text-align: center;
  margin: 60px 0 30px;
}

.glitch-text {
  font-size: 3rem;
  color: #b19cd9;
  text-shadow: 0 0 20px #8a2be2, 0 0 40px #8a2be2;
  animation: glitchAnim 3s infinite;
}

@keyframes glitchAnim {
  0%,
  90%,
  100% {
    transform: translate(0);
  }
  92% {
    transform: translate(-2px, 2px);
  }
  94% {
    transform: translate(2px, -2px);
  }
}

.subtitle {
  font-size: 1.2rem;
  color: #9370db;
  margin-top: 10px;
  font-style: italic;
}

.curse-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.example-curse {
  background: rgba(138, 43, 226, 0.15);
  border: 2px solid #8a2be2;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  animation: floatUp 3s ease-in-out infinite;
}

.example-curse:nth-child(2) {
  animation-delay: 1s;
}

.example-curse:nth-child(3) {
  animation-delay: 2s;
}

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

.example-curse:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.curse-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
}

.example-curse p {
  color: #d8bfd8;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  padding: 20px 30px;
  background: rgba(138, 43, 226, 0.1);
  border: 2px solid #8a2be2;
  border-radius: 15px;
  min-width: 120px;
  transition: all 0.3s;
}

.stat-box:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #b19cd9;
  text-shadow: 0 0 10px #8a2be2;
}

.stat-label {
  display: block;
  font-size: 1rem;
  color: #9370db;
  margin-top: 5px;
}

.how-it-works {
  margin: 60px 0;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2rem;
  color: #b19cd9;
  margin-bottom: 40px;
  text-shadow: 0 0 15px #8a2be2;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  background: rgba(138, 43, 226, 0.15);
  border: 2px solid #8a2be2;
  border-radius: 15px;
  padding: 30px 20px;
  min-width: 200px;
  transition: all 0.3s;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.5);
}

.step-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #8a2be2;
  margin-bottom: 10px;
}

.step p {
  color: #d8bfd8;
  font-size: 1.1rem;
}

.step-arrow {
  font-size: 2rem;
  color: #8a2be2;
  font-weight: bold;
}

.warning-banner {
  background: rgba(255, 69, 0, 0.2);
  border: 2px solid #ff4500;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  margin: 30px 0;
  font-weight: bold;
  color: #ffb347;
  animation: warningPulse 3s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
}

@keyframes warningPulse {
  0%,
  100% {
    border-color: #ff4500;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
  }
  50% {
    border-color: #ff6347;
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.5);
  }
}

.dramatic-text {
  text-align: center;
  font-size: 1.3rem;
  line-height: 2;
  margin: 40px 0;
  color: #d8bfd8;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.feature-card {
  background: rgba(138, 43, 226, 0.1);
  border: 2px solid #8a2be2;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.5);
}

.feature-card .icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #b19cd9;
  margin-bottom: 10px;
}

.ritual-button {
  display: block;
  margin: 50px auto;
  padding: 20px 60px;
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #8a2be2, #4b0082, #8a2be2);
  background-size: 200% 200%;
  color: white;
  border: 3px solid #b19cd9;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 5px 30px rgba(138, 43, 226, 0.5);
  animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 5px 30px rgba(138, 43, 226, 0.5);
    border-color: #b19cd9;
  }
  50% {
    box-shadow: 0 5px 50px rgba(138, 43, 226, 0.8),
      0 0 30px rgba(138, 43, 226, 0.6);
    border-color: #d8bfd8;
  }
}

.ritual-button:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 10px 60px rgba(138, 43, 226, 0.9);
  background-position: 100% 0;
}

.ritual-button:active {
  transform: scale(1.02) translateY(0);
}

.button-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  animation: buttonGlow 3s infinite;
}

@keyframes buttonGlow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 20px);
  }
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

.nav-link {
  color: #9370db;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 10px 20px;
  border: 2px solid #9370db;
  border-radius: 10px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #9370db;
  transition: left 0.4s ease;
  z-index: -1;
}

.nav-link:hover::before {
  left: 0;
}

.nav-link:hover {
  color: #1a0033;
  border-color: #b19cd9;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(147, 112, 219, 0.5);
}

.main-footer {
  text-align: center;
  margin: 60px 0 20px;
  color: #7b68ee;
  font-style: italic;
}

/* ===== TARGETS PAGE ===== */
.page-header {
  text-align: center;
  margin: 40px 0;
}

.page-header h1 {
  font-size: 2.5rem;
  color: #b19cd9;
  text-shadow: 0 0 20px #8a2be2;
}

.search-bar {
  max-width: 600px;
  margin: 30px auto;
}

.custom-target-section {
  text-align: center;
  margin: 40px 0;
}

.custom-target-btn {
  padding: 20px 50px;
  font-size: 1.3rem;
  font-weight: bold;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f, #ff6b6b);
  background-size: 200% 200%;
  color: white;
  border: 3px solid #ff4757;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  animation: pulseGlow 2s infinite;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    border-color: #ff4757;
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 107, 107, 0.8),
      0 0 60px rgba(255, 107, 107, 0.5);
    border-color: #ff6b6b;
  }
}

.custom-target-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.custom-target-btn:hover::before {
  width: 400px;
  height: 400px;
}

.custom-target-btn:hover {
  transform: scale(1.08) translateY(-3px);
  background-position: 100% 0;
  box-shadow: 0 10px 50px rgba(255, 107, 107, 0.9);
}

.custom-hint {
  color: #9370db;
  font-style: italic;
  margin-top: 15px;
  font-size: 1rem;
}

.search-bar input {
  width: 100%;
  padding: 15px 20px;
  font-size: 1.1rem;
  background: rgba(138, 43, 226, 0.1);
  border: 2px solid #8a2be2;
  border-radius: 50px;
  color: #e0d4f7;
  outline: none;
}

.search-bar input::placeholder {
  color: #9370db;
}

.target-category {
  margin: 50px 0;
}

.category-title {
  font-size: 2rem;
  color: #b19cd9;
  margin-bottom: 20px;
  text-align: center;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.target-card {
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.1),
    rgba(75, 0, 130, 0.1)
  );
  border: 2px solid #8a2be2;
  border-radius: 15px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.target-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(138, 43, 226, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.target-card:hover::before {
  left: 100%;
}

.target-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(138, 43, 226, 0.6);
  border-color: #b19cd9;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.2),
    rgba(75, 0, 130, 0.2)
  );
}

.target-card h3 {
  color: #d8bfd8;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.target-card p {
  color: #9370db;
  font-size: 0.9rem;
  font-style: italic;
}

.back-button {
  display: block;
  margin: 50px auto;
  padding: 15px 40px;
  background: rgba(138, 43, 226, 0.2);
  border: 2px solid #8a2be2;
  color: #b19cd9;
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.back-button::after {
  content: "←";
  position: absolute;
  left: 15px;
  transition: transform 0.3s ease;
}

.back-button:hover::after {
  transform: translateX(-5px);
}

.back-button:hover {
  background: #8a2be2;
  color: white;
  transform: translateX(-5px);
  box-shadow: 0 5px 20px rgba(138, 43, 226, 0.5);
}

/* ===== RITUAL PAGE ===== */
.ritual-header {
  text-align: center;
  margin: 40px 0;
}

.ritual-header h1 {
  font-size: 2.5rem;
  color: #b19cd9;
  text-shadow: 0 0 20px #8a2be2;
}

.target-name {
  font-size: 1.3rem;
  color: #ffb347;
  margin: 20px 0;
}

.progress-bar {
  max-width: 600px;
  margin: 20px auto;
  height: 30px;
  background: rgba(138, 43, 226, 0.2);
  border: 2px solid #8a2be2;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #8a2be2, #b19cd9);
  transition: width 0.5s;
  width: 10%;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  color: white;
  text-shadow: 0 0 5px black;
}

.ritual-container {
  max-width: 800px;
  margin: 50px auto;
}

.question-card {
  background: rgba(138, 43, 226, 0.1);
  border: 3px solid #8a2be2;
  border-radius: 20px;
  padding: 40px;
  min-height: 400px;
}

.question-number {
  color: #9370db;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.question-text {
  font-size: 1.8rem;
  color: #d8bfd8;
  margin-bottom: 30px;
}

.options-container {
  display: grid;
  gap: 15px;
}

.option-btn {
  padding: 20px;
  background: rgba(138, 43, 226, 0.2);
  border: 2px solid #8a2be2;
  border-radius: 10px;
  color: #d8bfd8;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.option-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #8a2be2;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.option-btn:hover::before {
  transform: scaleY(1);
}

.option-btn:hover {
  background: rgba(138, 43, 226, 0.4);
  transform: translateX(15px);
  box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
}

.option-btn.selected {
  background: linear-gradient(135deg, #8a2be2, #6a1b9a);
  color: white;
  border-color: #b19cd9;
  transform: translateX(10px);
  box-shadow: 0 5px 25px rgba(138, 43, 226, 0.6);
}

.option-btn.selected::before {
  transform: scaleY(1);
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.ritual-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.control-btn {
  padding: 15px 40px;
  background: rgba(138, 43, 226, 0.2);
  border: 2px solid #8a2be2;
  color: #b19cd9;
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.control-btn:hover:not(:disabled) {
  background: #8a2be2;
  color: white;
}

.control-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.control-btn.primary {
  background: #8a2be2;
  color: white;
}

.hidden {
  display: none !important;
}

.ritual-completion {
  text-align: center;
  margin: 100px 0;
}

.magic-circle {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  border: 3px solid #8a2be2;
  border-radius: 50%;
  position: relative;
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.completion-text {
  font-size: 2.5rem;
  color: #b19cd9;
  margin: 30px 0;
}

.unleash-btn {
  padding: 25px 60px;
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(135deg, #ff4500, #ff6347);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 30px;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}

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

.unleash-btn:hover {
  box-shadow: 0 0 50px #ff4500;
}

/* ===== CURSE CARD PAGE ===== */
.curse-reveal {
  text-align: center;
  margin: 50px 0;
}

.reveal-title {
  font-size: 2.5rem;
  color: #ffb347;
  text-shadow: 0 0 30px #ff4500, 0 0 60px #ff4500;
  margin-bottom: 50px;
  animation: flicker 2s infinite;
}

@keyframes flicker {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 30px #ff4500, 0 0 60px #ff4500;
  }
  50% {
    opacity: 0.7;
    text-shadow: 0 0 20px #ff4500, 0 0 40px #ff4500;
  }
}

/* Candles */
.candles-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 40px 0;
}

.candle {
  position: relative;
  width: 40px;
  height: 120px;
}

.flame {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 35px;
  background: linear-gradient(to top, #ff6b00, #ffaa00, #ffdd00);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 0 20px #ff6b00, 0 0 40px #ff4500;
  animation: flameFlicker 0.3s infinite alternate;
}

@keyframes flameFlicker {
  0% {
    transform: translateX(-50%) scale(1) translateY(0);
    box-shadow: 0 0 20px #ff6b00, 0 0 40px #ff4500;
  }
  50% {
    transform: translateX(-50%) scale(1.05) translateY(-2px);
    box-shadow: 0 0 25px #ff6b00, 0 0 50px #ff4500;
  }
  100% {
    transform: translateX(-50%) scale(0.95) translateY(2px);
    box-shadow: 0 0 15px #ff6b00, 0 0 30px #ff4500;
  }
}

.wick {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 10px;
  background: #2a2a2a;
  border-radius: 2px;
}

.wax {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #4a0e4e, #2d0052);
  border-radius: 5px 5px 0 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Curse Card */
.curse-card {
  max-width: 700px;
  margin: 50px auto;
  background: linear-gradient(135deg, #0d0015, #1a0033, #2d0052);
  border: 4px solid #8a2be2;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 0 50px rgba(138, 43, 226, 0.7),
    0 0 100px rgba(138, 43, 226, 0.4);
  animation: cardGlow 3s infinite;
}

@keyframes cardGlow {
  0%,
  100% {
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.7),
      0 0 100px rgba(138, 43, 226, 0.4);
    border-color: #8a2be2;
  }
  50% {
    box-shadow: 0 0 70px rgba(138, 43, 226, 0.9),
      0 0 120px rgba(138, 43, 226, 0.6);
    border-color: #b19cd9;
  }
}

.card-border-glow {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid transparent;
  border-radius: 20px;
  background: linear-gradient(45deg, #8a2be2, #b19cd9, #8a2be2);
  background-size: 200% 200%;
  animation: borderRotate 4s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes borderRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.card-border {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #b19cd9;
  border-radius: 15px;
  pointer-events: none;
  animation: innerBorderPulse 2s infinite;
}

@keyframes innerBorderPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Sparkles */
.sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 20px;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px white, 0 0 20px #b19cd9;
  animation: sparkleFloat 3s infinite;
}

.sparkle:nth-child(1) {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.sparkle:nth-child(2) {
  top: 30%;
  left: 85%;
  animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
  top: 50%;
  left: 10%;
  animation-delay: 1s;
}

.sparkle:nth-child(4) {
  top: 70%;
  left: 90%;
  animation-delay: 1.5s;
}

.sparkle:nth-child(5) {
  top: 20%;
  left: 50%;
  animation-delay: 2s;
}

.sparkle:nth-child(6) {
  top: 80%;
  left: 50%;
  animation-delay: 2.5s;
}

@keyframes sparkleFloat {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-20px) scale(1.5);
  }
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.card-header h2 {
  font-size: 2rem;
  color: #b19cd9;
  text-shadow: 0 0 15px #8a2be2;
  animation: headerGlow 2s infinite;
}

@keyframes headerGlow {
  0%,
  100% {
    text-shadow: 0 0 15px #8a2be2;
  }
  50% {
    text-shadow: 0 0 25px #8a2be2, 0 0 35px #b19cd9;
  }
}

.curse-icon {
  font-size: 2rem;
  animation: iconSpin 4s linear infinite;
}

@keyframes iconSpin {
  0%,
  90% {
    transform: rotate(0deg);
  }
  95% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.curse-target {
  margin: 30px 0;
}

.label {
  color: #9370db;
  font-size: 0.9rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.curse-target .target-name {
  font-size: 1.8rem;
  color: #ffb347;
  font-weight: bold;
  text-shadow: 0 0 20px #ff4500, 0 0 40px #ff6347;
  animation: targetPulse 2s infinite;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes targetPulse {
  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 20px #ff4500, 0 0 40px #ff6347;
  }
  50% {
    transform: scale(1.05);
    text-shadow: 0 0 30px #ff4500, 0 0 60px #ff6347, 0 0 80px #ff4500;
  }
}

.curse-text {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #8a2be2;
  border-radius: 15px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: inset 0 0 30px rgba(138, 43, 226, 0.3);
  position: relative;
  overflow: hidden;
}

.curse-text::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(138, 43, 226, 0.1),
    transparent
  );
  animation: shimmer 3s infinite;
}

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

.curse-text p {
  font-size: 1.5rem;
  color: #d8bfd8;
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(216, 191, 216, 0.5);
}

.curse-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.detail {
  text-align: center;
  padding: 15px;
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid #8a2be2;
  border-radius: 10px;
  transition: all 0.3s;
}

.detail:hover {
  background: rgba(138, 43, 226, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(138, 43, 226, 0.5);
}

.detail-label {
  display: block;
  color: #9370db;
  font-size: 0.9rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-value {
  display: block;
  color: #b19cd9;
  font-size: 1.6rem;
  font-weight: bold;
  text-shadow: 0 0 10px #8a2be2;
  animation: valueGlow 2s infinite;
  margin-top: 8px;
}

@keyframes valueGlow {
  0%,
  100% {
    text-shadow: 0 0 10px #8a2be2;
  }
  50% {
    text-shadow: 0 0 20px #8a2be2, 0 0 30px #b19cd9;
  }
}

.card-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #8a2be2;
}

.disclaimer {
  color: #9370db;
  font-size: 0.9rem;
  font-style: italic;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.action-btn {
  padding: 15px 30px;
  background: rgba(138, 43, 226, 0.2);
  border: 2px solid #8a2be2;
  color: #b19cd9;
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.action-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(138, 43, 226, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.action-btn:hover::before {
  width: 300px;
  height: 300px;
}

.action-btn:hover {
  background: #8a2be2;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
  border-color: #b19cd9;
}

.action-btn:active {
  transform: translateY(-2px);
}

/* ===== ABOUT PAGE ===== */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-section {
  background: rgba(138, 43, 226, 0.1);
  border: 2px solid #8a2be2;
  border-radius: 15px;
  padding: 30px;
  margin: 30px 0;
}

.intro-text {
  color: #d8bfd8;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 15px 0;
}

.intro-text strong {
  color: #b19cd9;
  text-shadow: 0 0 10px #8a2be2;
}

.intro-text em {
  color: #ffb347;
}

.about-section h2 {
  color: #b19cd9;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-shadow: 0 0 15px #8a2be2;
}

.about-section p {
  color: #d8bfd8;
  line-height: 1.8;
  margin: 15px 0;
}

.feature-list {
  list-style: none;
  padding-left: 20px;
  margin: 20px 0;
}

.feature-list li {
  color: #d8bfd8;
  padding: 8px 0;
  position: relative;
}

.feature-list li::before {
  content: "✨";
  position: absolute;
  left: -25px;
}

.rules-section {
  background: rgba(138, 43, 226, 0.15);
  border-color: #b19cd9;
}

.rules-box {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid #8a2be2;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}

.rules-box p {
  color: #b19cd9;
  font-size: 1.1rem;
  margin: 10px 0;
  text-shadow: 0 0 10px #8a2be2;
}

.rules-note {
  font-style: italic;
  color: #9370db;
  text-align: center;
  margin-top: 15px;
}

.kiro-section {
  background: rgba(138, 43, 226, 0.15);
  border-color: #b19cd9;
}

.quote {
  font-size: 1.3rem;
  color: #ffb347;
  text-align: center;
  font-style: italic;
  margin: 20px 0;
  text-shadow: 0 0 15px #ff4500;
}

.promise-section {
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.2),
    rgba(75, 0, 130, 0.2)
  );
  border: 3px solid #8a2be2;
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
}

.promise-text {
  font-size: 1.2rem;
  color: #d8bfd8;
  text-align: center;
  line-height: 1.8;
  margin: 20px 0;
}

.promise-text strong {
  color: #ffb347;
  text-shadow: 0 0 15px #ff4500;
}

.cta-section {
  text-align: center;
  margin: 50px 0;
}

/* ===== BLOG PAGE ===== */
.blog-header {
  text-align: center;
  margin: 40px 0;
}

.blog-header h1 {
  font-size: 2.5rem;
  color: #b19cd9;
  text-shadow: 0 0 20px #8a2be2;
}

.blog-container {
  max-width: 900px;
  margin: 0 auto;
}

.blog-post {
  background: rgba(138, 43, 226, 0.1);
  border: 2px solid #8a2be2;
  border-radius: 15px;
  padding: 30px;
  margin: 30px 0;
}

.post-header {
  margin-bottom: 20px;
  border-bottom: 2px solid #8a2be2;
  padding-bottom: 15px;
}

.post-header h2 {
  color: #d8bfd8;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.post-date,
.post-tag {
  display: inline-block;
  margin-right: 15px;
  color: #9370db;
  font-size: 0.9rem;
}

.post-tag {
  background: rgba(138, 43, 226, 0.3);
  padding: 5px 15px;
  border-radius: 20px;
}

.post-content {
  color: #d8bfd8;
  line-height: 1.8;
}

.post-content h3 {
  color: #b19cd9;
  margin: 20px 0 10px;
}

.post-content p {
  margin: 15px 0;
}

.post-content ol,
.post-content ul {
  margin: 15px 0 15px 30px;
}

.post-content li {
  margin: 10px 0;
}

/* ===== DOWNLOAD APP BUTTON ===== */
.download-app-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(200px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.download-app-btn button {
  padding: 15px 25px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  border: 3px solid #ff4757;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 5px 25px rgba(255, 107, 107, 0.6);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.download-app-btn button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 40px rgba(255, 107, 107, 0.8);
  background: linear-gradient(135deg, #ff4757, #ff6b6b);
}

.download-app-btn button:active {
  transform: translateY(-2px) scale(1.02);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Global */
  .container {
    padding: 15px;
  }

  /* Landing Page */
  .glitch-text {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 1rem;
  }

  .dramatic-text {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .curse-examples {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .example-curse {
    padding: 15px;
  }

  .curse-emoji {
    font-size: 2rem;
  }

  .stats-container {
    gap: 15px;
    flex-wrap: wrap;
  }

  .stat-box {
    min-width: 100px;
    padding: 15px 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .how-it-works h2 {
    font-size: 1.5rem;
  }

  .steps {
    flex-direction: column;
    gap: 15px;
  }

  .step {
    min-width: auto;
    width: 100%;
    padding: 20px 15px;
  }

  .step-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }

  .ritual-button {
    padding: 15px 40px;
    font-size: 1.2rem;
  }

  .main-nav {
    flex-direction: column;
    gap: 15px;
  }

  /* Targets Page */
  .page-header h1 {
    font-size: 1.8rem;
  }

  .search-bar input {
    padding: 12px 15px;
    font-size: 1rem;
  }

  .custom-target-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  .category-title {
    font-size: 1.5rem;
  }

  .target-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .target-card {
    padding: 15px;
  }

  .target-card h3 {
    font-size: 1.1rem;
  }

  /* Ritual Page */
  .ritual-header h1 {
    font-size: 1.8rem;
  }

  .target-name {
    font-size: 1.1rem;
  }

  .progress-bar {
    height: 25px;
  }

  .question-card {
    padding: 25px 20px;
    min-height: 350px;
  }

  .question-text {
    font-size: 1.3rem;
  }

  .option-btn {
    padding: 15px;
    font-size: 1rem;
  }

  .ritual-controls {
    flex-direction: column;
    gap: 10px;
  }

  .control-btn {
    width: 100%;
    padding: 12px 30px;
  }

  .magic-circle {
    width: 150px;
    height: 150px;
  }

  .completion-text {
    font-size: 2rem;
  }

  .unleash-btn {
    padding: 20px 40px;
    font-size: 1.5rem;
  }

  /* Curse Card Page */
  .reveal-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .candles-container {
    gap: 40px;
    margin: 30px 0;
  }

  .candle {
    width: 30px;
    height: 100px;
  }

  .flame {
    width: 15px;
    height: 28px;
    top: -25px;
  }

  .curse-card {
    padding: 25px 20px;
    margin: 30px auto;
  }

  .card-header h2 {
    font-size: 1.5rem;
  }

  .curse-icon {
    font-size: 1.5rem;
  }

  .curse-target .target-name {
    font-size: 1.4rem;
  }

  .curse-text {
    padding: 20px 15px;
  }

  .curse-text p {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .curse-details {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .detail {
    padding: 12px;
  }

  .detail-value {
    font-size: 1.3rem;
  }

  .action-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .action-btn {
    width: 100%;
    padding: 12px 25px;
    font-size: 1rem;
  }

  /* About Page */
  .about-section {
    padding: 20px 15px;
  }

  .about-section h2 {
    font-size: 1.5rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .quote {
    font-size: 1.1rem;
  }

  .promise-text {
    font-size: 1.1rem;
  }

  /* Blog Page */
  .blog-header h1 {
    font-size: 1.8rem;
  }

  .blog-post {
    padding: 20px 15px;
  }

  .post-header h2 {
    font-size: 1.4rem;
  }

  .post-content {
    font-size: 0.95rem;
  }

  /* Back Button */
  .back-button {
    padding: 12px 30px;
    font-size: 1rem;
  }

  /* Download Button */
  .download-app-btn {
    bottom: 20px;
    right: 20px;
  }

  .download-app-btn button {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .glitch-text {
    font-size: 1.5rem;
  }

  .dramatic-text {
    font-size: 1rem;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .stat-box {
    width: 100%;
    max-width: 200px;
  }

  .candles-container {
    gap: 30px;
  }

  .candle {
    width: 25px;
    height: 80px;
  }

  .flame {
    width: 12px;
    height: 22px;
    top: -20px;
  }

  .curse-card {
    padding: 20px 15px;
  }

  .card-header {
    gap: 10px;
  }

  .card-header h2 {
    font-size: 1.2rem;
  }

  .curse-text p {
    font-size: 1.1rem;
  }

  .custom-target-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}
