* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #1a1a2e;
  --primary-darker: #16213e;
  --accent-purple: #6a1b9a;
  --accent-purple-dark: #4a148c;
  --accent-gold: #ffb300;
  --accent-gold-light: #ffc107;
  --text-light: #f5f5f5;
  --text-gray: #e0e0e0;
  --accent-blue: #0d47a1;
  --accent-pink: #ad1457;
  --shadow-dark: rgba(0, 0, 0, 0.5);
  --shadow-glow: rgba(255, 179, 0, 0.3);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-darker) 100%
  );
  color: var(--text-light);
  min-height: 100vh;
  line-height: 1.6;
}

.header {
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.98) 0%,
    rgba(22, 33, 62, 0.95) 100%
  );
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(
      90deg,
      transparent,
      var(--accent-purple),
      var(--accent-gold),
      var(--accent-purple),
      transparent
    )
    1;
  box-shadow: 0 8px 32px var(--shadow-dark),
    inset 0 -2px 0 rgba(255, 179, 0, 0.1);
}

.header-decoration {
  position: absolute;
  pointer-events: none;
}

.header-stars {
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: radial-gradient(
      2px 2px at 20% 30%,
      var(--accent-gold),
      transparent
    ),
    radial-gradient(2px 2px at 60% 70%, var(--accent-gold), transparent),
    radial-gradient(1px 1px at 50% 50%, var(--accent-gold), transparent),
    radial-gradient(1px 1px at 80% 10%, var(--accent-gold), transparent),
    radial-gradient(2px 2px at 90% 50%, var(--accent-gold), transparent);
  background-size: 200% 200%;
  background-position: 0% 0%;
  opacity: 0.4;
  animation: starTwinkle 8s ease-in-out infinite;
}

.header-bottom-line {
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-gold),
    transparent
  );
  opacity: 0.6;
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 0.4;
    background-position: 0% 0%;
  }
  50% {
    opacity: 0.7;
    background-position: 100% 100%;
  }
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.logo-frame {
  position: relative;
  padding: 8px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--primary-dark);
  border-radius: 50%;
  z-index: 1;
}

.logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px var(--shadow-glow));
  position: relative;
  z-index: 2;
}

.logo-glow {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-gold), transparent);
  opacity: 0.3;
  animation: logoPulse 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.site-name-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-name {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 50%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
  line-height: 1;
  position: relative;
}

.site-name::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  opacity: 0.6;
}

.site-subtitle {
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 300;
}

.header-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-purple),
    transparent
  );
  margin: 0 30px;
  opacity: 0.3;
  display: none;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.burger-menu span {
  width: 30px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px var(--shadow-glow);
}

.nav-menu {
  padding: 20px 0;
  position: relative;
}

.nav-decoration {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  opacity: 0.5;
}

.nav-decoration-left {
  left: 0;
  transform: translateY(-50%);
}

.nav-decoration-right {
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
}

.nav-icon {
  font-size: 12px;
  color: var(--accent-purple);
  transition: all 0.4s ease;
  display: inline-block;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 179, 0, 0.15),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover::after {
  opacity: 1;
}

.nav-link:hover {
  color: var(--accent-gold);
  background: rgba(106, 27, 154, 0.15);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.2);
  border-color: var(--accent-purple);
}

.nav-link:hover .nav-icon {
  color: var(--accent-gold);
  transform: rotate(180deg) scale(1.2);
}

.main {
  min-height: calc(100vh - 400px);
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-main-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-main-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.7) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  z-index: 1;
}

.hero-main-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 60px 20px;
  text-align: center;
}

.hero-main-title {
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 50%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  letter-spacing: 3px;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(255, 179, 0, 0.3);
}

.hero-main-subtitle {
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 35px;
  font-weight: 300;
  letter-spacing: 2px;
}

.hero-main-description {
  max-width: 800px;
  margin: 0 auto 50px;
}

.hero-main-description p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-gray);
  text-align: center;
}

.hero-main-features {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.hero-main-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px 40px;
  background: rgba(106, 27, 154, 0.2);
  border-radius: 20px;
  border: 2px solid rgba(106, 27, 154, 0.4);
  transition: all 0.4s ease;
  min-width: 180px;
  backdrop-filter: blur(10px);
}

.hero-main-feature-item:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(106, 27, 154, 0.3);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 35px rgba(255, 179, 0, 0.3);
}

.hero-main-feature-icon {
  font-size: 40px;
  filter: drop-shadow(0 0 15px var(--shadow-glow));
}

.hero-main-feature-item span {
  color: var(--text-light);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}

.hero-section {
  position: relative;
  padding: 80px 20px 100px;
  background: radial-gradient(
    ellipse at top,
    rgba(106, 27, 154, 0.15) 0%,
    transparent 70%
  );
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-stars {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  height: 100px;
  background-image: radial-gradient(
      2px 2px at 10% 20%,
      var(--accent-gold),
      transparent
    ),
    radial-gradient(1px 1px at 30% 60%, var(--accent-gold), transparent),
    radial-gradient(2px 2px at 50% 40%, var(--accent-gold), transparent),
    radial-gradient(1px 1px at 70% 80%, var(--accent-gold), transparent),
    radial-gradient(2px 2px at 90% 30%, var(--accent-gold), transparent);
  background-size: 200% 200%;
  opacity: 0.3;
  animation: starTwinkle 10s ease-in-out infinite;
}

.hero-stars-top {
  top: 0;
}

.hero-stars-bottom {
  bottom: 0;
  transform: rotate(180deg);
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 50%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: 2px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 22px;
  color: var(--text-gray);
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-description {
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-description p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  text-align: justify;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.hero-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 30px;
  background: rgba(106, 27, 154, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(106, 27, 154, 0.3);
  transition: all 0.3s ease;
  min-width: 150px;
}

.hero-feature-item:hover {
  transform: translateY(-5px);
  background: rgba(106, 27, 154, 0.2);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(255, 179, 0, 0.2);
}

.feature-icon {
  font-size: 32px;
  filter: drop-shadow(0 0 10px var(--shadow-glow));
}

.hero-feature-item span {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.about-section {
  padding: 100px 20px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(106, 27, 154, 0.1) 100%
  );
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text-wrapper {
  position: relative;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 30px;
  letter-spacing: 1px;
  position: relative;
  padding-left: 20px;
}

.about-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-gold), var(--accent-purple));
  border-radius: 2px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-gray);
  text-align: justify;
}

