:root {
  --bg-deep: #05070a;
  --bg-secondary: #0f1219;
  --accent-gold: #ffd700;
  --accent-gold-dim: #b39700;
  --accent-purple: #9d4edd;
  --accent-cyan: #00f3ff;
  --text-main: #e0e1dd;
  --text-muted: #a0a0a0;
  --gradient-mystic: linear-gradient(135deg, #0f1219 0%, #240046 100%);
  --gradient-gold: linear-gradient(45deg, #ffd700, #fdb931);
  --font-heading: "Cinzel", serif;
  --font-body: "Lato", sans-serif;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glow: 0 0 10px rgba(157, 78, 221, 0.5);
}

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Lato:wght@300;400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Custom Cursor Removed */

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-purple);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Background Animation */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(circle at 50% 100%, #1a0b2e 0%, #000000 100%);
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle var(--duration) infinite ease-in-out;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Typography & Effects */
h1,
h2,
h3,
.logo {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: 3.5rem;
  background: linear-gradient(to right, var(--text-main), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  bottom: -10px;
  left: 0;
  background: var(--accent-purple);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Header - Glassmorphism */
header {
  background: rgba(5, 7, 10, 0.7);
  padding: 1.2rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-gold);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  position: relative;
}

.logo::after {
  content: "✦";
  font-size: 1rem;
  position: absolute;
  top: -5px;
  right: -15px;
  color: var(--accent-purple);
  animation: spin 4s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links li a {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  position: relative;
  padding: 5px 0;
  color: var(--text-main);
}

.nav-links li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.nav-links li a:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.nav-links li a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Burger Menu */
.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 30px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 6px;
  transition: var(--transition);
  border-radius: 2px;
}

/* Mobile Nav */
@media screen and (max-width: 900px) {
  * {
    cursor: auto; /* Restore default cursor on mobile */
  }
  .cursor,
  .cursor-follower {
    display: none;
  }

  .nav-links {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    background: rgba(11, 14, 23, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%); /* Slide from top */
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    gap: 3rem;
  }

  .nav-links.nav-active {
    transform: translateY(0%);
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(-20px);
    transition:
      opacity 0.5s ease,
      transform 0.5s ease;
  }

  .nav-links.nav-active li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }

  .burger {
    display: block;
    z-index: 1001;
  }

  .toggle .line1 {
    transform: rotate(-45deg) translate(-6px, 7px);
  }
  .toggle .line2 {
    opacity: 0;
  }
  .toggle .line3 {
    transform: rotate(45deg) translate(-6px, -7px);
  }
}

/* Main Content */
main {
  flex: 1;
  padding-top: 100px;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}

/* Sections */
section {
  padding: 6rem 8%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
  padding-top: 2rem;
  position: relative;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 450px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-accept {
  background: var(--gradient-gold);
  color: #000;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-decline {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
}

.btn-decline:hover {
  border-color: var(--text-main);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 350px;
}

.planet {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 30% 30%, var(--accent-gold), #b8860b);
  border-radius: 50%;
  box-shadow:
    0 0 50px rgba(212, 175, 55, 0.4),
    inset -20px -20px 50px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.orbit {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotateX(70deg) rotateY(10deg);
  box-shadow: 0 0 20px rgba(157, 78, 221, 0.2);
  animation: orbit-spin 20s linear infinite;
}

.orbit::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--accent-purple);
  border-radius: 50%;
  top: 35px;
  left: 35px;
  box-shadow: 0 0 15px var(--accent-purple);
}

.floating-symbol {
  position: absolute;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  opacity: 0.6;
  animation: float 8s ease-in-out infinite;
  text-shadow: 0 0 10px var(--accent-cyan);
}

.symbol-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
  font-size: 1.8rem;
}
.symbol-2 {
  top: 70%;
  left: 80%;
  animation-delay: 2s;
  color: var(--accent-purple);
  text-shadow: 0 0 10px var(--accent-purple);
}
.symbol-3 {
  top: 20%;
  right: 10%;
  animation-delay: 4s;
}
.symbol-4 {
  bottom: 10%;
  left: 30%;
  animation-delay: 1s;
  color: var(--accent-gold);
  text-shadow: 0 0 10px var(--accent-gold);
}

@keyframes float {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -20px;
  }
}

