:root {
  --deep-blue: #1a2a3a;
  --gold: #d4af37;
  --light-gold: #e6c569;
  --cream: #f5f0e6;
  --dark-brown: #3a2e1f;
  --medium-brown: #5d4a33;
  --light-brown: #a8947f;
  --shadow: 0 4px 12px rgba(26, 42, 58, 0.15);
  --transition: all 0.3s ease;
}

:root {
  --deep-blue: #1a2a3a;
  --gold: #d4af37;
  --light-gold: #e6c569;
  --cream: #f5f0e6;
  --dark-brown: #3a2e1f;
  --medium-brown: #5d4a33;
  --light-brown: #a8947f;
  --shadow: 0 4px 12px rgba(26, 42, 58, 0.15);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(180deg, #f8f5f0 0%, #f0e9df 100%);
  color: var(--dark-brown);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.main-header {
  position: relative;

  background: linear-gradient(
    135deg,
    rgba(26, 42, 58, 0.95) 0%,
    rgba(45, 65, 85, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.logo-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--deep-blue), var(--medium-brown));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.logo-symbol {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: bold;
  transform: rotate(15deg);
}

.site-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--light-gold), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
  position: relative;
}

.site-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.main-nav {
  position: relative;
  z-index: 2;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  font-weight: 600;
}

.nav-list a {
  color: var(--cream);
  padding: 0.5rem 0.3rem;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-list a:hover {
  color: var(--light-gold);
}

.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  position: relative;
  z-index: 3;
}

.burger-menu span {
  width: 26px;
  height: 3px;
  background-color: var(--gold);
  margin: 3px 0;
  border-radius: 2px;
  transition: var(--transition);
}

.main-content {
  flex: 1;
  padding: 2.5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-section {
  position: relative;
  background:
    linear-gradient(rgba(26, 42, 58, 0.85), rgba(45, 65, 85, 0.9)),
    url("../img/hero-bg.jpg") center/cover no-repeat;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.hero-content {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  color: var(--cream);
}

.hero-title {
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to right, var(--light-gold), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: var(--dark-brown);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.6s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.7);
}

.cta-button:hover::before {
  left: 100%;
}

.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.feature-image {
  height: 200px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.1);
}

.feature-content {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--dark-brown);
  position: relative;
  padding-bottom: 0.5rem;
}

.feature-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.feature-text {
  color: var(--medium-brown);
  margin-bottom: 1.5rem;
  flex: 1;
}

.feature-link {
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.feature-link::after {
  content: "→";
  display: inline-block;
  transition: var(--transition);
}

.feature-link:hover::after {
  transform: translateX(5px);
}

.wisdom-section {
  background: linear-gradient(
    135deg,
    rgba(26, 42, 58, 0.92) 0%,
    rgba(45, 65, 85, 0.88) 100%
  );
  border-radius: 20px;
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: var(--cream);
}

.wisdom-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 70%
  );
  z-index: 0;
}

.wisdom-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.wisdom-quote {
  font-size: 2.2rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 2rem;
}

.wisdom-quote::before,
.wisdom-quote::after {
  content: '"';
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
}

.wisdom-quote::before {
  top: -20px;
  left: 0;
}

.wisdom-quote::after {
  bottom: -40px;
  right: 0;
}

.wisdom-author {
  font-size: 1.3rem;
  color: var(--light-gold);
  margin-bottom: 2rem;
}

.disclaimer-text {
  font-size: 0.95rem;
  color: var(--light-brown);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}

/* Дополнительная секция 1 */
.additional-section-1 {
  padding: 5rem 1.5rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url("../img/section1.jpg") center/cover fixed;
  margin-bottom: 3rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.additional-section-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  z-index: 0;
}

.additional-section-1-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.additional-section-1-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-brown);
  position: relative;
  display: inline-block;
}

