/* ========================================
   RULES PAGE STYLES
   ======================================== */

/* Container */
.rules-container {
  text-align: center;
  padding: 40px 20px 40px;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Footer Override - make it not fixed */
footer {
  position: relative !important;
  margin-top: 40px;
  background: linear-gradient(180deg, transparent, rgba(5, 2, 8, 0.95)) !important;
}

/* Language Switcher */
.lang-switcher {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  background: rgba(196, 90, 44, 0.15);
  border: 1px solid rgba(196, 90, 44, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-header);
}

.lang-switcher:hover {
  background: rgba(196, 90, 44, 0.25);
  border-color: rgba(196, 90, 44, 0.5);
}

.lang-option {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.lang-option.active {
  color: var(--mars-light);
}

.lang-separator {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin: 0 2px;
}

/* ========================================
   HERO HEADER
   ======================================== */

.hero-header {
  position: relative;
  padding: 30px 30px;
  margin-bottom: 15px;
  background: linear-gradient(
    160deg,
    rgba(196, 90, 44, 0.05) 0%,
    rgba(5, 2, 8, 0.3) 40%,
    rgba(196, 90, 44, 0.03) 100%
  );
  border: 1px solid rgba(196, 90, 44, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Soft ambient glow behind header */
.hero-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(
    ellipse at center,
    rgba(196, 90, 44, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Orbital System */
.orbital-system {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  z-index: 1;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(196, 90, 44, 0.18);
  border-radius: 50%;
  animation: orbitPulse 4s ease-in-out infinite;
  will-change: opacity;
}

.orbit::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--mars-glow);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--mars-glow), 0 0 12px rgba(255, 140, 85, 0.4);
}

.orbit-1 {
  width: 45px;
  height: 45px;
  animation-delay: 0s;
}

.orbit-1::after {
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  animation: orbitRotate1 5s linear infinite;
  will-change: transform;
}

.orbit-2 {
  width: 58px;
  height: 58px;
  animation-delay: 0.5s;
  border-color: rgba(232, 176, 89, 0.15);
}

.orbit-2::after {
  top: 50%;
  right: -2px;
  transform: translateY(-50%);
  background: var(--accent-gold);
  box-shadow: 0 0 6px rgba(232, 176, 89, 0.6);
  animation: orbitRotate2 7s linear infinite reverse;
  will-change: transform;
}

.orbit-3 {
  width: 70px;
  height: 70px;
  animation-delay: 1s;
  border-style: dashed;
  border-color: rgba(196, 90, 44, 0.08);
}

.orbit-3::after {
  display: none;
}

@keyframes orbitPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes orbitRotate1 {
  from {
    transform: translateX(-50%) rotate(0deg) translateY(-40px) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg) translateY(-40px) rotate(-360deg);
  }
}

@keyframes orbitRotate2 {
  from {
    transform: translateY(-50%) rotate(0deg) translateX(50px) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg) translateX(50px) rotate(-360deg);
  }
}

.planet-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: radial-gradient(
    circle at 30% 30%,
    #ff7b47 0%,
    #c45a2c 40%,
    #8a3520 70%,
    #5c2415 100%
  );
  border-radius: 50%;
  box-shadow: 
    inset -4px -4px 10px rgba(0, 0, 0, 0.4),
    inset 3px 3px 8px rgba(255, 180, 120, 0.25),
    0 0 15px rgba(196, 90, 44, 0.4),
    0 0 30px rgba(196, 90, 44, 0.2);
  animation: planetFloat 5s ease-in-out infinite;
  will-change: transform, box-shadow;
  display: flex;
  align-items: center;
  justify-content: center;
}

.planet-icon {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.1);
  animation: spinMars 25s linear infinite;
}

