/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background-color: #0a0e17;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background: linear-gradient(135deg, #1a1f33 0%, #252b45 100%);
  border-left: 4px solid #9d4edd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.cookie-content p {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #b8b8d1;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.cookie-btn.accept {
  background-color: #9d4edd;
  color: #fff;
}

.cookie-btn.accept:hover {
  background-color: #7b2cbf;
  transform: translateY(-2px);
}

.cookie-btn.decline {
  background-color: transparent;
  color: #9d4edd;
  border: 1px solid #9d4edd;
}

.cookie-btn.decline:hover {
  background-color: rgba(157, 78, 221, 0.1);
}

/* ===== HEADER ===== */
.main-header {
  background: url("../img/header-bg.jpg") no-repeat center center/cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.main-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 23, 0.7);
  pointer-events: none;
  z-index: 1;
}

.header-top-bar {
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: rgba(10, 14, 23, 0.7);
  font-size: 0.85rem;
  color: #9d9dc8;
}

.header-symbol {
  display: flex;
  align-items: center;
  gap: 10px;
}

.symbol-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(45deg, #9d4edd, #5a189a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.symbol-text {
  font-weight: 600;
  letter-spacing: 1px;
}

.header-time i {
  margin-right: 8px;
  color: #9d4edd;
}

.main-nav {
  padding: 20px 30px;
  position: relative;
  z-index: 9;
}

.logo-link {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}

.site-logo {
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  padding: 5px;
  background: rgba(255, 255, 255, 0.03);
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-menu {
  display: flex;
  gap: 40px;
  z-index: 998;
}

.nav-item .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9rem;
  color: #b8b8d1;
  padding: 10px 15px;
  border-radius: 10px;
  position: relative;
}

.nav-item .nav-link i {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: #c77dff;
}

.nav-item .nav-link:hover {
  color: #ffffff;
  background-color: rgba(157, 78, 221, 0.15);
}

.nav-item .nav-link:hover i {
  color: #e0aaff;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

.burger-bar {
  height: 3px;
  width: 100%;
  background-color: #c77dff;
  border-radius: 10px;
  transition: 0.3s;
}

.nav-decoration {
  margin-top: 20px;
}

.decoration-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #9d4edd, transparent);
  margin: 0 auto;
  width: 80%;
}

/* ===== FOOTER ===== */
.main-footer {
  background-color: #070a12;
  color: #9d9dc8;
  position: relative;
  margin-top: auto;
}

.footer-wave {
  height: 60px;
  overflow: hidden;
  transform: rotate(180deg);
}

.footer-wave svg {
  height: 100%;
  width: 100%;
}

.footer-wave path {
  fill: #0a0e17;
}

.footer-content {
  padding: 40px 30px 30px;
}