@keyframes orbit-spin {
  0% {
    transform: rotateX(70deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(70deg) rotateY(10deg) rotateZ(360deg);
  }
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-top: 2rem;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-purple);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.feature-card h3 {
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.learn-more {
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.learn-more:hover {
  color: var(--accent-purple);
  letter-spacing: 2px;
}

/* Content Sections */
.content-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  min-height: 70vh;
}

.content-text {
  flex: 1;
}

.content-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

.content-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image Placeholder Style */

/* Section 1: Celestial Harmony */
.visual-harmony {
  height: 500px;
}

.img-wrapper {
  position: absolute;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-wrapper:hover img {
  transform: scale(1.1);
}

.main-img {
  width: 350px;
  height: 450px;
  top: 0;
  left: 0;
  z-index: 1;
  border: 1px solid var(--glass-border);
}

.secondary-img {
  width: 250px;
  height: 300px;
  bottom: 20px;
  right: 0;
  z-index: 2;
  border: 1px solid var(--accent-gold);
  transform: translate(20%, 10%);
  backdrop-filter: blur(5px);
}

.decorative-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px dashed var(--accent-purple);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.3;
  animation: spin 30s linear infinite;
}

/* Section 2: Ancient Wisdom */
.section-wisdom {
  flex-direction: row-reverse;
}

.visual-wisdom {
  height: 500px;
}

.geometric-mask {
  width: 450px;
  height: 450px;
  position: relative;
  clip-path: polygon(
    20% 0%,
    80% 0%,
    100% 20%,
    100% 80%,
    80% 100%,
    20% 100%,
    0% 80%,
    0% 20%
  );
  background: var(--glass);
  overflow: hidden;
}

.geometric-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  bottom: 50px;
  left: -30px;
  background: rgba(15, 18, 25, 0.9);
  backdrop-filter: blur(15px);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}

.floating-card span {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}

.floating-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Section 3: Stellar Journey */
.section-journey {
  position: relative;
  overflow: hidden;
  flex-direction: row-reverse;
}

.journey-content {
  flex: 1;
  z-index: 2;
}

.journey-visual {
  flex: 1.2; /* Give more space to the image */
  display: flex;
  justify-content: flex-start;
  position: relative;
}

.large-img {
  position: relative;
  left: 0;
  width: 100%;
  height: 500px;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

/* Footer - Unique Shape */
footer {
  background: linear-gradient(to top, #0f1219, #1a0b2e);
  padding: 6rem 5% 3rem;
  text-align: center;
  position: relative;
  margin-top: auto;
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%); /* Slanted top */
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-purple),
    var(--accent-gold),
    transparent
  );
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.disclaimer-text {
  max-width: 600px;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.4;
}

.copyright {
  color: #444;
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(15, 18, 25, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  transition: bottom 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border-top: 1px solid var(--glass-border);
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content h3 {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cookie-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 600px;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

@media screen and (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    padding-top: 6rem;
  }

  .hero-content {
    margin-top: 3rem;
  }

  .hero-content p {
    margin: 0 auto 2rem;
  }

  .content-section {
    flex-direction: column;
    text-align: center;
    padding: 4rem 5%;
  }

  .section-wisdom {
    flex-direction: column;
  }

  .visual-harmony,
  .visual-wisdom {
    width: 100%;
    height: 400px;
    margin-top: 2rem;
  }

  .main-img {
    width: 80%;
    left: 10%;
  }

  .secondary-img {
    display: none; /* Simplify on mobile */
  }

  .geometric-mask {
    width: 300px;
    height: 300px;
  }

  .floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }
  .overview-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mask-tilt {
    position: relative;
    transform: none;
    left: auto;
    right: auto;
    margin: 0.5rem 0;
  }
  .overview-card {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 0.5rem;
  }

  .journey-visual {
    width: 100%;
    justify-content: center;
    margin-top: 2rem;
  }

  .large-img {
    height: 350px;
  }

  .cookie-popup {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* Small Screens / Mobile Adaptation (375px) */
@media screen and (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-visual {
    height: 300px;
  }

  .planet {
    width: 80px;
    height: 80px;
  }

  .orbit {
    width: 220px;
    height: 220px;
  }

  .visual-harmony,
  .visual-wisdom {
    height: 350px;
  }

  .decorative-circle {
    width: 280px;
    height: 280px;
  }

  .geometric-mask {
    width: 260px;
    height: 260px;
  }

  .floating-card {
    padding: 1rem 1.5rem;
    bottom: -10px;
    width: 90%; /* Prevent overflow */
    left: 50%;
    transform: translateX(-50%);
  }

  .floating-card span {
    font-size: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  section {
    padding: 4rem 5%; /* Reduce side padding */
    overflow: hidden; /* Prevent content overflow */
  }
}
.overview-visual {
  flex: 1.2;
  position: relative;
  display: grid;
  place-items: center;
}

.mask-tilt {
  position: absolute;
  width: 360px;
  height: 460px;
  overflow: hidden;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  clip-path: polygon(
    10% 0%,
    90% 0%,
    100% 15%,
    100% 85%,
    90% 100%,
    10% 100%,
    0% 85%,
    0% 15%
  );
}

.mask-tilt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mask-tilt:hover img {
  transform: scale(1.08);
}

.tilt-left {
  transform: rotate(-6deg) translateX(-40px);
  left: 0;
  z-index: 1;
}

.tilt-right {
  transform: rotate(6deg) translateX(40px);
  right: 0;
  z-index: 2;
}

.overview-card {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 18, 25, 0.9);
  backdrop-filter: blur(15px);
  padding: 1.2rem 2rem;
  border-radius: 15px;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.overview-card span {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}

.overview-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-wheel {
  flex-direction: row-reverse;
}

.wheel-visual {
  flex: 1.2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wheel-mask {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.wheel-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wheel-labels {
  position: absolute;
  width: 520px;
  height: 520px;
  pointer-events: none;
}

.wl {
  position: absolute;
  font-weight: 700;
  color: var(--accent-cyan);
  text-shadow: 0 0 10px var(--accent-cyan);
}

.wl-aries {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.wl-cancer {
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
}
.wl-libra {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.wl-capricorn {
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
}

.timeline-visual {
  flex: 1.2;
  position: relative;
  padding-left: 60px;
}

.timeline-path {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--accent-gold),
    var(--accent-purple)
  );
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.milestone {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.ms-img {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ms-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-text h3 {
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.ms-text p {
  color: var(--text-muted);
}

/* Section 4: Collage Grid */
.section-collage {
  position: relative;
}

.collage-grid {
  flex: 1.2;
  display: grid;
  grid-template-areas:
    "a b"
    "a c";
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
}

.collage-item {
  position: relative;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collage-item:hover img {
  transform: scale(1.06);
}

.collage-a {
  grid-area: a;
  min-height: 520px;
}
.collage-b {
  grid-area: b;
  min-height: 250px;
}
.collage-c {
  grid-area: c;
  min-height: 250px;
}

.collage-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.4rem 0.7rem;
  font-size: 0.8rem;
  border-radius: 12px;
  background: rgba(15, 18, 25, 0.8);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

@media screen and (max-width: 900px) {
  .mask-tilt {
    width: 260px;
    height: 320px;
  }
  .wheel-mask {
    width: 360px;
    height: 360px;
  }
  .wheel-labels {
    width: 360px;
    height: 360px;
  }
  .timeline-visual {
    padding-left: 0;
    width: 100%;
  }
  .timeline-path {
    display: none;
  }
  .milestone {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .collage-grid {
    grid-template-areas:
      "a"
      "b"
      "c";
    grid-template-columns: 1fr;
  }
  .collage-a {
    min-height: 380px;
  }
  .collage-b,
  .collage-c {
    min-height: 220px;
  }
}

/* Elements & Cycle Section */
.cycle-section {
  background-color: var(--bg-deep);
  padding: 5rem 1.5rem;
  position: relative;
  isolation: isolate;
}

.cycle-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 80%,
    rgba(157, 78, 221, 0.05) 0%,
    transparent 50%
  );
  z-index: -1;
}

.cycle-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Заголовок */
.cycle-header-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
}

.cycle-intro {
  flex: 1;
  min-width: 300px;
}

.cycle-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cycle-lead {
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.cycle-symbol {
  width: 150px;
  height: 150px;
  opacity: 0.7;
  flex-shrink: 0;
}

.cycle-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Вторичный дисклеймер */
.disclaimer-card.secondary {
  background: rgba(5, 7, 10, 0.8);
  border-left-color: var(--accent-cyan);
  margin-bottom: 3.5rem;
}

/* Диаграмма */
.cycle-diagram-container {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 4rem;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.cycle-diagram {
  max-width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border-radius: 10px;
}

.diagram-caption p {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-style: italic;
}

/* Сетка элементов */
.elements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.element-card {
  background: var(--gradient-mystic);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.element-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--element-color, #9d4edd); /* Заполняется JS */
  transition: height 0.4s ease;
}

.element-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: var(--glow);
}

.element-card:hover::before {
  height: 100%;
  opacity: 0.05;
}

.element-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
}

.element-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px currentColor);
}

.element-name-wrapper {
  flex: 1;
}

.element-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-main);
  margin: 0 0 0.3rem 0;
}

.element-pinyin {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.element-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.element-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  position: relative;
  z-index: 2;
}

.element-keyword {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--glass-border);
}

/* Модальное окно элемента */
.element-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s;
}

.element-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(5, 7, 10, 0.85);
  backdrop-filter: blur(5px);
}

.modal-content-container {
  position: relative;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-secondary);
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.element-modal[aria-hidden="false"] .modal-content-container {
  transform: scale(1);
}

.modal-content {
  padding: 2.5rem;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.05);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.modal-icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid var(--glass-border);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text-main);
  margin: 0 0 0.3rem 0;
}

.modal-subtitle {
  font-family: var(--font-body);
  color: var(--accent-cyan);
  font-size: 1.1rem;
  margin: 0;
}

.modal-body {
  margin-bottom: 2rem;
}

.modal-description p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 2.5rem;
}