.additional-section-1-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.additional-section-1-text {
  font-size: 1.1rem;
  color: var(--medium-brown);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.additional-section-1-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img {
  height: 180px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img img {
  transform: scale(1.1);
}

.card-content {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--dark-brown);
  position: relative;
}

.card-text {
  color: var(--medium-brown);
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Дополнительная секция 2 */
.additional-section-2 {
  padding: 5rem 1.5rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url("../img/section2.jpg") center/cover fixed;
  margin-bottom: 3rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.additional-section-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  z-index: 0;
}

.additional-section-2-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.additional-section-2-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-brown);
  position: relative;
  display: inline-block;
}

.additional-section-2-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.additional-section-2-text {
  font-size: 1.1rem;
  color: var(--medium-brown);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.timeline-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 1.8rem;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--cream);
  z-index: 2;
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-date {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.timeline-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark-brown);
}

.timeline-text {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.6;
}

.main-footer {
  background: linear-gradient(180deg, var(--deep-blue) 0%, #0f1a25 100%);
  color: var(--cream);
  padding: 3rem 1.5rem 2rem;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: radial-gradient(
    circle at top center,
    transparent 0%,
    rgba(26, 42, 58, 0.9) 70%
  );
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-circle {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--light-gold);
}

.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-description {
  font-size: 0.95rem;
  color: var(--light-brown);
  line-height: 1.7;
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--light-gold);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-list a {
  color: var(--cream);
  padding: 0.3rem 0;
  border-left: 2px solid transparent;
  padding-left: 10px;
}

.footer-links-list a:hover {
  color: var(--light-gold);
  border-left-color: var(--gold);
  transform: translateX(5px);
}

.footer-notice {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 0.9rem;
  color: var(--light-brown);
  max-width: 800px;
  margin: 0 auto;
}

.star-decoration {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.7;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(
    145deg,
    rgba(26, 42, 58, 0.95),
    rgba(45, 65, 85, 0.9)
  );
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  max-width: 400px;
  transition: var(--transition);
  transform: translateY(100px);
  opacity: 0;
  display: none;
}

.cookie-popup.visible {
  display: block;
  animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-popup::before {
  content: "✦";
  position: absolute;
  top: -12px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--gold);
}

.popup-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.popup-content p {
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.5;
}

.popup-buttons {
  display: flex;
  gap: 12px;
}

.popup-buttons button {
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  flex: 1;
  transition: var(--transition);
  font-size: 0.95rem;
}

#acceptCookies {
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: var(--dark-brown);
  box-shadow: 0 3px 8px rgba(212, 175, 55, 0.4);
}

#acceptCookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(212, 175, 55, 0.6);
}

#declineCookies {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  border: 1px solid var(--gold);
}

#declineCookies:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(26, 42, 58, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav.active .nav-list {
    flex-direction: column;
    gap: 1rem;
  }

  .burger-menu {
    display: flex;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
  }

  .site-title {
    font-size: 1.6rem;
  }

  .main-footer {
    padding: 2.5rem 1rem 1.5rem;
  }

  .footer-container {
    gap: 2rem;
  }

  .footer-notice {
    font-size: 0.85rem;
  }

  .popup-buttons {
    flex-direction: column;
  }

  .cookie-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .wisdom-quote {
    font-size: 1.6rem;
  }

  .wisdom-quote::before,
  .wisdom-quote::after {
    font-size: 2.5rem;
  }

  .additional-section-1,
  .additional-section-2 {
    padding: 3rem 1rem;
  }

  .additional-section-1-title,
  .additional-section-2-title {
    font-size: 2rem;
  }

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

  .timeline-item {
    width: 100%;
    max-width: 100%;
  }
}

.hero-section-2026 {
  background:
    linear-gradient(rgba(26, 42, 58, 0.85), rgba(45, 65, 85, 0.9)),
    url("/img/hero-bg-2026.jpg") center/cover no-repeat;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-content-2026 {
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--cream);
  text-align: center;
}

.hero-title-2026 {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  background: linear-gradient(to right, var(--light-gold), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-2026 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.astrology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.astrology-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.astrology-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.astrology-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gold);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
}

.card-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--dark-brown);
  text-align: center;
}

.card-content {
  color: var(--medium-brown);
  line-height: 1.7;
}

