/* src/client/styles.css */
body {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #999;
  background-color: black;
  text-align: center;
  padding-top: 40px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: sans-serif;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
#app {
  padding: 1rem;
}
h1 {
  color: white;
  letter-spacing: 0.3em;
}
b {
  color: white;
  font-weight: bold;
}
a {
  color: #ccc;
  text-decoration-line: underline;
  text-underline-offset: 3px;
  text-decoration-color: #555;
}
.planetary-registry {
  margin-top: 60px;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.planetary-registry h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}
.datetime-controls {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.control-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.control-group label {
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 500;
}
.control-group input,
.control-group .date-picker-button {
  background-color: #1a1a1a;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 10px 15px;
  color: white;
  font-size: 1rem;
  font-family: sans-serif;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.control-group .date-picker-button {
  width: 100%;
  text-align: left;
}
.control-group .date-picker-button:hover {
  border-color: #666;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.control-group input:hover {
  border-color: #666;
}
.control-group input:focus {
  outline: none;
  border-color: #888;
  box-shadow: 0 0 0 3px rgba(136, 136, 136, 0.2);
}
.current-rulers {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ruler-info {
  color: #ccc;
  font-size: 1rem;
  margin: 0;
}
.ruler-label {
  color: #999;
  font-weight: 500;
}
.ruler-value {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}
.planets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.planet-card {
  background:
    linear-gradient(
      135deg,
      #1a1a1a 0%,
      #0f0f0f 100%);
  border: 2px solid;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.planet-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: inherit;
  opacity: 0.3;
}
.planet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.planet-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.planet-emoji {
  font-size: 2rem;
  line-height: 1;
}
.planet-name {
  color: white;
  font-size: 1.5rem;
  margin: 0;
  font-weight: 600;
}
.planet-details {
  margin-bottom: 15px;
}
.planet-sign {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.sign-label {
  color: #999;
}
.sign-value {
  color: white;
  font-weight: 500;
}
.planet-dignity {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.dignity-emoji {
  font-size: 1.2rem;
}
.dignity-label {
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 500;
}
.retrograde-badge {
  display: inline-block;
  background-color: #f87171;
  color: #000;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 8px;
}
.planet-score {
  position: relative;
  height: 30px;
  background-color: #0a0a0a;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
.score-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  transition: width 0.3s ease;
  border-radius: 6px;
}
.score-value {
  position: relative;
  z-index: 1;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}
.loading-message,
.error-message {
  color: #ccc;
  font-size: 1.1rem;
  margin: 40px 0;
  padding: 20px;
  border-radius: 8px;
}
.loading-message {
  color: #fbbf24;
}
.error-message {
  background-color: rgba(248, 113, 113, 0.1);
  border: 1px solid #f87171;
  color: #f87171;
}
.tooltip {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  max-width: 300px;
  z-index: 10000;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  white-space: pre-line;
}
.info-icon {
  cursor: help;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.info-icon:hover {
  opacity: 1;
}
.ruler-label {
  cursor: help;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}
.planet-element {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: help;
}
.element-emoji {
  font-size: 1.1rem;
}
.element-name {
  font-weight: 600;
}
.natal-chart-section {
  margin: 40px 0;
  padding: 20px;
  background:
    linear-gradient(
      135deg,
      #1a1a1a 0%,
      #0f0f0f 100%);
  border-radius: 12px;
  border: 1px solid #333;
}
.natal-chart-section h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.natal-chart-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #0a0a0a;
  border-radius: 8px;
  border: 1px solid #222;
}
.planet-summary-panel {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  padding: 20px;
  background:
    linear-gradient(
      135deg,
      #1a1a1a 0%,
      #0f0f0f 100%);
  border-radius: 8px;
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
  height: fit-content;
  max-height: 100%;
}
@media (min-width: 900px) {
  .planet-summary-panel {
    max-height: 540px;
  }
}
.planet-summary-panel h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}
.planet-summary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}
.planet-summary-item {
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border: 1px solid #333;
  transition: all 0.2s ease;
}
.planet-summary-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #555;
  transform: translateX(4px);
}
.planet-summary-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.planet-emoji {
  font-size: 1.2rem;
}
.planet-name {
  color: white;
  font-weight: 600;
  font-size: 1rem;
}
.retrograde-indicator {
  background: #f87171;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: bold;
}
.planet-summary-details {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.planet-sign {
  font-weight: 600;
}
.planet-house {
  color: #999;
  font-size: 0.85rem;
}
.planet-dignity {
  margin-top: 4px;
}
.dignity-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.dignity-domicile {
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.4);
}
.dignity-exaltation {
  background: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.4);
}
.dignity-detriment {
  background: rgba(251, 146, 60, 0.2);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.4);
}
.dignity-fall {
  background: rgba(248, 113, 113, 0.2);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.4);
}
.dignity-neutral {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
  border: 1px solid rgba(156, 163, 175, 0.4);
}
.natal-chart-wheel {
  background:
    radial-gradient(
      circle,
      #0f0f0f 0%,
      #000 100%);
  border-radius: 50%;
}
.alignments-section {
  margin: 40px 0;
  padding: 20px;
  background:
    linear-gradient(
      135deg,
      #1a1a1a 0%,
      #0f0f0f 100%);
  border-radius: 12px;
  border: 1px solid #333;
}
.alignments-section h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.zodiac-dash-section {
  margin: 40px 0;
  padding: 30px;
  background:
    linear-gradient(
      135deg,
      #0a0a0a 0%,
      #1a1a1a 50%,
      #0f0f0f 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.zodiac-dash-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}
.zodiac-dash-section h3 {
  color: white;
  font-size: 1.8rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  background:
    linear-gradient(
      135deg,
      #fff 0%,
      #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.zodiac-dash-datetime {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}
.zodiac-dash-datetime-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.zodiac-dash-datetime-value {
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.zodiac-dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.zodiac-dash-card {
  padding: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.zodiac-dash-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent,
      currentColor,
      transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.zodiac-dash-card:hover {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.05);
}
.zodiac-dash-card:hover::before {
  opacity: 0.6;
}
.zodiac-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 12px;
  position: relative;
}
.zodiac-dash-symbol {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px currentColor);
  opacity: 0.9;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.zodiac-dash-card:hover .zodiac-dash-symbol {
  transform: scale(1.1);
  opacity: 1;
  filter: drop-shadow(0 0 12px currentColor);
}
.zodiac-dash-sign {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  flex: 1;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.zodiac-dash-element {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.zodiac-dash-houses,
.zodiac-dash-planets {
  margin-top: 12px;
  font-size: 0.9rem;
}
.zodiac-dash-label {
  color: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.zodiac-dash-houses-list,
.zodiac-dash-planets-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.zodiac-dash-house-badge {
  display: inline-block;
  padding: 6px 12px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.08) 100%);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}
.zodiac-dash-house-badge:hover {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.15) 100%);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.zodiac-dash-planet {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.05) 100%);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
}
.zodiac-dash-planet:hover {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.1) 100%);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.alignments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.alignment-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
}
.alignment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.alignment-type {
  color: #86efac;
  font-weight: 600;
  font-size: 0.9rem;
}
.alignment-strength {
  color: #fbbf24;
  font-weight: 600;
  font-size: 0.85rem;
}
.alignment-planets {
  color: white;
  font-size: 1rem;
  margin: 8px 0;
  font-weight: 500;
}
.alignment-description {
  color: #ccc;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}
.events-section {
  margin: 40px 0;
  padding: 20px;
  background:
    linear-gradient(
      135deg,
      #1a1a1a 0%,
      #0f0f0f 100%);
  border-radius: 12px;
  border: 1px solid #333;
}
.events-section h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.events-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}
.event-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  position: relative;
}
.event-card.event-happening {
  border: 2px solid;
  border-radius: 8px;
  animation: iridescent-border 4s ease-in-out infinite;
  box-shadow:
    0 0 15px rgba(255, 0, 128, 0.4),
    0 0 30px rgba(255, 0, 128, 0.2),
    inset 0 0 15px rgba(255, 0, 128, 0.1);
}
@keyframes iridescent-border {
  0% {
    border-color: #ff0080;
    box-shadow:
      0 0 15px rgba(255, 0, 128, 0.6),
      0 0 30px rgba(255, 0, 128, 0.3),
      inset 0 0 15px rgba(255, 0, 128, 0.15);
  }
  14.28% {
    border-color: #ff4000;
    box-shadow:
      0 0 15px rgba(255, 64, 0, 0.6),
      0 0 30px rgba(255, 64, 0, 0.3),
      inset 0 0 15px rgba(255, 64, 0, 0.15);
  }
  28.56% {
    border-color: #ff8000;
    box-shadow:
      0 0 15px rgba(255, 128, 0, 0.6),
      0 0 30px rgba(255, 128, 0, 0.3),
      inset 0 0 15px rgba(255, 128, 0, 0.15);
  }
  42.84% {
    border-color: #ffff00;
    box-shadow:
      0 0 15px rgba(255, 255, 0, 0.6),
      0 0 30px rgba(255, 255, 0, 0.3),
      inset 0 0 15px rgba(255, 255, 0, 0.15);
  }
  57.12% {
    border-color: #80ff00;
    box-shadow:
      0 0 15px rgba(128, 255, 0, 0.6),
      0 0 30px rgba(128, 255, 0, 0.3),
      inset 0 0 15px rgba(128, 255, 0, 0.15);
  }
  71.4% {
    border-color: #00ffff;
    box-shadow:
      0 0 15px rgba(0, 255, 255, 0.6),
      0 0 30px rgba(0, 255, 255, 0.3),
      inset 0 0 15px rgba(0, 255, 255, 0.15);
  }
  85.68% {
    border-color: #0080ff;
    box-shadow:
      0 0 15px rgba(0, 128, 255, 0.6),
      0 0 30px rgba(0, 128, 255, 0.3),
      inset 0 0 15px rgba(0, 128, 255, 0.15);
  }
  100% {
    border-color: #8000ff;
    box-shadow:
      0 0 15px rgba(128, 0, 255, 0.6),
      0 0 30px rgba(128, 0, 255, 0.3),
      inset 0 0 15px rgba(128, 0, 255, 0.15);
  }
}
.event-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.event-type {
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.event-date {
  color: #999;
  font-size: 0.85rem;
}
.event-name {
  color: white;
  font-size: 1.1rem;
  margin: 8px 0;
  font-weight: 600;
}
.event-description {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}
.elemental-profile-section {
  margin: 40px 0;
  padding: 30px;
  background:
    linear-gradient(
      135deg,
      #1a1a1a 0%,
      #0f0f0f 100%);
  border-radius: 12px;
  border: 1px solid #333;
}
.elemental-profile-section h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.elemental-profile-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}
.weather-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.weather-label {
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 500;
}
.weather-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.weather-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 6px 12px;
  color: #ccc;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.weather-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}
.weather-button.selected {
  background: rgba(59, 130, 246, 0.3);
  border-color: #3b82f6;
  color: #3b82f6;
  font-weight: 600;
}
.elemental-profile-section h4 {
  color: white;
  font-size: 1.2rem;
  margin: 25px 0 15px 0;
  font-weight: 600;
}
.elemental-composition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.element-compact {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  animation: fadeInUp 0.4s ease-out forwards;
  opacity: 0;
}
.element-compact:nth-child(1) {
  animation-delay: 0s;
}
.element-compact:nth-child(2) {
  animation-delay: 0.1s;
}
.element-compact:nth-child(3) {
  animation-delay: 0.2s;
}
.element-compact:nth-child(4) {
  animation-delay: 0.3s;
}
.element-compact:nth-child(5) {
  animation-delay: 0.4s;
}
.element-emoji {
  font-size: 1.8rem;
  line-height: 1;
}
.element-name {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}
.element-percent {
  color: var(--color);
  font-weight: 700;
  font-size: 1.1rem;
}
.element-bar-mini {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: var(--percent);
  background-color: var(--color);
  animation: fillBarMini 0.8s ease-out forwards;
  transform-origin: left;
}
@keyframes fillBarMini {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    opacity: 0.4;
    transform: scaleX(1);
  }
}
.animated-fill {
  animation: fillBar 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: left;
}
@keyframes fillBar {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.location-info {
  color: #86efac;
  font-size: 0.85rem;
  margin-top: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .elemental-breakdown {
    grid-template-columns: 1fr;
  }
}
.event-card {
  cursor: help;
  transition: transform 0.2s, box-shadow 0.2s;
}
.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.visibility-indicator {
  font-size: 0.9rem;
  margin-left: 8px;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .planets-grid {
    grid-template-columns: 1fr;
  }
  .datetime-controls {
    flex-direction: column;
    align-items: center;
  }
  .current-rulers {
    flex-direction: column;
    gap: 15px;
  }
}
.date-picker-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}
.date-picker-modal {
  background-color: #1a1a1a;
  border: 1px solid #444;
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.date-picker-step h3 {
  color: white;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.5rem;
}
.year-input {
  width: 100%;
  background-color: #0a0a0a;
  border: 2px solid #444;
  border-radius: 8px;
  padding: 15px;
  color: white;
  font-size: 2rem;
  text-align: center;
  font-family: sans-serif;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}
.year-input:focus {
  outline: none;
  border-color: #666;
}
.month-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.month-button {
  background-color: #0a0a0a;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 15px;
  color: white;
  font-size: 1rem;
  font-family: sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.month-button:hover {
  border-color: #666;
  background-color: #222;
}
.month-button.selected {
  background-color: #333;
  border-color: #888;
  color: #fff;
}
.calendar {
  margin-bottom: 20px;
}
.calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}
.calendar-day-header {
  color: #999;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 8px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.calendar-day {
  background-color: #0a0a0a;
  border: 1px solid #444;
  border-radius: 4px;
  padding: 12px;
  color: white;
  font-size: 0.9rem;
  font-family: sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.calendar-day.empty {
  border: none;
  background-color: transparent;
  cursor: default;
}
.calendar-day:hover:not(.empty) {
  border-color: #666;
  background-color: #222;
}
.calendar-day.selected {
  background-color: #333;
  border-color: #888;
  color: #fff;
}
.date-picker-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}
.date-picker-actions button {
  flex: 1;
  background-color: #0a0a0a;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 12px 20px;
  color: white;
  font-size: 1rem;
  font-family: sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.date-picker-actions button:hover:not(:disabled) {
  border-color: #666;
  background-color: #222;
}
.date-picker-actions button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.sanctum-footer {
  margin-top: 80px;
  padding: 40px 20px;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 20%,
      rgba(0, 0, 0, 0.6) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.sanctum-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(138, 43, 226, 0.3) 20%,
      rgba(75, 0, 130, 0.5) 50%,
      rgba(138, 43, 226, 0.3) 80%,
      transparent 100%);
  opacity: 0.6;
  animation: shimmer 3s ease-in-out infinite;
}
.sanctum-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(138, 43, 226, 0.2) 20%,
      rgba(75, 0, 130, 0.4) 50%,
      rgba(138, 43, 226, 0.2) 80%,
      transparent 100%);
  opacity: 0.4;
}
@keyframes shimmer {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}
.footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.sanctum-highlight {
  color: rgba(138, 43, 226, 0.9);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.5), 0 0 20px rgba(138, 43, 226, 0.3);
  letter-spacing: 1px;
  position: relative;
}
.sanctum-highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(138, 43, 226, 0.6),
      transparent);
  opacity: 0.7;
}
.footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.price-highlight {
  color: rgba(255, 215, 0, 0.9);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}
.footer-link-text {
  color: rgba(138, 43, 226, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 0 0 8px rgba(138, 43, 226, 0.3);
}
.footer-link-text::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(138, 43, 226, 0.5),
      transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.footer-link-text:hover {
  color: rgba(138, 43, 226, 1);
  text-shadow: 0 0 12px rgba(138, 43, 226, 0.6), 0 0 20px rgba(138, 43, 226, 0.3);
}
.footer-link-text:hover::before {
  opacity: 1;
}
.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin: 20px 0 0 0;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  opacity: 0.8;
}
@media (max-width: 768px) {
  .sanctum-footer {
    margin-top: 60px;
    padding: 30px 15px;
  }
  .footer-text {
    font-size: 0.85rem;
  }
  .footer-link {
    font-size: 0.8rem;
  }
}
/*# sourceMappingURL=index.css.map */