.footer-logo-section {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo {
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
}

.footer-tagline {
  font-style: italic;
  font-family: "Merriweather", serif;
  color: #c77dff;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: #7a7a9e;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(157, 78, 221, 0.2);
}

.footer-link {
  color: #b8b8d1;
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 3px;
}

.footer-link:hover {
  color: #e0aaff;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #e0aaff;
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  text-align: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .nav-menu {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .header-top-bar {
    padding: 10px 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .main-nav {
    padding: 15px 20px;
  }

  .nav-container {
    justify-content: space-between;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: #121828;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
    gap: 0;
    transition: 0.5s;
    z-index: 997;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item {
    width: 100%;
    text-align: center;
  }

  .nav-item .nav-link {
    flex-direction: row;
    justify-content: flex-start;
    padding: 18px 25px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-item .nav-link i {
    margin-bottom: 0;
    margin-right: 15px;
    font-size: 1.2rem;
  }

  .burger-menu {
    display: flex;
  }

  .burger-menu.active .burger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .burger-menu.active .burger-bar:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active .burger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .cookie-popup {
    bottom: 10px;
    width: calc(100% - 40px);
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-logo,
  .footer-logo {
    height: 60px;
  }

  .footer-content {
    padding: 30px 20px 20px;
  }

  .footer-tagline {
    font-size: 0.9rem;
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding: 80px 30px 60px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  padding-right: 20px;
}

.hero-title {
  font-family: "Merriweather", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #ffffff;
}

.hero-title .highlight {
  color: #c77dff;
  position: relative;
}

.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(199, 125, 255, 0.2);
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #b8b8d1;
  margin-bottom: 35px;
  max-width: 90%;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #9d4edd 0%, #7b2cbf 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(157, 78, 221, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(157, 78, 221, 0.4);
}

.cta-btn.secondary {
  background-color: transparent;
  color: #9d4edd;
  border: 2px solid #9d4edd;
}

.cta-btn.secondary:hover {
  background-color: rgba(157, 78, 221, 0.1);
  transform: translateY(-3px);
}

.hero-note {
  font-size: 0.85rem;
  color: #7a7a9e;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 90%;
}

.hero-note i {
  color: #9d4edd;
  margin-top: 2px;
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.visual-frame:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(10, 14, 23, 0.9) 0%,
    transparent 100%
  );
  padding: 30px 25px 20px;
  display: flex;
  justify-content: space-around;
}

.overlay-element {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #e0e0e0;
}

.overlay-element i {
  font-size: 1.8rem;
  color: #c77dff;
  margin-bottom: 8px;
}

.overlay-element span {
  font-size: 0.9rem;
  text-align: center;
}

.hero-scroll {
  text-align: center;
  margin-top: 60px;
}

.hero-scroll i {
  color: #9d4edd;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ===== INFO SECTIONS ===== */
.info-section {
  padding: 100px 30px;
  position: relative;
}

.astro-section {
  background-color: #0d111f;
}

.tarot-section {
  background-color: #0a0e17;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.section-container.reverse {
  direction: rtl;
}

.section-container.reverse > * {
  direction: ltr;
}

.section-visual {
  position: relative;
}

.visual-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.section-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.visual-wrapper:hover .section-image {
  transform: scale(1.03);
}

.visual-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #9d4edd, #5a189a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.section-content {
  padding: 20px;
}

.section-label {
  display: inline-block;
  font-size: 0.9rem;
  color: #c77dff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-title {
  font-family: "Merriweather", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #ffffff;
}

.section-title .accent {
  color: #9d4edd;
  position: relative;
}

.section-title .accent::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: rgba(157, 78, 221, 0.2);
  z-index: -1;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b8b8d1;
  margin-bottom: 35px;
}

.section-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.feature {
  display: flex;
  gap: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(157, 78, 221, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #c77dff;
  font-size: 1.2rem;
}

.feature-text h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 0.95rem;
  color: #9d9dc8;
  line-height: 1.6;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9d4edd;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.section-link:hover {
  color: #e0aaff;
  border-bottom-color: #e0aaff;
  gap: 15px;
}

.section-note {
  background-color: rgba(157, 78, 221, 0.08);
  border-left: 3px solid #9d4edd;
  padding: 15px 20px;
  margin-bottom: 30px;
  border-radius: 0 8px 8px 0;
}

.section-note p {
  color: #b8b8d1;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.section-note i {
  color: #9d4edd;
  margin-top: 3px;
}

/* ===== RESPONSIVE: SECTIONS ===== */
@media (max-width: 992px) {
  .hero-container,
  .section-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-title {
    font-size: 2.7rem;
  }

  .hero-text {
    padding-right: 0;
    text-align: center;
  }

  .hero-subtitle,
  .hero-note {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .visual-frame {
    transform: none;
  }

  .section-container.reverse {
    direction: ltr;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-content {
    text-align: center;
  }

  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-link {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-section,
  .info-section {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-image,
  .section-image {
    height: 350px;
  }

  .visual-overlay {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 20px;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .hero-image,
  .section-image {
    height: 280px;
  }

  .visual-badge {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* ===== YEAR INTRO SECTION ===== */
.year-intro-section {
  margin-bottom: 40px;
}

.year-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 0 0 25px 25px;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(10, 14, 23, 0.8) 0%,
    rgba(10, 14, 23, 0.4) 100%
  );
  display: flex;
  align-items: center;
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

.year-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(157, 78, 221, 0.2);
  border: 1px solid rgba(157, 78, 221, 0.5);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
}

.year-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #c77dff;
  margin-right: 10px;
}

.year-label {
  font-size: 0.9rem;
  color: #b8b8d1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-title {
  font-family: "Merriweather", serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 15px;
  max-width: 800px;
}

.gradient-text {
  background: linear-gradient(90deg, #c77dff, #9d4edd, #7b2cbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.3rem;
  color: #e0e0e0;
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.year-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat {
  display: flex;
  align-items: baseline;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c77dff;
  margin-right: 10px;
}

.stat-text {
  font-size: 1rem;
  color: #b8b8d1;
  max-width: 150px;
}

.year-intro-text {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 30px;
  text-align: center;
}

.year-intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #9d9dc8;
  font-style: italic;
  border-left: 3px solid rgba(157, 78, 221, 0.5);
  padding-left: 20px;
}

/* ===== ZODIAC GRID SECTION ===== */
.zodiac-grid-section {
  padding: 100px 30px;
  background-color: #0d111f;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-title {
  font-family: "Merriweather", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.section-title .accent {
  color: #c77dff;
  position: relative;
}

.section-title .accent::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(199, 125, 255, 0.2);
  z-index: -1;
}

.section-description {
  font-size: 1.1rem;
  color: #b8b8d1;
  line-height: 1.7;
}

.zodiac-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.zodiac-wheel {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.wheel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.wheel-highlight {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(199, 125, 255, 0.3);
  border: 2px solid #c77dff;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 2;
}

.wheel-highlight.active {
  background-color: rgba(199, 125, 255, 0.8);
  box-shadow: 0 0 15px rgba(199, 125, 255, 0.8);
  width: 40px;
  height: 40px;
}

.wheel-highlight[data-sign="widder"] {
  top: 25%;
  left: 75%;
}
.wheel-highlight[data-sign="stier"] {
  top: 40%;
  left: 90%;
}
.wheel-highlight[data-sign="zwillinge"] {
  top: 60%;
  left: 90%;
}
.wheel-highlight[data-sign="krebs"] {
  top: 75%;
  left: 75%;
}
.wheel-highlight[data-sign="loewe"] {
  top: 75%;
  left: 25%;
}
.wheel-highlight[data-sign="jungfrau"] {
  top: 60%;
  left: 10%;
}
.wheel-highlight[data-sign="waage"] {
  top: 40%;
  left: 10%;
}
.wheel-highlight[data-sign="skorpion"] {
  top: 25%;
  left: 25%;
}
.wheel-highlight[data-sign="schuetze"] {
  top: 10%;
  left: 50%;
}
.wheel-highlight[data-sign="steinbock"] {
  top: 25%;
  left: 50%;
}
.wheel-highlight[data-sign="wassermann"] {
  top: 40%;
  left: 50%;
}
.wheel-highlight[data-sign="fische"] {
  top: 60%;
  left: 50%;
}

.zodiac-content {
  padding: 30px;
  background-color: rgba(20, 25, 40, 0.7);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(157, 78, 221, 0.2);
}

.zodiac-sign {
  display: none;
  animation: fadeIn 0.5s ease;
}

.zodiac-sign.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sign-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}

.sign-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #9d4edd, #7b2cbf);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.sign-name {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.sign-dates {
  color: #9d4edd;
  font-size: 0.95rem;
  font-weight: 600;
}

.sign-themes {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.theme-tag {
  background-color: rgba(157, 78, 221, 0.15);
  color: #c77dff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.sign-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b8b8d1;
  margin-bottom: 25px;
}

.sign-planet {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9d9dc8;
  font-size: 0.95rem;
}

.sign-planet i {
  color: #9d4edd;
}

.zodiac-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(157, 78, 221, 0.2);
}

.nav-btn {
  background-color: transparent;
  color: #9d4edd;
  border: 1px solid #9d4edd;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: rgba(157, 78, 221, 0.1);
  transform: translateY(-2px);
}

.prev-btn {
  margin-right: auto;
}

.next-btn {
  margin-left: auto;
}

.zodiac-dots {
  display: flex;
  gap: 8px;
}

.zodiac-note {
  max-width: 800px;
  margin: 50px auto 0;
  text-align: center;
  padding: 20px;
  background-color: rgba(157, 78, 221, 0.08);
  border-radius: 15px;
}

.zodiac-note p {
  color: #b8b8d1;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.zodiac-note i {
  color: #9d4edd;
}

/* ===== PLANETARY SECTION ===== */
.planetary-section {
  padding: 100px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.planetary-visual {
  position: sticky;
  top: 100px;
}

.visual-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.planetary-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: contrast(1.1);
}

.visual-overlay-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background-color: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  border-left: 4px solid #9d4edd;
}

.visual-overlay-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.visual-overlay-card p {
  color: #b8b8d1;
  font-size: 0.95rem;
}

.planetary-content {
  padding: 20px 0;
}

.planetary-title {
  font-family: "Merriweather", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.planetary-title .highlight {
  color: #c77dff;
  position: relative;
}

.planetary-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(199, 125, 255, 0.2);
  z-index: -1;
}

.planetary-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b8b8d1;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(157, 78, 221, 0.2);
}

.aspects-timeline {
  position: relative;
}

.aspects-timeline::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgba(157, 78, 221, 0.3);
}

.timeline-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.timeline-date {
  width: 140px;
  flex-shrink: 0;
  text-align: right;
  padding-right: 30px;
  padding-top: 5px;
}

.timeline-date .month {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #c77dff;
  margin-bottom: 5px;
}

.timeline-date .year {
  display: block;
  font-size: 1rem;
  color: #9d9dc8;
}

.timeline-content {
  flex: 1;
  padding-left: 30px;
  position: relative;
}

.timeline-content::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #9d4edd;
  border: 3px solid #0a0e17;
  box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.3);
}

.timeline-content h4 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.timeline-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #b8b8d1;
  margin-bottom: 15px;
}

.aspect-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.aspect-tag {
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.aspect-tag.expansiv {
  background-color: rgba(45, 156, 219, 0.15);
  color: #2d9cdb;
}
.aspect-tag.inspiriert {
  background-color: rgba(155, 81, 224, 0.15);
  color: #9b51e0;
}
.aspect-tag.herausfordernd {
  background-color: rgba(235, 87, 87, 0.15);
  color: #eb5757;
}
.aspect-tag.transformativ {
  background-color: rgba(111, 207, 151, 0.15);
  color: #6fcf97;
}
.aspect-tag.intensiv {
  background-color: rgba(187, 107, 217, 0.15);
  color: #bb6bd9;
}
.aspect-tag.fokussiert {
  background-color: rgba(242, 201, 76, 0.15);
  color: #f2c94c;
}
.aspect-tag.reflektiv {
  background-color: rgba(86, 204, 242, 0.15);
  color: #56ccf2;
}
.aspect-tag.innovativ {
  background-color: rgba(47, 128, 237, 0.15);
  color: #2f80ed;
}

.planetary-note {
  margin-top: 50px;
  padding: 20px;
  background-color: rgba(157, 78, 221, 0.08);
  border-radius: 15px;
  border-left: 3px solid #9d4edd;
}

.planetary-note p {
  color: #b8b8d1;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.planetary-note i {
  color: #9d4edd;
  margin-top: 3px;
}

/* ===== RESPONSIVE: HOROSCOPE PAGE ===== */
@media (max-width: 1100px) {
  .zodiac-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .planetary-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .planetary-visual {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .year-banner {
    height: 400px;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1.1rem;
  }

  .year-stats {
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
  }

  .stat {
    justify-content: center;
    text-align: center;
  }

  .section-title,
  .planetary-title {
    font-size: 2.2rem;
  }

  .zodiac-wheel {
    max-width: 350px;
  }

  .wheel-highlight {
    width: 25px;
    height: 25px;
  }

  .wheel-highlight.active {
    width: 30px;
    height: 30px;
  }

  .aspects-timeline::before {
    left: 100px;
  }

  .timeline-date {
    width: 110px;
    padding-right: 20px;
  }

  .timeline-content {
    padding-left: 20px;
  }
}

@media (max-width: 600px) {
  .year-banner {
    height: 350px;
  }

  .page-title {
    font-size: 2rem;
  }

  .banner-content {
    padding: 0 20px;
  }

  .zodiac-navigation {
    flex-direction: column;
    gap: 20px;
  }

  .nav-btn {
    width: 100%;
    justify-content: center;
  }

  .aspects-timeline::before {
    left: 80px;
  }

  .timeline-date {
    width: 90px;
  }

  .timeline-date .month {
    font-size: 1.1rem;
  }
}

/* ===== TAROT HERO SECTION ===== */
.tarot-hero-section {
  padding: 80px 30px 60px;
  background: linear-gradient(135deg, #0a0e17 0%, #121828 50%, #0a0e17 100%);
}

.tarot-hero-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tarot-hero-text {
  padding-right: 20px;
}

.tarot-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(157, 78, 221, 0.2),
    rgba(86, 204, 242, 0.2)
  );
  border-radius: 50px;
  padding: 8px 25px;
  margin-bottom: 30px;
  border: 1px solid rgba(157, 78, 221, 0.3);
}

.tarot-year {
  font-size: 1.8rem;
  font-weight: 700;
  color: #c77dff;
  margin-right: 15px;
}

.tarot-subtitle {
  font-size: 0.9rem;
  color: #56ccf2;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.tarot-main-title {
  font-family: "Merriweather", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 25px;
}

.gradient-words {
  background: linear-gradient(90deg, #c77dff, #56ccf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tarot-intro {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #b8b8d1;
  margin-bottom: 35px;
}

.tarot-disclaimer {
  background-color: rgba(86, 204, 242, 0.1);
  border-left: 3px solid #56ccf2;
  padding: 20px;
  border-radius: 0 10px 10px 0;
  display: flex;
  gap: 15px;
}

.tarot-disclaimer i {
  color: #56ccf2;
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.tarot-disclaimer p {
  color: #b8b8d1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.tarot-hero-visual {
  position: relative;
}

.tarot-card-stack {
  position: absolute;
  top: -20px;
  left: -30px;
  z-index: 2;
}

.card-stack-item {
  width: 140px;
  height: 200px;
  background: linear-gradient(135deg, #1a1f33, #252b45);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(var(--rotation));
}

.card-stack-item.card-1 {
  --rotation: -5deg;
  z-index: 3;
  transform: rotate(-5deg);
}

.card-stack-item.card-2 {
  --rotation: 0deg;
  margin-top: -180px;
  margin-left: 40px;
  z-index: 2;
  transform: rotate(0deg);
}

.card-stack-item.card-3 {
  --rotation: 5deg;
  margin-top: -180px;
  margin-left: 80px;
  z-index: 1;
  transform: rotate(5deg);
}

.card-content {
  text-align: center;
  color: white;
  padding: 20px;
}

.card-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #c77dff;
  margin-bottom: 10px;
}

.card-title {
  font-size: 1rem;
  color: #e0e0e0;
}

.tarot-main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  margin-left: 40px;
}

.hero-tarot-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(10, 14, 23, 0.9) 0%,
    transparent 100%
  );
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e0e0e0;
}

.image-caption i {
  color: #56ccf2;
}

/* ===== CARDS OF YEAR SECTION ===== */
.cards-of-year-section {
  padding: 100px 30px;
  background-color: #0d111f;
  position: relative;
  overflow: hidden;
}

.section-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(157, 78, 221, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(86, 204, 242, 0.05) 0%,
      transparent 50%
    );
  z-index: 0;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-title {
  font-family: "Merriweather", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.section-title .highlight {
  color: #c77dff;
  position: relative;
}

.section-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(199, 125, 255, 0.2);
  z-index: -1;
}

.section-description {
  font-size: 1.1rem;
  color: #b8b8d1;
  line-height: 1.7;
}

.cards-showcase {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 60px;
}

.card-display {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
}

.card-display.reverse {
  direction: rtl;
}

.card-display.reverse > * {
  direction: ltr;
}

.card-visual {
  display: flex;
  justify-content: center;
}

.card-frame {
  width: 220px;
  height: 320px;
  background: linear-gradient(135deg, #1a1f33, #252b45);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(157, 78, 221, 0.3);
  position: relative;
  overflow: hidden;
}

.card-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(157, 78, 221, 0.1),
    transparent
  );
  z-index: 1;
}

.card-inner {
  text-align: center;
  color: white;
  padding: 30px;
  z-index: 2;
  position: relative;
}

.card-roman {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #c77dff;
  margin-bottom: 15px;
}

.card-name {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 25px;
  font-family: "Merriweather", serif;
}

.card-symbol {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(157, 78, 221, 0.2),
    rgba(86, 204, 242, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.5rem;
  color: #c77dff;
}

.card-interpretation {
  padding: 30px;
  background-color: rgba(20, 25, 40, 0.7);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(157, 78, 221, 0.2);
}

.interpretation-title {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: "Merriweather", serif;
}

.interpretation-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b8b8d1;
  margin-bottom: 25px;
}

.interpretation-themes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.interpretation-themes .theme {
  background-color: rgba(157, 78, 221, 0.15);
  color: #c77dff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.cards-note {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  background-color: rgba(86, 204, 242, 0.08);
  border-radius: 15px;
  border-left: 3px solid #56ccf2;
}

.cards-note p {
  color: #b8b8d1;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cards-note i {
  color: #56ccf2;
}

/* ===== YEAR SPREAD SECTION ===== */
.year-spread-section {
  padding: 100px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.spread-visual-container {
  position: sticky;
  top: 100px;
}

.spread-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.spread-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.spread-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay-point {
  position: absolute;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.point-marker {
  width: 20px;
  height: 20px;
  background-color: #c77dff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px rgba(199, 125, 255, 0.3);
  transition: all 0.3s ease;
}

.overlay-point:hover .point-marker {
  width: 30px;
  height: 30px;
  box-shadow: 0 0 0 8px rgba(199, 125, 255, 0.4);
}

.point-tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(10, 14, 23, 0.9);
  color: white;
  padding: 8px 15px;
  border-radius: 10px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(157, 78, 221, 0.3);
}

.overlay-point:hover .point-tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}

.spread-content {
  padding: 20px 0;
}

.content-inner {
  max-width: 700px;
}

.spread-title {
  font-family: "Merriweather", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.spread-title .accent {
  color: #56ccf2;
  position: relative;
}

.spread-title .accent::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(86, 204, 242, 0.2);
  z-index: -1;
}

.spread-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b8b8d1;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(86, 204, 242, 0.2);
}

.spread-positions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.position-card {
  background-color: rgba(20, 25, 40, 0.7);
  border-radius: 15px;
  padding: 25px;
  border-left: 4px solid #56ccf2;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.position-card:hover {
  transform: translateY(-5px);
  background-color: rgba(20, 25, 40, 0.9);
}

.position-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 20px;
}