.monthly-section {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08) 0%,
    rgba(230, 197, 105, 0.05) 100%
  );
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.monthly-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.03) 0%,
    transparent 70%
  );
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.4rem;
  color: var(--dark-brown);
  margin-bottom: 0.8rem;
  background: linear-gradient(to right, var(--dark-brown), var(--medium-brown));
  -webkit-background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--medium-brown);
  max-width: 700px;
  margin: 0 auto;
}

.months-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
  position: relative;
  z-index: 2;
}

.month-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.month-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.month-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.month-number {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--dark-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.month-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-brown);
}

.month-content {
  color: var(--medium-brown);
  line-height: 1.6;
  font-size: 0.95rem;
}

.disclaimer-section {
  background: linear-gradient(
    135deg,
    rgba(26, 42, 58, 0.92) 0%,
    rgba(45, 65, 85, 0.88) 100%
  );
  border-radius: 18px;
  padding: 2.5rem;
  text-align: center;
  color: var(--cream);
  margin-bottom: 3rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.disclaimer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.disclaimer-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.disclaimer-highlight {
  color: var(--light-gold);
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero-title-2026 {
    font-size: 2.4rem;
  }

  .hero-subtitle-2026 {
    font-size: 1.1rem;
  }

  .monthly-section {
    padding: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .hero-section-2026 {
    min-height: 400px;
  }

  .hero-title-2026 {
    font-size: 2rem;
  }

  .monthly-section {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

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

.chinese-hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 3rem;
  padding: 4rem 2rem;
  border-radius: 24px;
  margin-bottom: 4rem;
  background:
    linear-gradient(135deg, rgba(26, 42, 58, 0.9), rgba(93, 74, 51, 0.9)),
    url("../img/chinese-animals-2026.jpg") center/cover no-repeat;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.chinese-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(212, 175, 55, 0.3) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.chinese-hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.chinese-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: rgba(245, 240, 230, 0.1);
  border: 1px solid rgba(230, 197, 105, 0.7);
  backdrop-filter: blur(6px);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chinese-hero-title {
  font-size: 2.6rem;
  line-height: 1.2;
  background: linear-gradient(to right, var(--light-gold), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.chinese-hero-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.9;
}

.chinese-hero-image {
  position: relative;
  z-index: 2;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(230, 197, 105, 0.6);
}

.chinese-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 20%,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.chinese-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

.chinese-hero-image:hover img {
  transform: scale(1.1);
}

.chinese-animals-grid-section {
  margin-bottom: 4rem;
  padding: 4rem 2rem;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(245, 240, 230, 0.98) 0%,
    rgba(230, 197, 105, 0.12) 50%,
    rgba(26, 42, 58, 0.06) 100%
  );
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.chinese-animals-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.chinese-animals-title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--dark-brown);
}

.chinese-animals-intro {
  font-size: 1.05rem;
  color: var(--medium-brown);
  line-height: 1.7;
}

.chinese-animals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.chinese-animal-card {
  position: relative;
  padding: 1.8rem 1.6rem 1.8rem 1.8rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  border-left: 4px solid rgba(212, 175, 55, 0.7);
  overflow: hidden;
  transition: var(--transition);
}

.chinese-animal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(212, 175, 55, 0.12) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.chinese-animal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.25);
}

.chinese-animal-card:hover::before {
  opacity: 1;
}

.chinese-animal-symbol {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--light-brown);
  margin-bottom: 0.6rem;
}

.chinese-animal-name {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--dark-brown);
}

.chinese-animal-text {
  font-size: 0.97rem;
  color: var(--medium-brown);
  line-height: 1.7;
}

.chinese-elements-section {
  margin-bottom: 4rem;
  padding: 4rem 2rem;
  border-radius: 24px;
  background: radial-gradient(
    circle at 10% 0%,
    rgba(212, 175, 55, 0.22) 0%,
    rgba(26, 42, 58, 0.96) 40%,
    #0f1a25 100%
  );
  color: var(--cream);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.chinese-elements-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(212, 175, 55, 0.18) 0%,
      transparent 60%
    );
  opacity: 0.9;
  pointer-events: none;
}

.chinese-elements-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 3fr);
  gap: 3rem;
  align-items: center;
}