.modal-relationships {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.relationship-card {
  background: var(--glass);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--glass-border);
}

.relationship-card.nourishes {
  border-top: 4px solid #4caf50; /* Green for generation */
}

.relationship-card.controls {
  border-top: 4px solid #f44336; /* Red for control */
}

.relationship-card h4 {
  font-family: var(--font-heading);
  color: var(--text-main);
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.relationship-card p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.modal-archetype h4 {
  font-family: var(--font-heading);
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.modal-archetype p {
  color: var(--text-main);
  line-height: 1.7;
  font-size: 1.1rem;
}

.modal-footer {
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
}

.modal-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .cycle-header-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .cycle-title {
    font-size: 2.2rem;
  }
  .cycle-lead {
    font-size: 1.1rem;
  }
  .cycle-diagram-container {
    padding: 1.5rem;
  }
  .elements-grid {
    grid-template-columns: 1fr;
  }
  .modal-content {
    padding: 1.8rem;
  }
  .modal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .modal-relationships {
    grid-template-columns: 1fr;
  }
}

/* Interpretation Section */
.interpretation-section {
  background: var(--bg-deep);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.interpretation-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Hero Block */
.interpretation-hero {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.heading-highlight {
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.section-tagline {
  font-family: var(--font-body);
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-disclaimer {
  background: linear-gradient(
    90deg,
    rgba(157, 78, 221, 0.1),
    rgba(0, 243, 255, 0.05)
  );
  border-left: 4px solid var(--accent-purple);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.disclaimer-icon {
  flex-shrink: 0;
  background: var(--accent-purple);
  color: var(--bg-deep);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.hero-disclaimer p {
  margin: 0;
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Two-Column Layout */
.interpretation-content-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .interpretation-content-cols {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.content-col {
  display: flex;
  flex-direction: column;
}

.col-header {
  margin-bottom: 2.2rem;
}

.col-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.col-subtitle {
  font-family: var(--font-body);
  color: var(--accent-cyan);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  margin: 0;
}

/* Compatibility Column */
.compatibility-visual {
  background: var(--bg-secondary);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--glass-border);
  margin-bottom: 2rem;
  text-align: center;
}

.compatibility-chart {
  max-width: 100%;
  height: auto;
  margin-bottom: 1.8rem;
  border-radius: 8px;
}

.visual-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: inline-block;
}

.legend-color.harmony {
  background-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

.legend-color.neutral {
  background-color: var(--accent-purple);
  box-shadow: 0 0 8px var(--accent-purple);
}

.legend-color.challenge {
  background-color: #555;
  box-shadow: 0 0 8px #666;
}

.legend-label {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 600;
}

.compatibility-explanation h4 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.compatibility-explanation p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

/* Timing Column */
.timing-visual {
  background: var(--bg-secondary);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--glass-border);
  margin-bottom: 2rem;
  text-align: center;
}

.timeline-illustration {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.timing-explanation h4 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.timing-explanation p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.timing-list {
  padding-left: 1.5rem;
  margin-bottom: 1.8rem;
}

.timing-list li {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.timing-list strong {
  color: var(--accent-gold);
}

/* Summary Block */
.interpretation-summary {
  position: relative;
  padding: 3.5rem;
  background: var(--gradient-mystic);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  margin-top: 2rem;
  text-align: center;
  overflow: hidden;
}

.summary-ornament {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
  opacity: 0.04;
  z-index: 1;
  border-radius: 50%;
}

.summary-quote {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  border: none;
}

.summary-quote p {
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-footer {
  font-family: var(--font-heading);
  color: var(--accent-gold-dim);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: normal;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 2.3rem;
  }
  .section-tagline {
    font-size: 1.15rem;
  }
  .hero-disclaimer {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    border-radius: 12px;
    border-left: none;
    border-top: 4px solid var(--accent-purple);
  }
  .col-title {
    font-size: 1.8rem;
  }
  .interpretation-summary {
    padding: 2.5rem 1.5rem;
  }
  .summary-quote p {
    font-size: 1.3rem;
  }
  .visual-legend {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
/* Lunar Calendar Section */
.lunar-section {
  background-color: var(--bg-deep);
  color: var(--text-main);
}

/* Hero Section */
.lunar-hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.lunar-hero-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.lunar-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 2rem;
  background: linear-gradient(transparent, rgba(5, 7, 10, 0.9) 70%);
  text-align: center;
}

.lunar-main-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lunar-subtitle {
  font-family: var(--font-body);
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Content Container */
.lunar-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Intro Block */
.lunar-intro-block {
  margin-bottom: 5rem;
}

.intro-text {
  margin-bottom: 2.5rem;
}

.intro-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.intro-paragraph {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.intro-paragraph strong {
  color: var(--accent-gold);
  font-weight: 600;
}

.intro-paragraph em {
  font-style: italic;
  color: var(--accent-cyan);
}

.intro-disclaimer {
  background: rgba(157, 78, 221, 0.08);
  border-left: 4px solid var(--accent-purple);
  padding: 1.8rem;
  border-radius: 0 12px 12px 0;
}

.intro-disclaimer p {
  margin: 0;
  color: var(--text-main);
  font-size: 1.1rem;
  line-height: 1.6;
}

.intro-disclaimer strong {
  color: var(--accent-gold);
}

/* Mechanics Section */
.lunar-mechanics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

@media (max-width: 900px) {
  .lunar-mechanics {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.mechanics-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.mechanics-image {
  width: 100%;
  height: auto;
  display: block;
}

.visual-caption {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.visual-caption p {
  margin: 0;
  color: var(--text-muted);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
}

.mechanics-explanation h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.mechanics-explanation p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.mechanics-explanation strong {
  color: var(--text-main);
  font-weight: 600;
}

/* Phases Grid */
.lunar-phases-grid {
  margin-bottom: 6rem;
}

.phases-grid-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.phases-grid-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  text-align: center;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.phases-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.phase-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.phase-card:hover {
  border-color: var(--accent-purple);
  transform: translateY(-5px);
  box-shadow: var(--glow);
}

.phase-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.phase-number {
  background: var(--gradient-gold);
  color: var(--bg-deep);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

.phase-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-main);
  margin: 0;
  flex-grow: 1;
}

.phase-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.phase-description {
  font-family: var(--font-body);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.phase-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.keyword {
  background: rgba(157, 78, 221, 0.15);
  color: var(--accent-purple);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(157, 78, 221, 0.3);
}

/* Conclusion Section */
.lunar-conclusion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--gradient-mystic);
  padding: 3.5rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

@media (max-width: 900px) {
  .lunar-conclusion {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2.5rem;
  }
}

.conclusion-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.conclusion-image img {
  width: 100%;
  height: auto;
  display: block;
}

.conclusion-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.conclusion-text p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.conclusion-text strong {
  color: var(--text-main);
  font-weight: 600;
}

.conclusion-final {
  font-style: italic;
  color: var(--accent-cyan);
  font-size: 1.2rem;
  border-left: 3px solid var(--accent-gold);
  padding-left: 1.5rem;
  margin-top: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .lunar-main-title {
    font-size: 2.5rem;
  }

  .lunar-subtitle {
    font-size: 1.2rem;
  }

  .lunar-content-container {
    padding: 3rem 1.5rem;
  }

  .intro-heading,
  .phases-grid-title {
    font-size: 2rem;
  }

  .phases-container {
    grid-template-columns: 1fr;
  }

  .lunar-conclusion {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .lunar-hero {
    height: 70vh;
    min-height: 500px;
  }

  .lunar-main-title {
    font-size: 2rem;
  }

  .lunar-subtitle {
    font-size: 1.1rem;
  }
}
.exploration-cta {
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
}

.exploration-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.exploration-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.2);
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(5, 7, 10, 0.9) 0%,
    rgba(15, 18, 25, 0.7) 50%,
    rgba(36, 0, 70, 0.6) 100%
  );
  z-index: 2;
}

.exploration-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.exploration-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.exploration-text {
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.exploration-note {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.exploration-note p {
  margin: 0;
  color: var(--accent-gold-dim);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
}

.exploration-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.exploration-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition);
  text-align: left;
}

.exploration-link:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 25px rgba(0, 243, 255, 0.2);
}

.exploration-link.zodiac-link:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 10px 25px rgba(157, 78, 221, 0.2);
}

.link-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.link-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.link-text strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-main);
}

.link-text span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.exploration-closing {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.exploration-closing p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

@media (max-width: 768px) {
  .exploration-cta {
    padding: 4rem 1.5rem;
  }

  .exploration-title {
    font-size: 2.2rem;
  }

  .exploration-text {
    font-size: 1.1rem;
  }

  .exploration-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .exploration-link {
    padding: 1.5rem;
  }

  .link-icon {
    font-size: 2rem;
  }

  .link-text strong {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .exploration-link {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .link-text {
    text-align: center;
  }
}

.reflection-section {
  background-color: var(--bg-deep);
  color: var(--text-main);
}

.reflection-intro {
  margin-bottom: 3rem;
}

.intro-image {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(
    to bottom,
    rgba(5, 7, 10, 0.7),
    rgba(15, 18, 25, 0.9)
  );
}

.image-overlay h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  max-width: 800px;
}

.image-overlay p {
  font-family: var(--font-body);
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text-main);
  max-width: 700px;
}

.intro-content {
  max-width: 900px;
  margin: -3rem auto 0;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.content-text {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.content-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.content-text p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.content-text strong {
  color: var(--accent-cyan);
  font-weight: 600;
}

.content-note {
  background: rgba(255, 215, 0, 0.08);
  border-left: 4px solid var(--accent-gold);
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
  margin-top: 2rem;
}

.content-note p {
  margin: 0;
  color: var(--accent-gold-dim);
  font-size: 1.1rem;
  line-height: 1.6;
}

.reflection-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.quiz-form {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quiz-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.form-group select {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-deep);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.2rem;
}

.form-group select:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 2px rgba(0, 243, 255, 0.2);
}

.form-group select:hover {
  border-color: var(--accent-gold);
}

.form-group option {
  background: var(--bg-deep);
  color: var(--text-main);
  padding: 1rem;
}

.form-submit-note {
  background: rgba(157, 78, 221, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2.5rem 0;
  border: 1px solid rgba(157, 78, 221, 0.2);
}

.form-submit-note p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}

.form-submit {
  text-align: center;
}

.quiz-button {
  background: var(--gradient-gold);
  color: var(--bg-deep);
  border: none;
  border-radius: 12px;
  padding: 1.2rem 3rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.quiz-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
  .intro-image {
    height: 60vh;
    min-height: 400px;
  }

  .image-overlay h1 {
    font-size: 2.5rem;
  }

  .image-overlay p {
    font-size: 1.2rem;
  }

  .intro-content {
    padding: 0 1.5rem;
  }

  .content-text {
    padding: 2rem;
  }

  .content-text h2 {
    font-size: 1.8rem;
  }

  .reflection-form-container {
    padding: 0 1.5rem 3rem;
  }

  .quiz-form {
    padding: 2rem;
  }

  .quiz-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .image-overlay h1 {
    font-size: 2rem;
  }

  .image-overlay p {
    font-size: 1.1rem;
  }

  .content-text {
    padding: 1.5rem;
  }

  .quiz-form {
    padding: 1.5rem;
  }

  .quiz-button {
    width: 100%;
    padding: 1rem 2rem;
  }
}
.contact-section {
  background: var(--gradient-mystic);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/contact-astrology-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-header p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.custom-contact-form {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-alert {
  padding: 1.2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.success-alert {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
}

.error-alert {
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #f44336;
}

.form-group {
  width: 100%;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-deep);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 2px rgba(0, 243, 255, 0.2);
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
  border-color: var(--accent-gold);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.2rem;
  padding-right: 3rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.checkbox-label:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--glass-border);
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.3rem;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  accent-color: var(--accent-purple);
}

.checkbox-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-family: var(--font-body);
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.5;
}

.checkbox-subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.policy-link {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: var(--transition);
}

.policy-link:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.consent-section {
  margin: 0.5rem 0;
}

.form-submit {
  text-align: center;
  margin-top: 1rem;
}

.submit-button {
  background: var(--gradient-gold);
  color: var(--bg-deep);
  border: none;
  border-radius: 12px;
  padding: 1.2rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  min-width: 300px;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.submit-button:active {
  transform: translateY(-1px);
}

.form-footer {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 1rem;
  }

  .contact-header h2 {
    font-size: 2.2rem;
  }

  .contact-header p {
    font-size: 1.1rem;
  }

  .custom-contact-form {
    padding: 2rem;
  }

  .submit-button {
    min-width: 100%;
    padding: 1rem 2rem;
  }

  .checkbox-label {
    padding: 0.8rem;
  }
}
.thanks-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-content {
  width: 100%;
  text-align: center;
}

.thanks-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.thanks-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.2);
}

.thanks-card {
  background: var(--gradient-mystic);
  border-radius: 24px;
  padding: 4rem 3rem;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.thanks-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
  animation: pulse 15s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }
  100% {
    transform: scale(1.1);
    opacity: 0.15;
  }
}

.thanks-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  padding: 1.5rem;
}

.thanks-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.thanks-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.thanks-subtitle {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thanks-message {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 2.5rem;
  text-align: left;
}

.thanks-message p {
  margin-bottom: 1.2rem;
}

.thanks-disclaimer {
  background: rgba(0, 243, 255, 0.08);
  border-left: 4px solid var(--accent-cyan);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem;
  margin: 2.5rem 0;
  text-align: left;
}

.thanks-disclaimer p {
  margin: 0;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.6;
}

.thanks-disclaimer strong {
  color: var(--accent-cyan);
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.thanks-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  min-width: 200px;
  justify-content: center;
}

.thanks-button:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
  box-shadow: var(--glow);
}

.thanks-button.primary {
  background: var(--gradient-gold);
  color: var(--bg-deep);
  border: none;
}

.thanks-button.primary:hover {
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.button-icon {
  font-size: 1.5rem;
}

.thanks-quote {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.thanks-quote p {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .thanks-container {
    padding: 1.5rem;
  }

  .thanks-card {
    padding: 3rem 2rem;
  }

  .thanks-title {
    font-size: 2.5rem;
  }

  .thanks-subtitle {
    font-size: 1.2rem;
  }

  .thanks-actions {
    flex-direction: column;
    align-items: center;
  }

  .thanks-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .thanks-card {
    padding: 2rem 1.5rem;
  }

  .thanks-title {
    font-size: 2rem;
  }

  .thanks-subtitle {
    font-size: 1.1rem;
  }

  .thanks-message {
    font-size: 1.1rem;
  }
}
.policy-section {
  background-color: var(--bg-deep);
  color: var(--text-main);
  padding: 4rem 1.5rem;
  min-height: 100vh;
}

.policy-container {
  max-width: 1000px;
  margin: 0 auto;
}

.policy-header {
  text-align: center;
  margin-bottom: 3rem;
}

.policy-header h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.policy-subtitle {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.policy-content {
  background: var(--bg-secondary);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.policy-card {
  position: relative;
}

.policy-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
}

.policy-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.2);
}

.policy-text {
  position: relative;
  z-index: 2;
  padding: 4rem;
  background: rgba(5, 7, 10, 0.85);
}

.policy-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent-cyan);
  margin: 2.5rem 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--glass-border);
}

.policy-text h2:first-child {
  margin-top: 0;
}

.policy-text p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.policy-list {
  margin: 1.5rem 0 2rem 2rem;
  list-style-type: disc;
}

.policy-list li {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
}

.policy-list strong {
  color: var(--text-main);
  font-weight: 600;
}

.contact-details {
  background: rgba(157, 78, 221, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 3rem;
  border: 1px solid rgba(157, 78, 221, 0.2);
}

.contact-details h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent-purple);
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.contact-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--accent-gold-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.5;
}

.contact-note {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(157, 78, 221, 0.3);
}

.contact-note em {
  font-style: italic;
  color: var(--text-muted);
}

.contact-note strong {
  color: var(--accent-cyan);
  font-weight: 600;
}

@media (max-width: 768px) {
  .policy-section {
    padding: 2.5rem 1rem;
  }

  .policy-header h1 {
    font-size: 2.3rem;
  }

  .policy-subtitle {
    font-size: 1.1rem;
  }

  .policy-text {
    padding: 2.5rem 1.8rem;
  }

  .policy-text h2 {
    font-size: 1.6rem;
  }

  .policy-text p,
  .policy-list li {
    font-size: 1.05rem;
  }

  .contact-details {
    padding: 1.8rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .policy-text {
    padding: 2rem 1.2rem;
  }

  .policy-header h1 {
    font-size: 2rem;
  }

  .policy-list {
    margin-left: 1.2rem;
  }
}
.cookie-policy-section {
  background-color: var(--bg-deep);
  color: var(--text-main);
  padding: 4rem 1.5rem;
  min-height: 100vh;
}

.cookie-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cookie-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cookie-header h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cookie-subtitle {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.cookie-content {
  background: var(--bg-secondary);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cookie-card {
  position: relative;
}

.cookie-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
}

.cookie-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.2);
}

.cookie-text {
  position: relative;
  z-index: 2;
  padding: 4rem;
  background: rgba(5, 7, 10, 0.85);
}

.cookie-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent-cyan);
  margin: 2.5rem 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--glass-border);
}