.about-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card {
  position: absolute;
  width: 200px;
  height: 280px;
  background: linear-gradient(
    135deg,
    rgba(106, 27, 154, 0.2),
    rgba(255, 179, 0, 0.1)
  );
  border: 2px solid var(--accent-purple);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.about-card-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.about-card-icon {
  font-size: 48px;
  filter: drop-shadow(0 0 10px var(--shadow-glow));
  animation: iconFloat 3s ease-in-out infinite;
}

.about-card-2 .about-card-icon {
  animation-delay: 0.5s;
}

.about-card-3 .about-card-icon {
  animation-delay: 1s;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.1);
  }
}

.about-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-gold);
  margin: 0;
  letter-spacing: 1px;
}

.about-card-text {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.about-card-1 {
  transform: rotate(-15deg) translateX(-80px);
  z-index: 1;
}

.about-card-2 {
  transform: rotate(0deg);
  z-index: 2;
  border-color: var(--accent-gold);
}

.about-card-3 {
  transform: rotate(15deg) translateX(80px);
  z-index: 1;
}

.about-card:hover {
  transform: scale(1.1) rotate(0deg) !important;
  z-index: 10;
  border-color: var(--accent-gold);
  box-shadow: 0 15px 40px rgba(255, 179, 0, 0.3);
}

.about-card:hover .about-card-icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 20px var(--shadow-glow));
}

.about-card:hover .about-card-title {
  color: var(--accent-gold-light);
  transform: translateY(-3px);
}

.about-card:hover .about-card-text {
  color: var(--text-light);
}

.card-glow {
  position: absolute;
  inset: -5px;
  border-radius: 15px;
  background: radial-gradient(circle, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.about-card:hover .card-glow {
  opacity: 0.3;
}

.astrology-section {
  padding: 120px 20px;
  background: linear-gradient(
    180deg,
    rgba(106, 27, 154, 0.1) 0%,
    transparent 100%
  );
  position: relative;
  overflow: hidden;
}

.astrology-container {
  max-width: 1200px;
  margin: 0 auto;
}

.astrology-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.astrology-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-dark);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.astrology-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.astrology-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.astrology-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(106, 27, 154, 0.3) 0%,
    rgba(255, 179, 0, 0.1) 100%
  );
  z-index: 1;
}

.astrology-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--accent-gold);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 2;
  animation: rotateDecoration 20s linear infinite;
}

@keyframes rotateDecoration {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.astrology-text-wrapper {
  position: relative;
}

.astrology-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 35px;
  letter-spacing: 1px;
  position: relative;
  padding-left: 25px;
}

.astrology-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent-gold), var(--accent-purple));
  border-radius: 3px;
}

.astrology-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.astrology-text p {
  font-size: 17px;
  line-height: 2;
  color: var(--text-gray);
  text-align: justify;
}

.tarot-section {
  padding: 120px 20px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 179, 0, 0.05) 100%
  );
  position: relative;
  overflow: hidden;
}

.tarot-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tarot-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tarot-text-wrapper {
  position: relative;
  order: 1;
}

.tarot-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 35px;
  letter-spacing: 1px;
  position: relative;
  padding-right: 25px;
  text-align: right;
}

.tarot-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent-gold), var(--accent-purple));
  border-radius: 3px;
}

.tarot-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.tarot-text p {
  font-size: 17px;
  line-height: 2;
  color: var(--text-gray);
  text-align: justify;
}

.tarot-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-dark);
  transform: perspective(1000px) rotateY(5deg);
  transition: transform 0.5s ease;
  order: 2;
}

.tarot-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.tarot-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.tarot-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 179, 0, 0.1) 0%,
    rgba(106, 27, 154, 0.3) 100%
  );
  z-index: 1;
}

.tarot-image-decoration {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--accent-purple);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 2;
  animation: rotateDecoration 25s linear infinite reverse;
}

.horoscope-intro-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.horoscope-intro-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.horoscope-intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1);
}

.horoscope-intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.85) 0%,
    rgba(22, 33, 62, 0.9) 50%,
    rgba(106, 27, 154, 0.75) 100%
  );
  z-index: 1;
}

.horoscope-intro-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 80px 20px;
  text-align: center;
}

.horoscope-intro-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  opacity: 0.2;
  animation: introDecorationRotate 20s linear infinite;
}

.horoscope-intro-decoration-1 {
  top: -50px;
  left: -50px;
}

.horoscope-intro-decoration-2 {
  bottom: -50px;
  right: -50px;
  animation-direction: reverse;
}

@keyframes introDecorationRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.horoscope-intro-text-wrapper {
  position: relative;
  z-index: 3;
}

.horoscope-intro-label {
  display: inline-block;
  padding: 8px 25px;
  background: rgba(255, 179, 0, 0.2);
  border: 1px solid var(--accent-gold);
  border-radius: 30px;
  color: var(--accent-gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.horoscope-intro-title {
  font-size: 64px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 50%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: 3px;
  line-height: 1.2;
  text-shadow: 0 0 40px rgba(255, 179, 0, 0.4);
}

.horoscope-intro-divider {
  width: 150px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-gold),
    var(--accent-purple),
    var(--accent-gold),
    transparent
  );
  margin: 0 auto 30px;
  border-radius: 2px;
  animation: dividerGlow 3s ease-in-out infinite;
}

@keyframes dividerGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1);
  }
}

.horoscope-intro-subtitle {
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.5;
}

.horoscope-intro-description {
  max-width: 900px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.horoscope-intro-description p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-gray);
  text-align: justify;
}

.horoscope-intro-features {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.horoscope-intro-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 25px 35px;
  background: rgba(106, 27, 154, 0.25);
  border: 2px solid rgba(106, 27, 154, 0.5);
  border-radius: 20px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  min-width: 180px;
}

.horoscope-intro-feature:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(106, 27, 154, 0.35);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 40px rgba(255, 179, 0, 0.3);
}

.horoscope-intro-feature-icon {
  font-size: 42px;
  filter: drop-shadow(0 0 15px var(--shadow-glow));
}