@keyframes planetFloat {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes spinMars {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Status Terminal */
.status-terminal {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(196, 90, 44, 0.15);
  border-radius: 10px;
  padding: 10px 18px;
  margin: 0 auto 18px;
  max-width: 260px;
  font-family: "Courier New", monospace;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  z-index: 1;
  position: relative;
}

.terminal-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 3px 0;
  font-size: 0.65rem;
  letter-spacing: 0.5px;
}

.terminal-prefix {
  color: rgba(255, 140, 85, 0.7);
  font-weight: 500;
}

.terminal-text {
  color: var(--text-secondary);
  opacity: 0.9;
}

.status-active {
  color: #00ff88;
  font-weight: bold;
  animation: statusBlink 2s ease-in-out infinite;
}

.status-version {
  color: var(--accent-gold);
}

@keyframes statusBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.typing-effect {
  overflow: hidden;
  border-right: 2px solid var(--mars-glow);
  animation: typing 3s steps(30) infinite, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  0%, 100% {
    width: 100%;
  }
}

@keyframes blink-caret {
  0%, 100% {
    border-color: var(--mars-glow);
  }
  50% {
    border-color: transparent;
  }
}

/* Hero Title */
.title-wrapper {
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-header);
  font-weight: 900;
  line-height: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.title-line {
  display: block;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.title-line-1 {
  font-size: 2rem;
  background: linear-gradient(
    135deg,
    var(--mars-light) 0%,
    var(--mars-glow) 30%,
    var(--accent-gold) 70%,
    var(--mars-light) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
  text-shadow: none;
  filter: drop-shadow(0 0 15px rgba(224, 112, 64, 0.25));
}

.title-line-2 {
  font-size: 2.8rem;
  color: #ff5555;
  text-shadow: 
    0 0 10px rgba(255, 85, 85, 0.35),
    0 0 20px rgba(255, 85, 85, 0.2),
    0 0 35px rgba(255, 85, 85, 0.1);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 
      0 0 15px rgba(255, 85, 85, 0.35),
      0 0 30px rgba(255, 85, 85, 0.2),
      0 0 50px rgba(255, 85, 85, 0.1);
  }
  50% {
    text-shadow: 
      0 0 20px rgba(255, 85, 85, 0.45),
      0 0 40px rgba(255, 85, 85, 0.25),
      0 0 60px rgba(255, 85, 85, 0.15);
  }
}

.title-underline {
  width: 120px;
  height: 2px;
  margin: 10px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(196, 90, 44, 0.5),
    rgba(255, 140, 85, 0.6),
    rgba(196, 90, 44, 0.5),
    transparent
  );
  border-radius: 2px;
  animation: underlineGlow 4s ease-in-out infinite;
}

@keyframes underlineGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleX(1.05);
  }
}

/* Hero Subtitle */
.hero-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  margin: 0;
  opacity: 0.85;
  z-index: 1;
  position: relative;
}

.subtitle-icon {
  font-size: 0.75rem;
  color: rgba(232, 176, 89, 0.7);
  animation: sparkle 3s ease-in-out infinite;
}

.subtitle-icon:last-child {
  animation-delay: 1.5s;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Corner Decorations */
.corner-decor {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: rgba(196, 90, 44, 0.2);
  border-style: solid;
  border-width: 0;
  opacity: 0.5;
}

.corner-top-left {
  top: 12px;
  left: 12px;
  border-top-width: 1px;
  border-left-width: 1px;
}

.corner-top-right {
  top: 12px;
  right: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
}

.corner-bottom-left {
  bottom: 12px;
  left: 12px;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.corner-bottom-right {
  bottom: 12px;
  right: 12px;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

/* Section Divider */
.rules-container .section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px auto 40px;
  width: 100%;
  max-width: none;
  height: auto;
  background: none;
}

.rules-container .divider-wing {
  flex: 1;
  max-width: 150px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--mars-primary)
  );
}

.rules-container .divider-wing.left {
  background: linear-gradient(
    90deg,
    transparent,
    var(--mars-primary)
  );
}

.rules-container .divider-wing.right {
  background: linear-gradient(
    90deg,
    var(--mars-primary),
    transparent
  );
}

.rules-container .divider-diamond {
  color: var(--mars-glow);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Rules Content */
.rules-content {
  margin-top: 40px;
}

/* Section Styles */
.rule-section {
  margin-bottom: 50px;
  text-align: left;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(196, 90, 44, 0.3);
}

.section-icon {
  font-size: 1.8rem;
}

.section-header h2 {
  font-family: var(--font-header);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--mars-light);
  margin: 0;
}

/* Rule Cards Grid */
.rule-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.rule-card {
  position: relative;
  background: rgba(196, 90, 44, 0.1);
  border: 1px solid rgba(196, 90, 44, 0.3);
  border-radius: 12px;
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.rule-card:hover {
  background: rgba(196, 90, 44, 0.15);
  border-color: rgba(196, 90, 44, 0.5);
  transform: translateY(-3px);
}

.card-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--mars-glow),
    var(--mars-primary),
    var(--mars-dark)
  );
}