.chinese-elements-image {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(230, 197, 105, 0.65);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.55);
  background: rgba(0, 0, 0, 0.25);
}

.chinese-elements-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}

.chinese-elements-image:hover img {
  transform: scale(1.08);
}

.chinese-elements-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.chinese-elements-title {
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.chinese-elements-intro {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.9;
}

.chinese-elements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.4rem;
}

.chinese-element-card {
  background: rgba(10, 16, 25, 0.8);
  border-radius: 16px;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(230, 197, 105, 0.5);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.chinese-element-name {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--light-gold);
}

.chinese-element-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.92);
}

.chinese-elements-disclaimer {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.85);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.moon-hero-section {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 3rem;
  padding: 4rem 2rem;
  margin-bottom: 4rem;
  border-radius: 24px;
  background: radial-gradient(
      circle at 10% 0%,
      rgba(230, 197, 105, 0.3) 0%,
      transparent 55%
    ),
    linear-gradient(145deg, #1a2133 0%, #101827 60%, #020617 100%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  position: relative;
}

.moon-hero-content {
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 620px;
}

.moon-hero-title {
  font-size: 2.6rem;
  line-height: 1.2;
  background: linear-gradient(to right, var(--light-gold), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.moon-hero-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.92);
}

.moon-hero-image {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.moon-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 20%,
    rgba(255, 255, 255, 0.22) 0%,
    transparent 55%
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

.moon-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

.moon-hero-image:hover img {
  transform: scale(1.1);
}

.moon-phases-section {
  margin-bottom: 4rem;
  padding: 4rem 2rem;
  border-radius: 24px;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(26, 42, 58, 0.12) 0%,
      transparent 55%
    ),
    linear-gradient(135deg, #f5f0e6 0%, #e8ddcf 50%, #f5f0e6 100%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.moon-phases-header {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}

.moon-phases-title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--dark-brown);
}

.moon-phases-intro {
  font-size: 1.05rem;
  color: var(--medium-brown);
  line-height: 1.7;
}

.moon-phases-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 3fr);
  gap: 3rem;
  align-items: center;
}

.moon-phases-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.moon-phases-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.6s ease;
}

.moon-phases-image:hover img {
  transform: scale(1.08);
}

.moon-phases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.8rem;
}

.moon-phase-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
  border-top: 4px solid rgba(26, 42, 58, 0.8);
}

.moon-phase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(212, 175, 55, 0.12) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.moon-phase-card:hover::before {
  opacity: 1;
}

.moon-phase-name {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: var(--dark-brown);
}

.moon-phase-text {
  font-size: 0.97rem;
  color: var(--medium-brown);
  line-height: 1.7;
}

.moon-calendar-section {
  margin-bottom: 4rem;
  padding: 4rem 2rem;
  border-radius: 24px;
  background: linear-gradient(
      135deg,
      rgba(230, 197, 105, 0.18) 0%,
      rgba(15, 26, 37, 0.96) 45%,
      #020617 100%
    );
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.moon-calendar-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(26, 42, 58, 0.85) 0%,
      transparent 60%
    );
  opacity: 0.85;
  pointer-events: none;
}

.moon-calendar-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 3rem;
  align-items: center;
}

.moon-calendar-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.moon-calendar-title {
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.moon-calendar-intro {
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.92);
}

.moon-calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.moon-calendar-column {
  background: rgba(8, 14, 24, 0.8);
  border-radius: 16px;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(230, 197, 105, 0.5);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.moon-calendar-column-title {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--light-gold);
}

.moon-calendar-column-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.9);
}

.moon-calendar-disclaimer {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.85);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.moon-calendar-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(230, 197, 105, 0.65);
}

.moon-calendar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}

.moon-calendar-image:hover img {
  transform: scale(1.08);
}
@media (max-width: 1024px) {
  .chinese-hero-section {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
    padding: 3rem 1.5rem;
  }

  .chinese-hero-title {
    font-size: 2.2rem;
  }

  .chinese-animals-grid-section,
  .chinese-elements-section {
    padding: 3rem 1.5rem;
  }

  .chinese-elements-layout {
    grid-template-columns: 1.1fr 1.6fr;
  }

  .moon-hero-section {
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 2fr);
    padding: 3rem 1.5rem;
  }

  .moon-phases-section,
  .moon-calendar-section {
    padding: 3rem 1.5rem;
  }

  .moon-phases-layout,
  .moon-calendar-layout {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  }
}