.horoscope-intro-feature span {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
}

.zodiac-signs-section {
  padding: 120px 20px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(106, 27, 154, 0.12) 100%
  );
  position: relative;
  overflow: hidden;
}

.zodiac-signs-container {
  max-width: 1300px;
  margin: 0 auto;
}

.zodiac-signs-header {
  text-align: center;
  margin-bottom: 80px;
}

.zodiac-signs-title {
  font-size: 46px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 50%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.zodiac-signs-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.zodiac-signs-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.zodiac-signs-image-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 70px var(--shadow-dark);
  transform: perspective(1000px) rotateY(-8deg);
  transition: transform 0.6s ease;
  height: 600px;
}

.zodiac-signs-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.zodiac-signs-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zodiac-signs-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(106, 27, 154, 0.25) 0%,
    rgba(255, 179, 0, 0.15) 100%
  );
  z-index: 1;
}

.zodiac-signs-decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid var(--accent-gold);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 2;
}

.zodiac-signs-decoration-1 {
  top: -30px;
  right: -30px;
  animation: rotateDecoration 15s linear infinite;
}

.zodiac-signs-decoration-2 {
  bottom: -30px;
  left: -30px;
  border-color: var(--accent-purple);
  animation: rotateDecoration 20s linear infinite reverse;
}

.zodiac-signs-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.zodiac-signs-text-block {
  position: relative;
  padding: 30px;
  background: rgba(106, 27, 154, 0.15);
  border-left: 4px solid var(--accent-gold);
  border-radius: 15px;
  transition: all 0.4s ease;
}

.zodiac-signs-text-block:hover {
  background: rgba(106, 27, 154, 0.25);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 179, 0, 0.2);
}

.zodiac-signs-block-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.zodiac-signs-text-block p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-gray);
  text-align: justify;
}

.zodiac-signs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.zodiac-signs-stat-item {
  text-align: center;
  padding: 25px 20px;
  background: linear-gradient(
    135deg,
    rgba(106, 27, 154, 0.2),
    rgba(255, 179, 0, 0.1)
  );
  border: 2px solid rgba(106, 27, 154, 0.4);
  border-radius: 15px;
  transition: all 0.4s ease;
}

.zodiac-signs-stat-item:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(255, 179, 0, 0.25);
}

.zodiac-signs-stat-number {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.zodiac-signs-stat-label {
  font-size: 13px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.planets-influence-section {
  padding: 120px 20px;
  background: linear-gradient(
    180deg,
    rgba(106, 27, 154, 0.12) 0%,
    transparent 100%
  );
  position: relative;
  overflow: hidden;
}

.planets-influence-container {
  max-width: 1300px;
  margin: 0 auto;
}

.planets-influence-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 80px;
}

.planets-influence-header-decoration {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-gold),
    var(--accent-purple),
    var(--accent-gold),
    transparent
  );
  opacity: 0.6;
}

.planets-influence-title {
  font-size: 46px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 50%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  white-space: nowrap;
}

.planets-influence-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.planets-influence-main-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.planets-influence-main-text p {
  font-size: 18px;
  line-height: 2;
  color: var(--text-gray);
}

.planets-influence-visual-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px var(--shadow-dark);
  height: 500px;
}

.planets-influence-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.planets-influence-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(106, 27, 154, 0.4) 0%,
    rgba(255, 179, 0, 0.2) 100%
  );
  z-index: 1;
}

.planets-influence-cards {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 40px;
}

.planet-card {
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(15px);
  border: 2px solid var(--accent-purple);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.planet-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--accent-gold);
  background: rgba(26, 26, 46, 0.95);
  box-shadow: 0 15px 40px rgba(255, 179, 0, 0.3);
}

.planet-card-icon {
  font-size: 48px;
  filter: drop-shadow(0 0 15px var(--shadow-glow));
}

.planet-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-gold);
  margin: 0;
}

.planet-card-text {
  font-size: 14px;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
}

.planets-influence-bottom-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.planets-influence-text-box {
  padding: 35px;
  background: linear-gradient(
    135deg,
    rgba(106, 27, 154, 0.2),
    rgba(255, 179, 0, 0.1)
  );
  border: 2px solid rgba(106, 27, 154, 0.4);
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.planets-influence-text-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 179, 0, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.planets-influence-text-box:hover::before {
  left: 100%;
}

.planets-influence-text-box:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 40px rgba(255, 179, 0, 0.2);
}

.planets-influence-box-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.planets-influence-text-box p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-gray);
  text-align: justify;
  position: relative;
  z-index: 1;
}

.astrology-meaning-section {
  padding: 120px 20px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 179, 0, 0.08) 100%
  );
  position: relative;
  overflow: hidden;
}

.astrology-meaning-container {
  max-width: 1300px;
  margin: 0 auto;
}

.astrology-meaning-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.astrology-meaning-text-wrapper {
  position: relative;
}

.astrology-meaning-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(106, 27, 154, 0.2);
  border: 1px solid var(--accent-purple);
  border-radius: 25px;
  color: var(--accent-purple);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.astrology-meaning-title {
  font-size: 44px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 50%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

.astrology-meaning-divider {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-purple));
  margin-bottom: 30px;
  border-radius: 2px;
}

.astrology-meaning-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}

.astrology-meaning-text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-gray);
  text-align: justify;
}

.astrology-meaning-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.astrology-meaning-point {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(106, 27, 154, 0.15);
  border-left: 4px solid var(--accent-gold);
  border-radius: 15px;
  transition: all 0.4s ease;
}

.astrology-meaning-point:hover {
  transform: translateX(10px);
  background: rgba(106, 27, 154, 0.25);
  box-shadow: 0 10px 30px rgba(255, 179, 0, 0.2);
}

.astrology-meaning-point-icon {
  font-size: 36px;
  filter: drop-shadow(0 0 10px var(--shadow-glow));
  flex-shrink: 0;
}

.astrology-meaning-point-content {
  flex: 1;
}

.astrology-meaning-point-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.astrology-meaning-point-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  margin: 0;
}

.astrology-meaning-image-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 70px var(--shadow-dark);
  transform: perspective(1000px) rotateY(8deg);
  transition: transform 0.6s ease;
  height: 650px;
}