.position-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #56ccf2;
}

.position-title {
  font-size: 1.4rem;
  color: #ffffff;
}

.position-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #b8b8d1;
}

.spread-instruction {
  background-color: rgba(86, 204, 242, 0.1);
  border-radius: 15px;
  padding: 25px;
  border-left: 3px solid #56ccf2;
}

.spread-instruction h4 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spread-instruction h4 i {
  color: #56ccf2;
}

.spread-instruction p {
  color: #b8b8d1;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ===== ELEMENTS & PRACTICE SECTION ===== */
.elements-practice-section {
  padding: 100px 30px;
  background-color: #0a0e17;
}

.elements-container {
  max-width: 1200px;
  margin: 0 auto 80px;
}

.elements-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.elements-title {
  font-family: "Merriweather", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.elements-title .gradient {
  background: linear-gradient(90deg, #c77dff, #56ccf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.elements-description {
  font-size: 1.1rem;
  color: #b8b8d1;
  line-height: 1.7;
}

.elements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.element-card {
  background-color: rgba(20, 25, 40, 0.7);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.element-card:hover {
  transform: translateY(-10px);
  border-color: rgba(157, 78, 221, 0.3);
}

.element-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.2rem;
}

.element-icon.fire {
  background-color: rgba(235, 87, 87, 0.15);
  color: #eb5757;
}

.element-icon.water {
  background-color: rgba(47, 128, 237, 0.15);
  color: #2f80ed;
}

.element-icon.air {
  background-color: rgba(86, 204, 242, 0.15);
  color: #56ccf2;
}

.element-icon.earth {
  background-color: rgba(111, 207, 151, 0.15);
  color: #6fcf97;
}

.element-name {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.element-subtitle {
  font-size: 1rem;
  color: #b8b8d1;
  font-weight: 400;
}

.element-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #b8b8d1;
  margin-bottom: 20px;
}

.element-association {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.element-association .association {
  background-color: rgba(157, 78, 221, 0.1);
  color: #c77dff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.practice-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.practice-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.practice-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.practice-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(10, 14, 23, 0.95) 0%,
    transparent 100%
  );
  padding: 30px;
}

.practice-quote p {
  color: #ffffff;
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
  font-family: "Merriweather", serif;
}

.practice-content {
  padding: 20px;
}

.practice-title {
  font-family: "Merriweather", serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.practice-title .accent {
  color: #c77dff;
  position: relative;
}

.practice-title .accent::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(199, 125, 255, 0.2);
  z-index: -1;
}

.practice-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b8b8d1;
  margin-bottom: 40px;
}

.practice-tips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.tip {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.tip-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #9d4edd, #7b2cbf);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.tip-content h4 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.tip-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b8b8d1;
}

.practice-note {
  background-color: rgba(157, 78, 221, 0.08);
  border-radius: 15px;
  padding: 20px;
  border-left: 3px solid #9d4edd;
}

.practice-note p {
  color: #b8b8d1;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.practice-note i {
  color: #9d4edd;
  margin-top: 3px;
}

/* ===== RESPONSIVE: TAROT PAGE ===== */
@media (max-width: 1100px) {
  .tarot-hero-container,
  .year-spread-section,
  .practice-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .tarot-hero-text {
    padding-right: 0;
    text-align: center;
  }

  .tarot-card-stack {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }

  .card-stack-item.card-2,
  .card-stack-item.card-3 {
    margin-top: 0;
    margin-left: -40px;
  }

  .tarot-main-image {
    margin-left: 0;
  }

  .spread-visual-container {
    position: relative;
    top: 0;
  }

  .spread-image {
    height: 400px;
  }

  .elements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tarot-main-title {
    font-size: 2.5rem;
  }

  .section-title,
  .spread-title,
  .elements-title,
  .practice-title {
    font-size: 2.2rem;
  }

  .card-display {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .card-display.reverse {
    direction: ltr;
  }

  .card-visual {
    display: flex;
    justify-content: center;
  }

  .card-frame {
    width: 180px;
    height: 260px;
  }

  .tarot-card-stack {
    justify-content: center;
  }

  .card-stack-item {
    width: 100px;
    height: 150px;
  }

  .card-content {
    padding: 10px;
  }

  .card-number {
    font-size: 1.2rem;
  }

  .card-title {
    font-size: 0.9rem;
  }

  .hero-tarot-image {
    height: 300px;
  }

  .overlay-point {
    display: none;
  }
}

@media (max-width: 600px) {
  .tarot-hero-section,
  .cards-of-year-section,
  .year-spread-section,
  .elements-practice-section {
    padding: 60px 20px;
  }

  .tarot-main-title {
    font-size: 2rem;
  }

  .tarot-badge {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .elements-grid {
    grid-template-columns: 1fr;
  }

  .card-stack-item.card-2,
  .card-stack-item.card-3 {
    margin-left: -60px;
  }

  .practice-image {
    height: 350px;
  }
}

/* ===== PERSONAL INTRO SECTION ===== */
.personal-intro-section {
  padding: 80px 30px 60px;
  background: linear-gradient(135deg, #0a0e17 0%, #12172a 50%, #0a0e17 100%);
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text {
  padding-right: 20px;
}

.page-main-title {
  font-family: "Merriweather", serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 25px;
}

.page-main-title .gradient {
  background: linear-gradient(90deg, #c77dff, #5a189a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #b8b8d1;
  margin-bottom: 40px;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #e0e0e0;
}

.feature-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(157, 78, 221, 0.2),
    rgba(90, 24, 154, 0.2)
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c77dff;
  font-size: 1.2rem;
}

.intro-note {
  background-color: rgba(86, 204, 242, 0.1);
  border-left: 3px solid #56ccf2;
  padding: 20px;
  border-radius: 0 10px 10px 0;
  color: #b8b8d1;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.intro-note i {
  color: #56ccf2;
  margin-top: 3px;
}

.intro-visual {
  position: relative;
}

.visual-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

.intro-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.visual-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visual-badge span {
  background-color: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(10px);
  color: #c77dff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(199, 125, 255, 0.3);
}

/* ===== PERSONAL FORM SECTION ===== */
.personal-form-section {
  padding: 100px 30px;
  background-color: #0d111f;
}

.form-container {
  max-width: 1000px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.form-title {
  font-family: "Merriweather", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.form-title .accent {
  color: #c77dff;
  position: relative;
}

.form-title .accent::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(199, 125, 255, 0.2);
  z-index: -1;
}

.form-description {
  font-size: 1.1rem;
  color: #b8b8d1;
  line-height: 1.7;
}

.quiz-form {
  background-color: rgba(20, 25, 40, 0.7);
  border-radius: 25px;
  padding: 50px;
  border: 1px solid rgba(157, 78, 221, 0.2);
  backdrop-filter: blur(10px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  color: #c77dff;
  font-size: 1.1rem;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background-color: rgba(10, 14, 23, 0.8);
  border: 2px solid rgba(157, 78, 221, 0.3);
  border-radius: 12px;
  color: #e0e0e0;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  transition: all 0.3s ease;
}

.input-with-icon textarea {
  resize: vertical;
  min-height: 100px;
  padding-top: 15px;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
  outline: none;
  border-color: #9d4edd;
  box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.2);
}

.input-with-icon input::placeholder,
.input-with-icon textarea::placeholder {
  color: #7a7a9e;
}

.input-note {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #7a7a9e;
  font-style: italic;
}

.form-footer {
  margin-top: 50px;
}

.privacy-note {
  background-color: rgba(86, 204, 242, 0.1);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.privacy-note i {
  color: #56ccf2;
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.privacy-note p {
  color: #b8b8d1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.privacy-note a {
  color: #56ccf2;
  text-decoration: underline;
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.form-btn {
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.form-btn.primary {
  background: linear-gradient(135deg, #9d4edd 0%, #7b2cbf 100%);
  color: white;
  border: none;
  box-shadow: 0 5px 15px rgba(157, 78, 221, 0.3);
}

.form-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(157, 78, 221, 0.4);
}

.form-btn.secondary {
  background-color: transparent;
  color: #9d4edd;
  border: 2px solid #9d4edd;
}

.form-btn.secondary:hover {
  background-color: rgba(157, 78, 221, 0.1);
  transform: translateY(-3px);
}

.form-disclaimer {
  background-color: rgba(235, 87, 87, 0.1);
  border-radius: 15px;
  padding: 20px;
  border-left: 3px solid #eb5757;
}

.form-disclaimer p {
  color: #b8b8d1;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-disclaimer i {
  color: #eb5757;
  margin-top: 3px;
}

/* ===== RESULTS SECTION ===== */
.results-section {
  padding: 100px 30px;
  background-color: #0a0e17;
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
}

.results-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.results-title {
  font-family: "Merriweather", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.results-title .gradient {
  background: linear-gradient(90deg, #c77dff, #56ccf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.results-description {
  font-size: 1.1rem;
  color: #b8b8d1;
  line-height: 1.7;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.result-card {
  background-color: rgba(20, 25, 40, 0.7);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(157, 78, 221, 0.1);
  transition: transform 0.3s ease;
}

.result-card:hover {
  transform: translateY(-10px);
  border-color: rgba(157, 78, 221, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.result-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(157, 78, 221, 0.2),
    rgba(86, 204, 242, 0.2)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #c77dff;
  font-size: 1.8rem;
}

.result-card h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.result-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #b8b8d1;
  margin-bottom: 20px;
}

.result-features {
  list-style: none;
  padding: 0;
}

.result-features li {
  color: #b8b8d1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.result-features i {
  color: #6fcf97;
  font-size: 0.9rem;
}

.process-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.process-step {
  background-color: rgba(20, 25, 40, 0.5);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #9d4edd, #7b2cbf);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b8b8d1;
}

.final-note {
  background-color: rgba(157, 78, 221, 0.1);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(157, 78, 221, 0.2);
}

.note-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(157, 78, 221, 0.2),
    rgba(90, 24, 154, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c77dff;
  font-size: 2rem;
  flex-shrink: 0;
}

.note-content h4 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.note-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b8b8d1;
}

/* ===== RESPONSIVE: PERSONAL PAGE ===== */
@media (max-width: 992px) {
  .intro-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .intro-text {
    padding-right: 0;
    text-align: center;
  }

  .intro-features {
    align-items: center;
  }

  .feature-item {
    justify-content: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .results-grid,
  .process-info {
    grid-template-columns: 1fr;
  }

  .final-note {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .personal-intro-section,
  .personal-form-section,
  .results-section {
    padding: 60px 20px;
  }

  .page-main-title {
    font-size: 2.5rem;
  }

  .form-title,
  .results-title {
    font-size: 2.2rem;
  }

  .quiz-form {
    padding: 30px 20px;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-btn {
    justify-content: center;
    width: 100%;
  }

  .visual-badge {
    flex-direction: row;
    bottom: 15px;
    right: 15px;
  }

  .visual-badge span {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .page-main-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1.1rem;
  }

  .form-title,
  .results-title {
    font-size: 1.8rem;
  }

  .intro-image {
    height: 300px;
  }

  .result-card {
    padding: 20px;
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
  padding: 80px 30px 100px;
  background: linear-gradient(135deg, #0a0e17 0%, #12172a 50%, #0a0e17 100%);
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.contact-title {
  font-family: "Merriweather", serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-title .gradient {
  background: linear-gradient(90deg, #c77dff, #56ccf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #b8b8d1;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  background-color: rgba(20, 25, 40, 0.5);
  border-radius: 15px;
  border: 1px solid rgba(157, 78, 221, 0.2);
}

.info-item i {
  font-size: 1.8rem;
  color: #c77dff;
}

.info-label {
  display: block;
  font-size: 0.9rem;
  color: #9d9dc8;
  margin-bottom: 5px;
}

.info-value {
  display: block;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}

.contact-form-wrapper {
  background-color: rgba(20, 25, 40, 0.7);
  border-radius: 25px;
  padding: 50px;
  border: 1px solid rgba(157, 78, 221, 0.2);
  backdrop-filter: blur(10px);
  margin-bottom: 50px;
}

.form-intro {
  text-align: center;
  margin-bottom: 40px;
}

.form-intro h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.form-intro h2 i {
  color: #c77dff;
}

.form-intro p {
  color: #b8b8d1;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Стили для сообщений формы */
.alert {
  margin-bottom: 30px;
}

.alert-content {
  display: flex;
  gap: 20px;
  padding: 25px;
  border-radius: 15px;
  align-items: flex-start;
}

.alert-content.success {
  background-color: rgba(111, 207, 151, 0.15);
  border-left: 4px solid #6fcf97;
}

.alert-content.error {
  background-color: rgba(235, 87, 87, 0.15);
  border-left: 4px solid #eb5757;
}

.alert-content i {
  font-size: 1.8rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.alert-content.success i {
  color: #6fcf97;
}

.alert-content.error i {
  color: #eb5757;
}

.alert-content h4 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.alert-content p {
  color: #b8b8d1;
  font-size: 1rem;
  line-height: 1.6;
}

/* Стили для полей формы */
.form-fields {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  color: #c77dff;
  font-size: 1.1rem;
  z-index: 2;
}

.form-control {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background-color: rgba(10, 14, 23, 0.8);
  border: 2px solid rgba(157, 78, 221, 0.3);
  border-radius: 12px;
  color: #e0e0e0;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #9d4edd;
  box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.2);
}

.form-control::placeholder {
  color: #7a7a9e;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  padding-top: 15px;
}

.input-hint {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #7a7a9e;
  font-style: italic;
}

/* Стили для чекбоксов */
.captcha-container,
.consent-container {
  background-color: rgba(10, 14, 23, 0.5);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(157, 78, 221, 0.2);
}

.captcha-checkbox,
.consent-checkbox {
  position: relative;
}

.captcha-checkbox input[type="checkbox"],
.consent-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.captcha-checkbox label,
.consent-checkbox label {
  display: block;
  cursor: pointer;
}

.checkbox-visual {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.checkbox-visual i {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(157, 78, 221, 0.2),
    rgba(86, 204, 242, 0.2)
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c77dff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.checkbox-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.checkbox-main {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.5;
}

.checkbox-sub {
  color: #b8b8d1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-sub a {
  color: #56ccf2;
  text-decoration: underline;
}

/* Псевдочекбокс */
.captcha-checkbox label:before,
.consent-checkbox label:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: rgba(10, 14, 23, 0.8);
  border: 2px solid rgba(157, 78, 221, 0.5);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.captcha-checkbox label:after,
.consent-checkbox label:after {
  content: "✓";
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.captcha-checkbox input[type="checkbox"]:checked + label:before,
.consent-checkbox input[type="checkbox"]:checked + label:before {
  background-color: #9d4edd;
  border-color: #9d4edd;
}

.captcha-checkbox input[type="checkbox"]:checked + label:after,
.consent-checkbox input[type="checkbox"]:checked + label:after {
  color: white;
}

/* Кнопка отправки */
.contact-submit {
  padding: 18px 45px;
  background: linear-gradient(135deg, #9d4edd 0%, #7b2cbf 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(157, 78, 221, 0.3);
}

.contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(157, 78, 221, 0.4);
}

.contact-submit:active {
  transform: translateY(-1px);
}

.form-footer-note {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(157, 78, 221, 0.2);
}

.form-footer-note p {
  color: #b8b8d1;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto;
}

.form-footer-note i {
  color: #9d4edd;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Disclaimer */
.contact-disclaimer {
  background-color: rgba(86, 204, 242, 0.1);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 25px;
  align-items: center;
  border: 1px solid rgba(86, 204, 242, 0.2);
}

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(86, 204, 242, 0.2),
    rgba(47, 128, 237, 0.2)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #56ccf2;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.disclaimer-content h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.disclaimer-content p {
  color: #b8b8d1;
  line-height: 1.6;
  margin-bottom: 10px;
}

.disclaimer-content a {
  color: #56ccf2;
  text-decoration: underline;
}

/* ===== RESPONSIVE: CONTACT PAGE ===== */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 20px 80px;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .info-item {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .checkbox-visual {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .captcha-checkbox label:before,
  .consent-checkbox label:before,
  .captcha-checkbox label:after,
  .consent-checkbox label:after {
    top: 5px;
  }

  .contact-disclaimer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .form-footer-note p {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1.1rem;
  }

  .form-intro h2 {
    font-size: 1.7rem;
    flex-direction: column;
    gap: 10px;
  }

  .contact-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-section {
  padding: 80px 30px 100px;
  background: linear-gradient(135deg, #0a0e17 0%, #0d111f 50%, #0a0e17 100%);
  min-height: calc(100vh - 300px);
}

.legal-container {
  max-width: 1000px;
  margin: 0 auto;
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(157, 78, 221, 0.3);
}

.legal-header h1 {
  font-family: "Merriweather", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.legal-subtitle {
  font-size: 1.2rem;
  color: #b8b8d1;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 25px;
}

.legal-update {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(157, 78, 221, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  color: #c77dff;
  font-size: 0.95rem;
}

.legal-update i {
  font-size: 1rem;
}

.legal-content {
  background-color: rgba(20, 25, 40, 0.5);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid rgba(157, 78, 221, 0.2);
  backdrop-filter: blur(10px);
}

.legal-article {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(157, 78, 221, 0.1);
}

.legal-article:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-article h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.article-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #9d4edd, #7b2cbf);
  border-radius: 10px;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.legal-article p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #b8b8d1;
  margin-bottom: 20px;
}

.legal-article ul {
  margin-left: 25px;
  margin-bottom: 25px;
}

.legal-article li {
  color: #b8b8d1;
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1.05rem;
}

.contact-block {
  background-color: rgba(86, 204, 242, 0.1);
  border-left: 4px solid #56ccf2;
  padding: 25px;
  border-radius: 0 15px 15px 0;
  margin: 25px 0;
}

.contact-block p {
  margin-bottom: 15px;
  color: #e0e0e0;
  line-height: 1.6;
}

.contact-block strong {
  color: #ffffff;
  font-size: 1.2rem;
}

.cookie-table {
  margin: 25px 0;
  border: 1px solid rgba(157, 78, 221, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

.cookie-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr 1.2fr;
  border-bottom: 1px solid rgba(157, 78, 221, 0.2);
}

.cookie-row:last-child {
  border-bottom: none;
}

.cookie-row.header {
  background-color: rgba(157, 78, 221, 0.15);
  font-weight: 600;
  color: #ffffff;
}

.cookie-row > div {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(157, 78, 221, 0.2);
}

.cookie-row > div:last-child {
  border-right: none;
}

.cookie-name {
  color: #c77dff;
  font-weight: 600;
  font-family: monospace;
  font-size: 0.95rem;
}

.cookie-purpose {
  color: #b8b8d1;
}

.cookie-duration {
  color: #9d9dc8;
  font-size: 0.95rem;
}

.type-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.type-tag.essential {
  background-color: rgba(111, 207, 151, 0.15);
  color: #6fcf97;
}

.type-tag.functional {
  background-color: rgba(47, 128, 237, 0.15);
  color: #2f80ed;
}

.type-tag.preference {
  background-color: rgba(242, 201, 76, 0.15);
  color: #f2c94c;
}

.management-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 30px 0;
}

.option {
  background-color: rgba(10, 14, 23, 0.5);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid rgba(157, 78, 221, 0.2);
}

.option h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.option p {
  font-size: 1rem;
  color: #b8b8d1;
  margin-bottom: 15px;
}

.option em {
  color: #9d4edd;
  font-style: italic;
}

.contact-summary {
  background-color: rgba(157, 78, 221, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin-top: 30px;
  border-left: 4px solid #9d4edd;
}

.contact-summary h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.contact-summary p {
  margin-bottom: 10px;
  color: #e0e0e0;
  font-size: 1.05rem;
}

.contact-summary strong {
  color: #c77dff;
}

.legal-note {
  background-color: rgba(86, 204, 242, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin-top: 30px;
  border-left: 3px solid #56ccf2;
}

.legal-note p {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #b8b8d1;
  font-size: 1rem;
  margin-bottom: 0;
}

.legal-note i {
  color: #56ccf2;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===== RESPONSIVE: LEGAL PAGES ===== */
@media (max-width: 992px) {
  .legal-content {
    padding: 30px;
  }

  .management-options {
    grid-template-columns: 1fr;
  }

  .cookie-row {
    grid-template-columns: 1fr;
    border-bottom: 2px solid rgba(157, 78, 221, 0.3);
  }

  .cookie-row > div {
    border-right: none;
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
    padding: 12px 15px;
  }

  .cookie-row > div:last-child {
    border-bottom: none;
  }

  .cookie-row.header {
    display: none;
  }

  .cookie-row > div::before {
    content: attr(data-label);
    font-weight: 600;
    color: #c77dff;
    margin-right: 10px;
    min-width: 120px;
  }

  .cookie-name::before {
    content: "Cookie-Name: ";
  }
  .cookie-purpose::before {
    content: "Zweck: ";
  }
  .cookie-duration::before {
    content: "Speicherdauer: ";
  }
  .cookie-type::before {
    content: "Typ: ";
  }
}

@media (max-width: 768px) {
  .legal-section {
    padding: 60px 20px 80px;
  }

  .legal-header h1 {
    font-size: 2.3rem;
  }

  .legal-subtitle {
    font-size: 1.1rem;
  }

  .legal-article h2 {
    font-size: 1.6rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .legal-content {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .legal-header h1 {
    font-size: 2rem;
  }

  .legal-article {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .contact-block {
    padding: 20px;
  }

  .option {
    padding: 20px;
  }
}