.cookie-text h2:first-child {
  margin-top: 0;
}

.cookie-text p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .cookie-policy-section {
    padding: 2.5rem 1rem;
  }

  .cookie-header h1 {
    font-size: 2.3rem;
  }

  .cookie-subtitle {
    font-size: 1.1rem;
  }

  .cookie-text {
    padding: 2.5rem 1.8rem;
  }

  .cookie-text h2 {
    font-size: 1.6rem;
  }

  .cookie-text p {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .cookie-text {
    padding: 2rem 1.2rem;
  }

  .cookie-header h1 {
    font-size: 2rem;
  }
}

.terms-section {
  background-color: var(--bg-deep);
  color: var(--text-main);
  padding: 4rem 1.5rem;
  min-height: 100vh;
}

.terms-container {
  max-width: 1000px;
  margin: 0 auto;
}

.terms-header {
  text-align: center;
  margin-bottom: 3rem;
}

.terms-header h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.terms-subtitle {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.terms-content {
  background: var(--bg-secondary);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.terms-card {
  position: relative;
}

.terms-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
}

.terms-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.2);
}

.terms-text {
  position: relative;
  z-index: 2;
  padding: 4rem;
  background: rgba(5, 7, 10, 0.85);
}

.terms-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent-cyan);
  margin: 2.5rem 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--glass-border);
}