.astrology-meaning-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.astrology-meaning-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.astrology-meaning-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 179, 0, 0.1) 0%,
    rgba(106, 27, 154, 0.3) 100%
  );
  z-index: 1;
}

.astrology-meaning-decoration {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 2;
  animation: rotateDecoration 18s linear infinite;
}

.astrology-meaning-decoration-1 {
  top: 20px;
  right: 20px;
}

.astrology-meaning-decoration-2 {
  bottom: 20px;
  left: 20px;
  border-color: var(--accent-purple);
  animation-direction: reverse;
  animation-duration: 22s;
}

.astrology-meaning-decoration-3 {
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  animation-duration: 25s;
}

.tarot-intro-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tarot-intro-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tarot-intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(1.2);
}

.tarot-intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.85) 0%,
    rgba(106, 27, 154, 0.8) 50%,
    rgba(22, 33, 62, 0.9) 100%
  );
  z-index: 1;
}

.tarot-intro-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 80px 20px;
  text-align: center;
}

.tarot-intro-text-wrapper {
  position: relative;
  z-index: 3;
}

.tarot-intro-label {
  display: inline-block;
  padding: 8px 25px;
  background: rgba(255, 179, 0, 0.2);
  border: 1px solid var(--accent-gold);
  border-radius: 30px;
  color: var(--accent-gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.tarot-intro-title {
  font-size: 64px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-purple) 50%,
    var(--accent-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: 3px;
  line-height: 1.2;
  text-shadow: 0 0 40px rgba(255, 179, 0, 0.4);
}

.tarot-intro-divider {
  width: 150px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-gold),
    var(--accent-purple),
    var(--accent-gold),
    transparent
  );
  margin: 0 auto 30px;
  border-radius: 2px;
  animation: dividerGlow 3s ease-in-out infinite;
}

.tarot-intro-subtitle {
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.5;
}

.tarot-intro-description {
  max-width: 950px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.tarot-intro-description p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-gray);
  text-align: justify;
}

.tarot-intro-cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.tarot-intro-card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px 40px;
  background: rgba(106, 27, 154, 0.25);
  border: 2px solid rgba(106, 27, 154, 0.5);
  border-radius: 20px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  min-width: 180px;
}

.tarot-intro-card-item:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(106, 27, 154, 0.35);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 40px rgba(255, 179, 0, 0.3);
}

.tarot-intro-card-icon {
  font-size: 42px;
  filter: drop-shadow(0 0 15px var(--shadow-glow));
}

.tarot-intro-card-item span {
  color: var(--text-light);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}

.tarot-major-arcana-section {
  padding: 120px 20px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(106, 27, 154, 0.12) 100%
  );
  position: relative;
  overflow: hidden;
}

.tarot-major-arcana-container {
  max-width: 1300px;
  margin: 0 auto;
}

.tarot-major-arcana-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.tarot-major-arcana-image-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 70px var(--shadow-dark);
  transform: perspective(1000px) rotateY(-8deg);
  transition: transform 0.6s ease;
  height: 600px;
}

.tarot-major-arcana-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.tarot-major-arcana-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tarot-major-arcana-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(106, 27, 154, 0.25) 0%,
    rgba(255, 179, 0, 0.15) 100%
  );
  z-index: 1;
}

.tarot-major-arcana-decoration {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--accent-gold);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 2;
  animation: rotateDecoration 15s linear infinite;
}

.tarot-major-arcana-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.tarot-major-arcana-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 179, 0, 0.2);
  border: 1px solid var(--accent-gold);
  border-radius: 25px;
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: fit-content;
}

.tarot-major-arcana-title {
  font-size: 44px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 50%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

.tarot-major-arcana-divider {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-purple));
  margin-bottom: 30px;
}

.tarot-major-arcana-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.tarot-major-arcana-text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-gray);
  text-align: justify;
}

.tarot-major-arcana-examples {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.tarot-major-arcana-example {
  display: flex;
  gap: 20px;
  padding: 22px;
  background: rgba(106, 27, 154, 0.15);
  border: 2px solid rgba(106, 27, 154, 0.3);
  border-radius: 15px;
  transition: all 0.4s ease;
}

.tarot-major-arcana-example:hover {
  transform: translateX(10px);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(255, 179, 0, 0.2);
}

.tarot-example-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(106, 27, 154, 0.3);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.tarot-example-content {
  flex: 1;
}

.tarot-example-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--accent-gold-light);
  margin-bottom: 8px;
}

.tarot-example-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  margin: 0;
}

.tarot-spreads-section {
  padding: 120px 20px;
  background: linear-gradient(
    180deg,
    rgba(106, 27, 154, 0.12) 0%,
    transparent 100%
  );
  position: relative;
  overflow: hidden;
}

.tarot-spreads-container {
  max-width: 1300px;
  margin: 0 auto;
}

.tarot-spreads-header {
  text-align: center;
  margin-bottom: 80px;
}

.tarot-spreads-title {
  font-size: 46px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 50%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.tarot-spreads-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.tarot-spreads-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
}

.tarot-spreads-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.tarot-spreads-text-block {
  position: relative;
  padding: 30px;
  background: rgba(106, 27, 154, 0.15);
  border-left: 4px solid var(--accent-gold);
  border-radius: 15px;
  transition: all 0.4s ease;
}

.tarot-spreads-text-block:hover {
  background: rgba(106, 27, 154, 0.25);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 179, 0, 0.2);
}

.tarot-spreads-block-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.tarot-spreads-text-block p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-gray);
  text-align: justify;
}

.tarot-spreads-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.tarot-spreads-info-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 22px;
  background: linear-gradient(
    135deg,
    rgba(106, 27, 154, 0.2),
    rgba(255, 179, 0, 0.1)
  );
  border: 2px solid rgba(106, 27, 154, 0.4);
  border-radius: 15px;
  transition: all 0.4s ease;
}

.tarot-spreads-info-item:hover {
  transform: translateX(10px);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(255, 179, 0, 0.2);
}

.tarot-spreads-info-icon {
  font-size: 32px;
  filter: drop-shadow(0 0 10px var(--shadow-glow));
  flex-shrink: 0;
}