@media (max-width: 768px) {
  .chinese-hero-section {
    grid-template-columns: 1fr;
    padding: 3rem 1.2rem;
    row-gap: 2.5rem;
  }

  .chinese-hero-image {
    order: -1;
  }

  .chinese-hero-title {
    font-size: 2rem;
  }

  .chinese-animals-title,
  .chinese-elements-title {
    font-size: 2rem;
  }

  .chinese-animals-grid-section,
  .chinese-elements-section {
    padding: 2.5rem 1.2rem;
  }

  .chinese-elements-layout {
    grid-template-columns: 1fr;
  }

  .moon-hero-section {
    grid-template-columns: 1fr;
    padding: 3rem 1.2rem;
    row-gap: 2.5rem;
  }

  .moon-hero-title {
    font-size: 2rem;
  }

  .moon-phases-title,
  .moon-calendar-title {
    font-size: 2rem;
  }

  .moon-phases-section,
  .moon-calendar-section {
    padding: 2.5rem 1.2rem;
  }

  .moon-phases-layout,
  .moon-calendar-layout {
    grid-template-columns: 1fr;
  }

  .moon-calendar-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .chinese-hero-section {
    padding: 2.5rem 1rem;
  }

  .chinese-hero-title {
    font-size: 1.8rem;
  }

  .chinese-animals-title,
  .chinese-elements-title {
    font-size: 1.7rem;
  }

  .chinese-animals-grid-section,
  .chinese-elements-section {
    padding: 2rem 1rem;
  }

  .moon-hero-section {
    padding: 2.5rem 1rem;
  }

  .moon-hero-title {
    font-size: 1.8rem;
  }

  .moon-phases-title,
  .moon-calendar-title {
    font-size: 1.7rem;
  }

  .moon-phases-section,
  .moon-calendar-section {
    padding: 2rem 1rem;
  }
}

.personal-intro-section {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 3fr);
  gap: 3rem;
  padding: 4rem 2rem;
  margin-bottom: 3.5rem;
  border-radius: 24px;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(212, 175, 55, 0.2) 0%,
      transparent 55%
    ),
    linear-gradient(135deg, #f5f0e6 0%, #e8ddcf 50%, #f5f0e6 100%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  align-items: center;
}

.personal-intro-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.personal-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.6s ease;
}

.personal-intro-image:hover img {
  transform: scale(1.07);
}

.personal-intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.personal-intro-title {
  font-size: 2.4rem;
  color: var(--dark-brown);
}

.personal-intro-text {
  font-size: 1.02rem;
  color: var(--medium-brown);
  line-height: 1.8;
}

.personal-form-section {
  margin-bottom: 4rem;
  padding: 3.5rem 2rem;
  border-radius: 24px;
  background: linear-gradient(
      135deg,
      rgba(26, 42, 58, 0.06) 0%,
      rgba(230, 197, 105, 0.12) 40%,
      rgba(245, 240, 230, 0.98) 100%
    );
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.quiz-form {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.quiz-title {
  font-size: 2rem;
  margin-bottom: 1.8rem;
  text-align: center;
  color: var(--dark-brown);
}

.form-group {
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 600;
  color: var(--dark-brown);
}

.form-group select,
.form-group input {
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(26, 42, 58, 0.2);
  background: #fdfaf5;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group select:focus,
.form-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
  background: #fffdf8;
}

.form-group textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(26, 42, 58, 0.2);
  background: #fdfaf5;
  font-size: 0.95rem;
  outline: none;
  resize: vertical;
  min-height: 140px;
  transition: var(--transition);
}

.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
  background: #fffdf8;
}

.form-error {
  margin-bottom: 1.2rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(176, 38, 38, 0.08);
  border: 1px solid rgba(176, 38, 38, 0.45);
  color: #8a1c1c;
  font-size: 0.9rem;
}