.card-label {
  display: block;
  font-family: var(--font-header);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-value {
  display: block;
  font-family: var(--font-header);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--mars-light);
  text-shadow: 0 0 20px rgba(224, 112, 64, 0.4);
  margin-bottom: 10px;
}

.card-desc {
  display: block;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Section Content */
.section-content {
  background: rgba(196, 90, 44, 0.08);
  border-left: 3px solid var(--mars-primary);
  border-radius: 0 10px 10px 0;
  padding: 24px 28px;
  backdrop-filter: blur(5px);
}

.main-rule {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.main-rule strong {
  color: var(--accent-gold);
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(232, 176, 89, 0.1);
  border: 1px solid rgba(232, 176, 89, 0.25);
  border-radius: 8px;
  padding: 16px 20px;
}

.info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-box p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.info-box em {
  color: var(--accent-gold);
}

/* Protocol Cards */
.protocol-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.protocol-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.protocol-card:hover {
  transform: translateY(-4px);
}

/* Warning Card */
.warning-card {
  background: linear-gradient(
    135deg,
    rgba(255, 170, 0, 0.12) 0%,
    rgba(255, 120, 0, 0.08) 100%
  );
  border: 1px solid rgba(255, 170, 0, 0.35);
}

.warning-card:hover {
  border-color: rgba(255, 170, 0, 0.6);
  box-shadow: 0 8px 40px rgba(255, 170, 0, 0.15);
}

.warning-card .protocol-header {
  background: rgba(255, 170, 0, 0.15);
  border-bottom: 1px solid rgba(255, 170, 0, 0.25);
}

.warning-card .protocol-icon {
  font-size: 1.5rem;
}

.warning-card h3 {
  color: #ffaa00;
}

.warning-card .protocol-tag {
  color: rgba(255, 170, 0, 0.7);
}

.warning-card .protocol-result {
  background: rgba(255, 170, 0, 0.1);
  border-left-color: #ffaa00;
}

/* Void Card */
.void-card {
  background: linear-gradient(
    135deg,
    rgba(255, 50, 50, 0.12) 0%,
    rgba(139, 0, 0, 0.08) 100%
  );
  border: 1px solid rgba(255, 50, 50, 0.35);
}

.void-card:hover {
  border-color: rgba(255, 50, 50, 0.6);
  box-shadow: 0 8px 40px rgba(255, 50, 50, 0.15);
}

.void-card .protocol-header {
  background: rgba(255, 50, 50, 0.15);
  border-bottom: 1px solid rgba(255, 50, 50, 0.25);
}

.void-card .protocol-icon {
  font-size: 1.5rem;
}

.void-card h3 {
  color: #ff5555;
}

.void-card .protocol-tag {
  color: rgba(255, 85, 85, 0.7);
}

.void-card .protocol-result {
  background: rgba(255, 50, 50, 0.1);
  border-left-color: #ff5555;
}

/* Protocol Header */
.protocol-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
}

.protocol-header h3 {
  font-family: var(--font-header);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
}

.protocol-tag {
  font-size: 0.85rem;
  font-style: italic;
}

/* Protocol Body */
.protocol-body {
  padding: 20px 24px 24px;
}

.protocol-desc {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.protocol-desc strong {
  color: var(--accent-gold);
}

.protocol-result {
  border-left: 3px solid;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
}

.protocol-result p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.protocol-result em {
  color: var(--text-primary);
}

/* Back Navigation */
.back-nav {
  margin-top: 60px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.back-nav:hover {
  opacity: 1;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-header);
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid rgba(196, 90, 44, 0.3);
  border-radius: 30px;
  background: rgba(196, 90, 44, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.back-link:hover {
  color: var(--mars-light);
  background: rgba(196, 90, 44, 0.2);
  border-color: rgba(196, 90, 44, 0.5);
}

.back-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.back-link:hover .back-arrow {
  transform: translateX(-5px);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@keyframes diamondSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .rules-container {
    padding: 30px 16px 100px;
  }

  .hero-header {
    padding: 40px 20px;
  }

  .orbital-system {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
  }

  .orbit-1 { width: 60px; height: 60px; }
  .orbit-2 { width: 80px; height: 80px; }
  .orbit-3 { width: 100px; height: 100px; }

  .planet-core {
    width: 40px;
    height: 40px;
  }

  .planet-icon {
    font-size: 22px;
  }

  .status-terminal {
    padding: 10px 16px;
    max-width: 280px;
    margin-bottom: 24px;
  }

  .terminal-line {
    font-size: 0.7rem;
  }

  .title-line-1 {
    font-size: 2.5rem;
    letter-spacing: 8px;
  }

  .title-line-2 {
    font-size: 3.2rem;
    letter-spacing: 8px;
  }

  .title-underline {
    width: 150px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 2px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .corner-decor {
    width: 20px;
    height: 20px;
  }

  .section-header h2 {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .rule-cards {
    grid-template-columns: 1fr;
  }

  .card-value {
    font-size: 1.5rem;
  }

  .protocol-header {
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 18px;
  }

  .protocol-header h3 {
    font-size: 1.05rem;
  }

  .protocol-body {
    padding: 16px 18px 20px;
  }

  .protocol-desc {
    font-size: 1rem;
  }

  .section-content {
    padding: 20px 22px;
  }

  .main-rule {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .rules-container {
    padding: 20px 12px 90px;
  }

  .hero-header {
    padding: 30px 15px;
    border-radius: 14px;
  }

  .orbital-system {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .orbit-1 { width: 50px; height: 50px; }
  .orbit-2 { width: 65px; height: 65px; }
  .orbit-3 { width: 80px; height: 80px; }

  .planet-core {
    width: 32px;
    height: 32px;
  }

  .planet-icon {
    font-size: 18px;
  }

  .status-terminal {
    padding: 8px 12px;
    max-width: 240px;
    margin-bottom: 20px;
  }

  .terminal-line {
    font-size: 0.6rem;
    gap: 6px;
  }

  .title-line-1 {
    font-size: 1.8rem;
    letter-spacing: 5px;
  }

  .title-line-2 {
    font-size: 2.4rem;
    letter-spacing: 5px;
  }

  .title-underline {
    width: 100px;
    height: 2px;
    margin-top: 12px;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  .subtitle-icon {
    font-size: 0.8rem;
  }

  .corner-decor {
    width: 15px;
    height: 15px;
  }

  .corner-top-left,
  .corner-top-right { top: 10px; }
  .corner-bottom-left,
  .corner-bottom-right { bottom: 10px; }
  .corner-top-left,
  .corner-bottom-left { left: 10px; }
  .corner-top-right,
  .corner-bottom-right { right: 10px; }

  .section-divider {
    margin: 20px 0 30px;
  }

  .divider-wing {
    width: 50px;
  }

  .rules-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .rules-subtitle {
    font-size: 0.95rem;
  }

  .section-header {
    gap: 10px;
    margin-bottom: 18px;
  }

  .section-icon {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 1rem;
    letter-spacing: 1.5px;
  }

  .rule-card {
    padding: 22px 18px;
  }

  .card-value {
    font-size: 1.3rem;
  }

  .protocol-header {
    padding: 12px 14px;
  }

  .protocol-header h3 {
    font-size: 0.95rem;
  }

  .protocol-body {
    padding: 14px 14px 18px;
  }

  .protocol-desc,
  .protocol-result p {
    font-size: 0.95rem;
  }

  .section-content {
    padding: 18px;
  }

  .info-box {
    padding: 14px 16px;
    flex-direction: column;
    gap: 8px;
  }

  .back-link {
    font-size: 0.8rem;
    padding: 10px 20px;
  }
}

@media (max-width: 360px) {
  .rules-title {
    font-size: 1.5rem;
  }

  .rules-icon {
    font-size: 1.6rem;
  }

  .card-value {
    font-size: 1.2rem;
  }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   Disable heavy animations (keep stars)
   ======================================== */

/* Disable orbital system animations */
.orbit {
  animation: none;
}

.orbit-1::after,
.orbit-2::after {
  animation: none;
}

.planet-core {
  animation: none;
  box-shadow: 0 0 15px rgba(196, 90, 44, 0.4);
}

.planet-icon {
  animation: none;
}

/* Disable title animations */
.title-line-1 {
  animation: none;
}

.title-line-2 {
  animation: none;
}

.title-underline {
  animation: none;
}

/* Disable subtitle sparkle */
.subtitle-icon {
  animation: none;
}

/* Disable divider spin */
.divider-diamond {
  animation: none;
}

/* Disable card hover transforms */
.rule-card:hover,
.protocol-card:hover {
  transform: none;
}