.tarot-spreads-info-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tarot-spreads-info-text strong {
  font-size: 18px;
  color: var(--accent-gold);
  font-weight: 600;
}

.tarot-spreads-info-text span {
  font-size: 14px;
  color: var(--text-gray);
}

.tarot-spreads-image-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 70px var(--shadow-dark);
  transform: perspective(1000px) rotateY(8deg);
  transition: transform 0.6s ease;
  height: 600px;
}

.tarot-spreads-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.tarot-spreads-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tarot-spreads-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 179, 0, 0.1) 0%,
    rgba(106, 27, 154, 0.3) 100%
  );
  z-index: 1;
}

.tarot-spreads-decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid var(--accent-purple);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 2;
}

.tarot-spreads-decoration-1 {
  bottom: -30px;
  left: -30px;
  animation: rotateDecoration 20s linear infinite;
}

.tarot-spreads-decoration-2 {
  top: -30px;
  right: -30px;
  border-color: var(--accent-gold);
  animation: rotateDecoration 18s linear infinite reverse;
}

.tarot-interpretation-section {
  padding: 120px 20px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 179, 0, 0.08) 100%
  );
  position: relative;
  overflow: hidden;
}

.tarot-interpretation-container {
  max-width: 1300px;
  margin: 0 auto;
}

.tarot-interpretation-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.tarot-interpretation-image-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 70px var(--shadow-dark);
  transform: perspective(1000px) rotateY(-8deg);
  transition: transform 0.6s ease;
  height: 650px;
}

.tarot-interpretation-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.tarot-interpretation-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tarot-interpretation-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(106, 27, 154, 0.25) 0%,
    rgba(255, 179, 0, 0.15) 100%
  );
  z-index: 1;
}

.tarot-interpretation-cards-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px;
}

.tarot-interpretation-card-mini {
  width: 80px;
  height: 120px;
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid var(--accent-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  transform: rotate(-10deg);
}

.tarot-interpretation-card-1 {
  transform: rotate(-15deg) translateY(-20px);
}

.tarot-interpretation-card-2 {
  transform: rotate(0deg);
}

.tarot-interpretation-card-3 {
  transform: rotate(15deg) translateY(20px);
}

.tarot-interpretation-image-wrapper:hover .tarot-interpretation-card-mini {
  transform: rotate(0deg) translateY(0) !important;
  box-shadow: 0 10px 30px rgba(255, 179, 0, 0.4);
}

.tarot-mini-card-icon {
  font-size: 36px;
  filter: drop-shadow(0 0 10px var(--shadow-glow));
}

.tarot-interpretation-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.tarot-interpretation-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(106, 27, 154, 0.2);
  border: 1px solid var(--accent-purple);
  border-radius: 25px;
  color: var(--accent-purple);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: fit-content;
}

.tarot-interpretation-title {
  font-size: 44px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 50%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

.tarot-interpretation-divider {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-purple));
  margin-bottom: 30px;
}

.tarot-interpretation-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.tarot-interpretation-text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-gray);
  text-align: justify;
}

.tarot-interpretation-tips {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.tarot-interpretation-tip {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(106, 27, 154, 0.15);
  border-left: 4px solid var(--accent-gold);
  border-radius: 15px;
  transition: all 0.4s ease;
}

.tarot-interpretation-tip:hover {
  transform: translateX(10px);
  background: rgba(106, 27, 154, 0.25);
  box-shadow: 0 10px 30px rgba(255, 179, 0, 0.2);
}

.tarot-tip-icon {
  font-size: 36px;
  filter: drop-shadow(0 0 10px var(--shadow-glow));
  flex-shrink: 0;
}

.tarot-tip-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.tarot-tip-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  margin: 0;
}

.personal-intro-section {
  padding: 100px 20px;
  background: linear-gradient(
    180deg,
    rgba(106, 27, 154, 0.1) 0%,
    transparent 100%
  );
  position: relative;
  overflow: hidden;
}

.personal-intro-container {
  max-width: 1200px;
  margin: 0 auto;
}

.personal-intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.personal-intro-image-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 70px var(--shadow-dark);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s ease;
  height: 500px;
}

.personal-intro-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.personal-intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.personal-intro-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(106, 27, 154, 0.25) 0%,
    rgba(255, 179, 0, 0.15) 100%
  );
  z-index: 1;
}

.personal-intro-decoration {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--accent-gold);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 2;
  animation: rotateDecoration 15s linear infinite;
}

.personal-intro-text-wrapper {
  position: relative;
}

.personal-intro-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 179, 0, 0.2);
  border: 1px solid var(--accent-gold);
  border-radius: 25px;
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.personal-intro-title {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 50%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

.personal-intro-divider {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-purple));
  margin-bottom: 30px;
  border-radius: 2px;
}

.personal-intro-text {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-gray);
  text-align: justify;
  margin-bottom: 20px;
}

.personal-form-section {
  padding: 100px 20px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(106, 27, 154, 0.12) 100%
  );
  position: relative;
  overflow: hidden;
}

.personal-form-container {
  max-width: 700px;
  margin: 0 auto;
}

.personal-form-wrapper {
  background: linear-gradient(
    135deg,
    rgba(106, 27, 154, 0.15) 0%,
    rgba(255, 179, 0, 0.08) 100%
  );
  border: 2px solid rgba(106, 27, 154, 0.3);
  border-radius: 25px;
  padding: 60px 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 70px var(--shadow-dark);
  position: relative;
  overflow: hidden;
}

.personal-form-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 179, 0, 0.1) 0%,
    transparent 70%
  );
  animation: formGlow 10s ease-in-out infinite;
  z-index: 0;
}

@keyframes formGlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-20%, -20%) scale(1.1);
    opacity: 0.8;
  }
}

.personal-form-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.personal-form-title {
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 50%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.personal-form-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
}

.personal-form {
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.form-group select,
.form-group input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(26, 26, 46, 0.6);
  border: 2px solid rgba(106, 27, 154, 0.4);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(26, 26, 46, 0.8);
  box-shadow: 0 0 20px rgba(255, 179, 0, 0.2);
}

.form-group select option {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 10px;
}

.form-group input::placeholder {
  color: rgba(224, 224, 224, 0.5);
}

.form-group input[type="number"]::-webkit-inner-spin-button,
.form-group input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
}