.form-group-inline {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--medium-brown);
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.15rem;
}

.form-hint p {
  font-size: 0.9rem;
  color: var(--medium-brown);
  line-height: 1.6;
}

.form-submit-wrapper {
  text-align: center;
  margin-top: 1.6rem;
}

.quiz-button {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: var(--dark-brown);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.5);
  transition: var(--transition);
}

.quiz-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.65);
}

.quiz-button:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(212, 175, 55, 0.4);
}

@media (max-width: 1024px) {
  .personal-intro-section {
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 2fr);
    padding: 3.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .personal-intro-section {
    grid-template-columns: 1fr;
    padding: 3rem 1.2rem;
  }

  .personal-intro-title {
    font-size: 2rem;
  }

  .personal-form-section {
    padding: 3rem 1.2rem;
  }

  .quiz-form {
    padding: 2.2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .personal-intro-section {
    padding: 2.5rem 1rem;
  }

  .personal-intro-title {
    font-size: 1.8rem;
  }

  .personal-form-section {
    padding: 2.2rem 1rem;
  }

  .quiz-form {
    padding: 2rem 1.2rem;
  }
}

.horoscope-hero-2026 {
  position: relative;
  background: linear-gradient(
      135deg,
      rgba(26, 42, 58, 0.92) 0%,
      rgba(45, 65, 85, 0.88) 100%
    ),
    url("../img/horoskop-2026-hero.jpg") center/cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
}

.horoscope-hero-2026::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(212, 175, 55, 0.15) 0%,
    transparent 60%
  );
  z-index: 1;
}

.horoscope-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--cream);
}

.horoscope-hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--light-gold), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  font-weight: 700;
}

.horoscope-hero-text {
  font-size: 1.3rem;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 750px;
  margin: 0 auto;
}

.zodiac-overview-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(245, 240, 230, 0.95) 100%
  );
  border-radius: 24px;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.zodiac-overview-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.zodiac-overview-image {
  flex: 0 0 45%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.zodiac-overview-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.2);
}

.zodiac-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.zodiac-overview-image:hover img {
  transform: scale(1.05);
}

.zodiac-overview-content {
  flex: 1;
}

.zodiac-overview-title {
  font-size: 2.8rem;
  color: var(--dark-brown);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.zodiac-overview-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.zodiac-overview-text {
  font-size: 1.1rem;
  color: var(--medium-brown);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.zodiac-overview-text:last-child {
  margin-bottom: 0;
}

.astrology-wisdom-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(245, 240, 230, 0.95) 0%,
    rgba(255, 255, 255, 0.98) 100%
  );
  border-radius: 24px;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.astrology-wisdom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-direction: row-reverse;
}

.astrology-wisdom-content {
  flex: 1;
}

.astrology-wisdom-title {
  font-size: 2.8rem;
  color: var(--dark-brown);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.astrology-wisdom-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.astrology-wisdom-text {
  font-size: 1.1rem;
  color: var(--medium-brown);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.astrology-wisdom-text:last-child {
  margin-bottom: 0;
}

.astrology-wisdom-image {
  flex: 0 0 45%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.astrology-wisdom-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.2);
}

.astrology-wisdom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.astrology-wisdom-image:hover img {
  transform: scale(1.05);
}

.planetary-influences-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 58, 0.03) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
  border-radius: 24px;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.planetary-influences-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(26, 42, 58, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.planetary-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.planetary-header {
  text-align: center;
  margin-bottom: 4rem;
}

.planetary-title {
  font-size: 2.8rem;
  color: var(--dark-brown);
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.planetary-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.planetary-subtitle {
  font-size: 1.15rem;
  color: var(--medium-brown);
  max-width: 750px;
  margin: 2rem auto 0;
  line-height: 1.7;
}

.planetary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 2rem;
  grid-template-areas:
    "large large card2"
    "large large card3"
    "card4 card5 card6"
    "card7 card7 card7";
}

.planetary-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.planetary-card-large {
  grid-area: large;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.planetary-card:nth-child(2) {
  grid-area: card2;
}

.planetary-card:nth-child(3) {
  grid-area: card3;
}

.planetary-card:nth-child(4) {
  grid-area: card4;
}

.planetary-card:nth-child(5) {
  grid-area: card5;
}

.planetary-card:nth-child(6) {
  grid-area: card6;
}

.planetary-card:nth-child(7) {
  grid-area: card7;
  min-height: 200px;
}

.planetary-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05) 0%,
    rgba(26, 42, 58, 0.05) 100%
  );
  opacity: 0;
  transition: var(--transition);
}