.terms-text h2:first-child {
  margin-top: 0;
}

.terms-text p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .terms-section {
    padding: 2.5rem 1rem;
  }

  .terms-header h1 {
    font-size: 2.3rem;
  }

  .terms-subtitle {
    font-size: 1.1rem;
  }

  .terms-text {
    padding: 2.5rem 1.8rem;
  }

  .terms-text h2 {
    font-size: 1.6rem;
  }

  .terms-text p {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .terms-text {
    padding: 2rem 1.2rem;
  }

  .terms-header h1 {
    font-size: 2rem;
  }
}
.disclaimer-section {
  background-color: var(--bg-deep);
  color: var(--text-main);
  padding: 4rem 1.5rem;
  min-height: 100vh;
}

.disclaimer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.disclaimer-header {
  text-align: center;
  margin-bottom: 3rem;
}

.disclaimer-header h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.disclaimer-subtitle {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.disclaimer-content {
  background: var(--bg-secondary);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.disclaimer-card {
  position: relative;
}

.disclaimer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
}

.disclaimer-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.2);
}

.disclaimer-section .disclaimer-text {
  position: relative;
  z-index: 2;
  padding: 4rem;
  background: rgba(5, 7, 10, 0.85);
  max-width: none;
}

.disclaimer-section .disclaimer-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent-cyan);
  margin: 2.5rem 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--glass-border);
}

.disclaimer-section .disclaimer-text h2:first-child {
  margin-top: 0;
}

.disclaimer-section .disclaimer-text p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 2.5rem 1rem;
  }

  .disclaimer-header h1 {
    font-size: 2.3rem;
  }

  .disclaimer-subtitle {
    font-size: 1.1rem;
  }

  .disclaimer-section .disclaimer-text {
    padding: 2.5rem 1.8rem;
  }

  .disclaimer-section .disclaimer-text h2 {
    font-size: 1.6rem;
  }

  .disclaimer-section .disclaimer-text p {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .disclaimer-section .disclaimer-text {
    padding: 2rem 1.2rem;
  }

  .disclaimer-section .disclaimer-header h1 {
    font-size: 2rem;
  }
}