.form-submit-wrapper {
  text-align: center;
  margin-top: 50px;
}

.form-submit-button {
  padding: 18px 50px;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 100%
  );
  border: none;
  border-radius: 30px;
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(255, 179, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.form-submit-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.form-submit-button:hover::before {
  width: 300px;
  height: 300px;
}

.form-submit-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 179, 0, 0.4);
}

.form-submit-button:active {
  transform: translateY(-1px) scale(1.02);
}

.features-section {
  padding: 120px 20px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(106, 27, 154, 0.15) 50%,
    transparent 100%
  );
  position: relative;
  overflow: hidden;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.features-title {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 50%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.features-title-decoration {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-gold),
    var(--accent-purple),
    var(--accent-gold),
    transparent
  );
  border-radius: 2px;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.2);
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
}

.feature-item {
  position: relative;
  padding: 40px 30px;
  background: linear-gradient(
    135deg,
    rgba(106, 27, 154, 0.15) 0%,
    rgba(255, 179, 0, 0.05) 100%
  );
  border: 2px solid rgba(106, 27, 154, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.feature-item:hover::before {
  opacity: 0.1;
}

.feature-item:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 50px rgba(255, 179, 0, 0.25);
}

.feature-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 60px;
  font-weight: 700;
  color: rgba(106, 27, 154, 0.2);
  line-height: 1;
  transition: all 0.5s ease;
  z-index: 1;
}

.feature-item:hover .feature-number {
  color: rgba(255, 179, 0, 0.3);
  transform: scale(1.2);
}

.feature-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  z-index: 2;
}

.feature-icon-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
  border-radius: 50%;
  opacity: 0.3;
  transition: all 0.5s ease;
  animation: iconPulse 3s ease-in-out infinite;
}

.feature-item:hover .feature-icon-bg {
  opacity: 0.5;
  transform: scale(1.2);
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.feature-icon {
  position: relative;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  filter: drop-shadow(0 0 10px var(--shadow-glow));
  transition: all 0.5s ease;
  z-index: 2;
}

.feature-item:hover .feature-icon {
  transform: rotate(15deg) scale(1.2);
  filter: drop-shadow(0 0 20px var(--shadow-glow));
}

.feature-item-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.feature-item:hover .feature-item-title {
  color: var(--accent-gold-light);
  transform: translateX(5px);
}

.feature-item-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gray);
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.feature-item:hover .feature-item-text {
  color: var(--text-light);
}

.feature-item-1 {
  animation-delay: 0s;
}

.feature-item-2 {
  animation-delay: 0.2s;
}

.feature-item-3 {
  animation-delay: 0.4s;
}

.feature-item-4 {
  animation-delay: 0.6s;
}

.features-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.features-decoration-line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-purple),
    transparent
  );
  opacity: 0.1;
  height: 1px;
}

.features-decoration-line-1 {
  top: 25%;
  left: 0;
  right: 0;
  animation: lineMove 8s ease-in-out infinite;
}

.features-decoration-line-2 {
  top: 50%;
  left: 0;
  right: 0;
  animation: lineMove 10s ease-in-out infinite reverse;
}

.features-decoration-line-3 {
  top: 75%;
  left: 0;
  right: 0;
  animation: lineMove 12s ease-in-out infinite;
}

@keyframes lineMove {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.1;
  }
  50% {
    transform: translateX(20px);
    opacity: 0.3;
  }
}

.footer {
  background: linear-gradient(
    180deg,
    var(--primary-darker) 0%,
    var(--primary-dark) 100%
  );
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
  border-image: linear-gradient(
      90deg,
      transparent,
      var(--accent-purple),
      var(--accent-gold),
      var(--accent-purple),
      transparent
    )
    1;
}

.footer-top-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(
    180deg,
    rgba(106, 27, 154, 0.2) 0%,
    transparent 100%
  );
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/footer-pattern.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 20px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-section {
  position: relative;
}

.footer-section-main {
  padding-right: 40px;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 28px;
  color: var(--accent-gold);
  text-shadow: 0 0 15px var(--shadow-glow);
  letter-spacing: 2px;
}

.footer-logo-decoration {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.footer-star {
  color: var(--accent-purple);
  font-size: 14px;
  animation: starFloat 3s ease-in-out infinite;
}

.footer-star:nth-child(2) {
  animation-delay: 0.5s;
}

.footer-star:nth-child(3) {
  animation-delay: 1s;
}

@keyframes starFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-5px) scale(1.2);
    opacity: 1;
  }
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-purple),
    transparent
  );
  margin: 25px 0;
  opacity: 0.4;
}

.footer-text {
  color: var(--text-gray);
  line-height: 1.9;
  font-size: 14px;
  text-align: justify;
}

.footer-subtitle {
  font-size: 20px;
  color: var(--accent-gold-light);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  position: relative;
}

.footer-link-icon {
  color: var(--accent-purple);
  font-size: 12px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(8px);
}

.footer-links a:hover .footer-link-icon {
  color: var(--accent-gold);
  transform: translateX(5px) scale(1.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  position: relative;
  color: var(--text-gray);
  font-size: 14px;
}

.footer-bottom-decoration {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-purple),
    var(--accent-gold),
    var(--accent-purple),
    transparent
  );
  opacity: 0.5;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--primary-darker) 0%,
    var(--primary-dark) 100%
  );
  border: 2px solid var(--accent-purple);
  border-radius: 15px;
  padding: 25px 30px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 30px var(--shadow-dark), 0 0 20px var(--shadow-glow);
  z-index: 10000;
  display: none;
  animation: slideUp 0.5s ease;
}

.cookie-popup.show {
  display: block;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-text {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.cookie-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-accept {
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 100%
  );
  color: var(--primary-dark);
  box-shadow: 0 4px 15px var(--shadow-glow);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-glow);
}

.cookie-decline {
  background: transparent;
  color: var(--text-gray);
  border: 2px solid var(--accent-purple);
}