.planetary-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.planetary-card:hover .planetary-card-bg {
  opacity: 1;
}

.planetary-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.planetary-icon-large {
  font-size: 5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-align: center;
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.planetary-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: center;
  filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.3));
}

.planetary-card-title {
  font-size: 1.8rem;
  color: var(--dark-brown);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
}

.planetary-card-large .planetary-card-title {
  font-size: 2.2rem;
}

.planetary-card-text {
  color: var(--medium-brown);
  line-height: 1.7;
  text-align: center;
  flex: 1;
  font-size: 1rem;
}

.planetary-card-large .planetary-card-text {
  font-size: 1.1rem;
}

.year-timeline-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(245, 240, 230, 0.95) 100%
  );
  border-radius: 24px;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.year-timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
}

.timeline-2026-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.timeline-header-2026 {
  text-align: center;
  margin-bottom: 4rem;
}

.timeline-title-2026 {
  font-size: 2.8rem;
  color: var(--dark-brown);
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.timeline-title-2026::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.timeline-intro-2026 {
  font-size: 1.15rem;
  color: var(--medium-brown);
  max-width: 750px;
  margin: 2rem auto 0;
  line-height: 1.7;
}

.timeline-track-2026 {
  position: relative;
  padding: 2rem 0;
}

.timeline-track-2026::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--gold) 0%,
    rgba(212, 175, 55, 0.5) 50%,
    var(--gold) 100%
  );
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item-2026 {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  z-index: 2;
}

.timeline-item-2026:nth-child(odd) {
  flex-direction: row;
}

.timeline-item-2026:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker-2026 {
  flex: 0 0 200px;
  position: relative;
  z-index: 3;
}

.timeline-season {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: var(--dark-brown);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  position: relative;
  text-align: center;
  width: 100%;
}