.cookie-decline:hover {
  background: rgba(106, 27, 154, 0.2);
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

@media (max-width: 768px) {
  .header-divider {
    display: none;
  }

  .site-subtitle {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(
      180deg,
      rgba(26, 26, 46, 0.98) 0%,
      rgba(22, 33, 62, 0.98) 100%
    );
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--accent-purple);
    box-shadow: 0 4px 20px var(--shadow-dark);
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }

  .nav-link {
    display: flex;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-features {
    gap: 20px;
  }

  .hero-main-title {
    font-size: 42px;
  }

  .hero-main-subtitle {
    font-size: 20px;
  }

  .hero-main-features {
    gap: 30px;
  }

  .hero-main-feature-item {
    min-width: 150px;
    padding: 25px 30px;
  }

  .astrology-content,
  .tarot-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .astrology-image-wrapper,
  .tarot-image-wrapper {
    transform: none;
  }

  .astrology-image-wrapper:hover,
  .tarot-image-wrapper:hover {
    transform: scale(1.02);
  }

  .astrology-title {
    padding-left: 0;
    padding-bottom: 15px;
  }

  .astrology-title::before {
    left: 0;
    top: auto;
    bottom: 0;
    width: 50px;
    height: 5px;
  }

  .tarot-title {
    padding-right: 0;
    padding-bottom: 15px;
    text-align: left;
  }

  .tarot-title::after {
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    width: 50px;
    height: 5px;
  }

  .tarot-content {
    flex-direction: column;
  }

  .tarot-text-wrapper {
    order: 2;
  }

  .tarot-image-wrapper {
    order: 1;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    height: 300px;
  }

  .about-card {
    width: 150px;
    height: 210px;
    padding: 15px;
  }

  .about-card-icon {
    font-size: 36px;
  }

  .about-card-title {
    font-size: 16px;
  }

  .about-card-text {
    font-size: 11px;
  }

  .about-card-content {
    gap: 10px;
  }

  .about-card-1 {
    transform: rotate(-10deg) translateX(-50px);
  }

  .about-card-3 {
    transform: rotate(10deg) translateX(50px);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-section-main {
    padding-right: 0;
  }

  .cookie-popup {
    bottom: 10px;
    padding: 20px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .horoscope-intro-title {
    font-size: 42px;
  }

  .horoscope-intro-subtitle {
    font-size: 20px;
  }

  .horoscope-intro-features {
    gap: 30px;
  }

  .horoscope-intro-feature {
    min-width: 150px;
    padding: 20px 30px;
  }

  .zodiac-signs-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .zodiac-signs-image-wrapper {
    transform: none;
    height: 400px;
  }

  .zodiac-signs-image-wrapper:hover {
    transform: scale(1.02);
  }

  .zodiac-signs-stats {
    grid-template-columns: 1fr;
  }

  .planets-influence-title {
    font-size: 32px;
    white-space: normal;
  }

  .planets-influence-header {
    flex-direction: column;
    gap: 20px;
  }

  .planets-influence-cards {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 30px 20px;
  }

  .planets-influence-visual-wrapper {
    height: 700px;
  }

  .planets-influence-bottom-text {
    grid-template-columns: 1fr;
  }

  .astrology-meaning-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .astrology-meaning-image-wrapper {
    transform: none;
    height: 450px;
  }

  .astrology-meaning-image-wrapper:hover {
    transform: scale(1.02);
  }

  .tarot-intro-title {
    font-size: 42px;
  }

  .tarot-intro-subtitle {
    font-size: 20px;
  }

  .tarot-intro-cards {
    gap: 30px;
  }

  .tarot-intro-card-item {
    min-width: 150px;
    padding: 25px 30px;
  }

  .tarot-major-arcana-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .tarot-major-arcana-image-wrapper {
    transform: none;
    height: 400px;
  }

  .tarot-major-arcana-image-wrapper:hover {
    transform: scale(1.02);
  }

  .tarot-spreads-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .tarot-spreads-image-wrapper {
    transform: none;
    height: 400px;
  }

  .tarot-spreads-image-wrapper:hover {
    transform: scale(1.02);
  }

  .tarot-interpretation-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .tarot-interpretation-image-wrapper {
    transform: none;
    height: 450px;
  }

  .tarot-interpretation-image-wrapper:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 480px) {
  .site-name {
    font-size: 24px;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .logo-frame {
    padding: 6px;
  }

  .header-top {
    padding: 15px 0;
  }

  .hero-section {
    padding: 60px 20px 80px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-feature-item {
    min-width: 120px;
    padding: 15px 20px;
  }

  .about-section {
    padding: 60px 20px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-visual {
    height: 250px;
  }

  .about-card {
    width: 120px;
    height: 170px;
    padding: 12px;
  }

  .about-card-icon {
    font-size: 28px;
  }

  .about-card-title {
    font-size: 14px;
  }

  .about-card-text {
    font-size: 10px;
  }

  .about-card-content {
    gap: 8px;
  }

  .hero-main-section {
    min-height: 70vh;
  }

  .hero-main-title {
    font-size: 32px;
  }

  .hero-main-subtitle {
    font-size: 18px;
  }

  .hero-main-description p {
    font-size: 16px;
  }

  .hero-main-feature-item {
    min-width: 120px;
    padding: 20px 25px;
  }

  .astrology-section,
  .tarot-section {
    padding: 80px 20px;
  }

  .astrology-image,
  .tarot-image {
    height: 350px;
  }

  .astrology-title,
  .tarot-title {
    font-size: 32px;
  }

  .features-section {
    padding: 80px 20px;
  }

  .features-title {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-item {
    padding: 30px 25px;
  }

  .feature-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .feature-icon {
    font-size: 35px;
  }

  .feature-item-title {
    font-size: 20px;
  }

  .feature-item-text {
    font-size: 14px;
  }

  .feature-number {
    font-size: 50px;
  }

  .horoscope-intro-section {
    min-height: 75vh;
  }

  .horoscope-intro-title {
    font-size: 32px;
  }

  .horoscope-intro-subtitle {
    font-size: 18px;
  }

  .horoscope-intro-description p {
    font-size: 15px;
  }

  .horoscope-intro-feature {
    min-width: 120px;
    padding: 18px 25px;
  }

  .zodiac-signs-section {
    padding: 80px 20px;
  }

  .zodiac-signs-title {
    font-size: 32px;
  }

  .zodiac-signs-image-wrapper {
    height: 300px;
  }

  .zodiac-signs-block-title {
    font-size: 20px;
  }

  .zodiac-signs-text-block p {
    font-size: 14px;
  }

  .zodiac-signs-stat-number {
    font-size: 36px;
  }

  .planets-influence-section {
    padding: 80px 20px;
  }

  .planets-influence-title {
    font-size: 28px;
  }

  .planets-influence-main-text p {
    font-size: 16px;
  }

  .planets-influence-visual-wrapper {
    height: 600px;
  }

  .planet-card {
    padding: 20px;
  }

  .planet-card-icon {
    font-size: 40px;
  }

  .planet-card-title {
    font-size: 18px;
  }

  .planet-card-text {
    font-size: 12px;
  }

  .planets-influence-text-box {
    padding: 25px;
  }

  .planets-influence-box-title {
    font-size: 20px;
  }

  .planets-influence-text-box p {
    font-size: 14px;
  }

  .astrology-meaning-section {
    padding: 80px 20px;
  }

  .astrology-meaning-title {
    font-size: 32px;
  }

  .astrology-meaning-image-wrapper {
    height: 350px;
  }

  .astrology-meaning-point {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .astrology-meaning-point-icon {
    font-size: 32px;
  }

  .tarot-intro-section {
    min-height: 75vh;
  }

  .tarot-intro-title {
    font-size: 32px;
  }

  .tarot-intro-subtitle {
    font-size: 18px;
  }

  .tarot-intro-description p {
    font-size: 15px;
  }

  .tarot-intro-card-item {
    min-width: 120px;
    padding: 20px 25px;
  }

  .tarot-major-arcana-section {
    padding: 80px 20px;
  }

  .tarot-major-arcana-title {
    font-size: 32px;
  }

  .tarot-major-arcana-image-wrapper {
    height: 300px;
  }

  .tarot-major-arcana-example {
    flex-direction: column;
    text-align: center;
  }

  .tarot-spreads-section {
    padding: 80px 20px;
  }

  .tarot-spreads-title {
    font-size: 32px;
  }

  .tarot-spreads-image-wrapper {
    height: 300px;
  }

  .tarot-spreads-info-item {
    flex-direction: column;
    text-align: center;
  }

  .tarot-interpretation-section {
    padding: 80px 20px;
  }

  .tarot-interpretation-title {
    font-size: 32px;
  }

  .tarot-interpretation-image-wrapper {
    height: 350px;
  }

  .tarot-interpretation-cards-overlay {
    flex-direction: column;
    gap: 15px;
  }

  .tarot-interpretation-card-mini {
    width: 60px;
    height: 90px;
  }

  .tarot-interpretation-tip {
    flex-direction: column;
    text-align: center;
  }

  .personal-intro-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .personal-intro-image-wrapper {
    transform: none;
    height: 400px;
  }

  .personal-intro-image-wrapper:hover {
    transform: scale(1.02);
  }

  .personal-form-wrapper {
    padding: 40px 30px;
  }

  .personal-form-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .personal-intro-section {
    padding: 80px 20px;
  }

  .personal-intro-title {
    font-size: 32px;
  }

  .personal-intro-image-wrapper {
    height: 300px;
  }

  .personal-intro-text {
    font-size: 15px;
  }

  .personal-form-section {
    padding: 80px 20px;
  }

  .personal-form-wrapper {
    padding: 30px 20px;
  }

  .personal-form-title {
    font-size: 28px;
  }

  .form-group {
    margin-bottom: 25px;
  }

  .form-group select,
  .form-group input {
    padding: 12px 15px;
    font-size: 15px;
  }

  .form-submit-button {
    padding: 15px 40px;
    font-size: 16px;
  }
}

.alert {
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.alert.sublayer {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: var(--text-light);
}

.alert.boxarea {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.4);
  color: var(--text-light);
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(26, 26, 46, 0.6);
  border: 2px solid rgba(106, 27, 154, 0.4);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(26, 26, 46, 0.8);
  box-shadow: 0 0 20px rgba(255, 179, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(224, 224, 224, 0.5);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-label {
  display: flex;
  gap: 15px;
  cursor: pointer;
  align-items: flex-start;
  padding: 10px;
  transition: all 0.3s ease;
}

.checkbox-label:hover {
  transform: translateX(5px);
}

.checkbox-custom {
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid var(--accent-purple);
  border-radius: 5px;
  margin-top: 3px;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: bold;
}

.checkbox-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.checkbox-title {
  font-weight: 600;
  color: var(--accent-gold-light);
  font-size: 15px;
}

.checkbox-description {
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.5;
}

.form-link {
  color: var(--accent-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.form-link:hover {
  color: var(--accent-gold-light);
  text-decoration: underline;
}

.form-submit-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-light) 100%
  );
  border: none;
  border-radius: 30px;
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(255, 179, 0, 0.3);
  overflow: hidden;
}

.form-submit-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 179, 0, 0.4);
}

.form-submit-button:active {
  transform: translateY(-1px) scale(1.02);
}

.button-text {
  position: relative;
  z-index: 2;
}

.button-icon {
  position: relative;
  z-index: 2;
  font-size: 20px;
  animation: iconFloat 2s ease-in-out infinite;
}

.form-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(106, 27, 154, 0.3);
}

.form-footer-text {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  text-align: center;
  opacity: 0.8;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-3px) rotate(180deg);
  }
}

.areawrap {
  padding: 3rem 0;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Сетка строки */
.row.justify-content-md-center {
  justify-content: center;
}

.col-md-12.col-lg-10.neutralbox {
  border-radius: 8px; /* Легкое скругление углов */
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Легкая тень для объема */
  border: 1px solid #eaeaea; /* Тонкая рамка */
}

/* Стили для основного текста */
p.bodyunit.neutralbox.display-7 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 0;
}

p.bodyunit.neutralbox.display-7 br + strong,
p.bodyunit.neutralbox.display-7 br + em strong {
  font-weight: 600;
  color: #fff;
  display: inline-block;
  margin-top: 1.5em;
}

p.bodyunit.neutralbox.display-7 em strong {
  color: #555;
  font-style: italic;
}

@media (max-width: 768px) {
  .areawrap {
    padding: 1.5rem 0;
  }
  .col-md-12.col-lg-10.neutralbox {
    padding: 1.5rem;
  }
}