.timeline-item-spring .timeline-season {
  background: linear-gradient(135deg, #90ee90, #32cd32);
  color: var(--dark-brown);
}

.timeline-item-summer .timeline-season {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: var(--dark-brown);
}

.timeline-item-autumn .timeline-season {
  background: linear-gradient(135deg, #d2691e, #cd853f);
  color: var(--cream);
}

.timeline-item-winter .timeline-season {
  background: linear-gradient(135deg, #4682b4, #1e90ff);
  color: var(--cream);
}

.timeline-content-2026 {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.timeline-item-2026:nth-child(even) .timeline-content-2026 {
  border-left: none;
  border-right: 4px solid var(--gold);
}

.timeline-content-2026:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
}

.timeline-item-2026:nth-child(even) .timeline-content-2026:hover {
  transform: translateX(-5px);
}

.timeline-item-title {
  font-size: 1.8rem;
  color: var(--dark-brown);
  margin-bottom: 1rem;
  font-weight: 700;
}

.timeline-item-text {
  color: var(--medium-brown);
  line-height: 1.7;
  font-size: 1.05rem;
}

.horoscope-disclaimer {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 58, 0.08) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
  border-radius: 16px;
  border-left: 4px solid var(--gold);
}

.horoscope-disclaimer-text {
  color: var(--medium-brown);
  line-height: 1.8;
  font-size: 1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .zodiac-overview-container,
  .astrology-wisdom-container {
    gap: 3rem;
  }

  .zodiac-overview-image,
  .astrology-wisdom-image {
    flex: 0 0 40%;
  }

  .planetary-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "large large"
      "card2 card3"
      "card4 card5"
      "card6 card7";
  }

  .timeline-track-2026::before {
    left: 30px;
  }

  .timeline-item-2026 {
    flex-direction: row !important;
    padding-left: 80px;
  }

  .timeline-item-2026:nth-child(even) .timeline-content-2026 {
    border-right: none;
    border-left: 4px solid var(--gold);
  }

  .timeline-item-2026:nth-child(even) .timeline-content-2026:hover {
    transform: translateX(5px);
  }

  .timeline-marker-2026 {
    position: absolute;
    left: 0;
    flex: 0 0 auto;
    width: 60px;
  }

  .timeline-season {
    width: auto;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .horoscope-hero-title {
    font-size: 2.5rem;
  }

  .horoscope-hero-text {
    font-size: 1.1rem;
  }

  .zodiac-overview-title,
  .astrology-wisdom-title,
  .planetary-title,
  .timeline-title-2026 {
    font-size: 2.2rem;
  }

  .zodiac-overview-container,
  .astrology-wisdom-container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .zodiac-overview-image,
  .astrology-wisdom-image {
    flex: 0 0 auto;
    width: 100%;
  }

  .astrology-wisdom-container {
    flex-direction: column-reverse;
  }

  .planetary-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "large"
      "card2"
      "card3"
      "card4"
      "card5"
      "card6"
      "card7";
  }

  .planetary-card-large {
    min-height: 300px;
  }

  .timeline-item-2026 {
    flex-direction: column !important;
    padding-left: 0;
    gap: 1.5rem;
  }

  .timeline-marker-2026 {
    position: relative;
    width: 100%;
  }

  .timeline-content-2026 {
    border-left: 4px solid var(--gold) !important;
    border-right: none !important;
  }

  .timeline-content-2026:hover {
    transform: translateY(5px) !important;
  }
}

@media (max-width: 480px) {
  .horoscope-hero-2026 {
    min-height: 300px;
  }

  .horoscope-hero-title {
    font-size: 2rem;
  }

  .zodiac-overview-title,
  .astrology-wisdom-title,
  .planetary-title,
  .timeline-title-2026 {
    font-size: 1.8rem;
  }

  .zodiac-overview-section,
  .astrology-wisdom-section {
    padding: 3rem 1rem;
  }

  .zodiac-overview-text,
  .astrology-wisdom-text {
    font-size: 1rem;
  }

  .planetary-card {
    padding: 1.8rem;
  }

  .planetary-icon-large {
    font-size: 4rem;
  }

  .planetary-icon {
    font-size: 2.5rem;
  }

  .planetary-card-title {
    font-size: 1.5rem;
  }

  .planetary-card-large .planetary-card-title {
    font-size: 1.8rem;
  }
}

.thanks-section {
  padding: 50px;

  color: var(--dark-brown);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

.thanks-section img {
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.policy-section {
  padding: 3rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

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

.policy-title {
  font-size: 2.8rem;
  color: var(--dark-brown);
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
}

.policy-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.policy-content {
  line-height: 1.8;
}

.policy-heading {
  font-size: 1.6rem;
  color: var(--dark-brown);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  position: relative;
  padding-left: 1rem;
}

.policy-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1.6rem;
  background: var(--gold);
  border-radius: 2px;
}

.policy-heading:first-of-type {
  margin-top: 0;
}

.policy-text {
  font-size: 1rem;
  color: var(--medium-brown);
  margin-bottom: 1.2rem;
  text-align: justify;
}

.policy-contact {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 58, 0.05) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
  border-radius: 16px;
  border-left: 4px solid var(--gold);
}

.policy-contact .policy-heading {
  margin-top: 0;
}

.policy-contact .policy-text {
  margin-bottom: 1rem;
}

.policy-contact .policy-text:last-child {
  margin-bottom: 0;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .policy-section {
    padding: 2rem 1rem;
  }

  .policy-title {
    font-size: 2.2rem;
  }

  .policy-heading {
    font-size: 1.4rem;
  }

  .policy-text {
    font-size: 0.95rem;
    text-align: left;
  }

  .policy-contact {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .policy-title {
    font-size: 1.8rem;
  }

  .policy-heading {
    font-size: 1.2rem;
  }
}