body {
  margin: 0;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  background-color: #1a2f1a;
  color: #ffffff;
  cursor: none;
  scroll-behavior: smooth;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  overflow-y: visible;
}

/* Dynamic Iridescent Melting Sphere Background */
.iridescent-sphere-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: 
    radial-gradient(ellipse at center, 
      rgba(26, 47, 26, 0.8) 0%, 
      rgba(26, 47, 26, 0.9) 50%, 
      rgba(26, 47, 26, 1) 100%),
    linear-gradient(45deg, 
      rgba(255, 255, 255, 0.02) 0%, 
      rgba(255, 182, 193, 0.02) 25%, 
      rgba(255, 215, 0, 0.02) 50%, 
      rgba(173, 216, 230, 0.02) 75%, 
      rgba(255, 140, 0, 0.02) 100%);
  animation: backgroundShift 30s ease-in-out infinite;
}

.melting-sphere {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: 
    radial-gradient(circle at 30% 30%, 
      rgba(255, 255, 255, 0.9) 0%, 
      rgba(255, 182, 193, 0.8) 15%, 
      rgba(255, 215, 0, 0.7) 30%, 
      rgba(173, 216, 230, 0.6) 45%, 
      rgba(255, 140, 0, 0.5) 60%, 
      rgba(255, 255, 255, 0.4) 75%, 
      transparent 100%),
    radial-gradient(circle at 70% 70%, 
      rgba(255, 255, 255, 0.8) 0%, 
      rgba(255, 182, 193, 0.7) 20%, 
      rgba(255, 215, 0, 0.6) 40%, 
      rgba(173, 216, 230, 0.5) 60%, 
      rgba(255, 140, 0, 0.4) 80%, 
      transparent 100%),
    conic-gradient(from 0deg at 50% 50%,
      rgba(255, 255, 255, 0.6) 0deg,
      rgba(255, 182, 193, 0.5) 60deg,
      rgba(255, 215, 0, 0.4) 120deg,
      rgba(173, 216, 230, 0.3) 180deg,
      rgba(255, 140, 0, 0.4) 240deg,
      rgba(255, 255, 255, 0.5) 300deg,
      rgba(255, 255, 255, 0.6) 360deg),
    radial-gradient(circle at 50% 50%,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 182, 193, 0.2) 25%,
      rgba(255, 215, 0, 0.1) 50%,
      rgba(173, 216, 230, 0.2) 75%,
      transparent 100%);
  border-radius: 50%;
  filter: blur(2px) hue-rotate(0deg);
  animation: sphereMorph 20s ease-in-out infinite;
  box-shadow: 
    0 0 50px rgba(255, 255, 255, 0.3),
    0 0 100px rgba(255, 182, 193, 0.2),
    0 0 150px rgba(255, 215, 0, 0.1),
    inset 0 0 50px rgba(255, 255, 255, 0.1);
  mix-blend-mode: screen;
}



.liquid-ripples {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: rippleExpand 8s ease-out infinite;
}

.ripple-1 {
  width: 100px;
  height: 100px;
  animation-delay: 0s;
  border-color: rgba(255, 182, 193, 0.4);
}

.ripple-2 {
  width: 150px;
  height: 150px;
  animation-delay: 2s;
  border-color: rgba(255, 215, 0, 0.4);
}

.ripple-3 {
  width: 200px;
  height: 200px;
  animation-delay: 4s;
  border-color: rgba(173, 216, 230, 0.4);
}

.ripple-4 {
  width: 250px;
  height: 250px;
  animation-delay: 6s;
  border-color: rgba(255, 140, 0, 0.4);
}

.sphere-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 50%;
  animation: particleFloat 15s ease-in-out infinite;
}

.particle-1 {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle-2 {
  top: 60%;
  left: 70%;
  animation-delay: 2s;
  animation-duration: 15s;
}

.particle-3 {
  top: 40%;
  left: 20%;
  animation-delay: 4s;
  animation-duration: 18s;
}

.particle-4 {
  top: 80%;
  left: 40%;
  animation-delay: 6s;
  animation-duration: 14s;
}

.particle-5 {
  top: 30%;
  left: 80%;
  animation-delay: 8s;
  animation-duration: 16s;
}

.particle-6 {
  top: 70%;
  left: 10%;
  animation-delay: 10s;
  animation-duration: 13s;
}

@keyframes sphereMorph {
  0%, 100% {
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: blur(2px) hue-rotate(0deg);
  }
  12.5% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(-50%, -50%) scale(1.1) rotate(45deg);
    filter: blur(2px) hue-rotate(45deg);
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 80%;
    transform: translate(-50%, -50%) scale(0.9) rotate(90deg);
    filter: blur(2px) hue-rotate(90deg);
  }
  37.5% {
    border-radius: 40% 30% 60% 70% / 70% 40% 60% 30%;
    transform: translate(-50%, -50%) scale(1.05) rotate(135deg);
    filter: blur(2px) hue-rotate(135deg);
  }
  50% {
    border-radius: 70% 30% 40% 60% / 30% 70% 60% 40%;
    transform: translate(-50%, -50%) scale(0.95) rotate(180deg);
    filter: blur(2px) hue-rotate(180deg);
  }
  62.5% {
    border-radius: 50% 60% 30% 70% / 60% 50% 40% 30%;
    transform: translate(-50%, -50%) scale(1.08) rotate(225deg);
    filter: blur(2px) hue-rotate(225deg);
  }
  75% {
    border-radius: 30% 70% 60% 40% / 40% 30% 70% 60%;
    transform: translate(-50%, -50%) scale(0.92) rotate(270deg);
    filter: blur(2px) hue-rotate(270deg);
  }
  87.5% {
    border-radius: 60% 40% 70% 30% / 30% 60% 40% 70%;
    transform: translate(-50%, -50%) scale(1.03) rotate(315deg);
    filter: blur(2px) hue-rotate(315deg);
  }
}

@keyframes backgroundShift {
  0%, 100% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
}

@keyframes rippleExpand {
  0% {
    width: 50px;
    height: 50px;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    width: 400px;
    height: 400px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-50px) translateX(20px) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-100px) translateX(-30px) scale(0.8);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-30px) translateX(40px) scale(1.1);
    opacity: 0.7;
  }
}

/* Subtle Microscopic Glowing Stars */
.star-field {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 1px;
  height: 1px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  border-radius: 50%;
  animation: starTwinkle 8s ease-in-out infinite;
  box-shadow: 
    0 0 2px rgba(255, 255, 255, 0.6),
    0 0 4px rgba(255, 255, 255, 0.3),
    0 0 6px rgba(255, 255, 255, 0.1);
}

.star-1 { top: 5%; left: 10%; animation-delay: 0s; animation-duration: 6s; }
.star-2 { top: 15%; left: 25%; animation-delay: 1s; animation-duration: 7s; }
.star-3 { top: 8%; left: 45%; animation-delay: 2s; animation-duration: 8s; }
.star-4 { top: 22%; left: 65%; animation-delay: 3s; animation-duration: 6.5s; }
.star-5 { top: 12%; left: 85%; animation-delay: 4s; animation-duration: 7.5s; }
.star-6 { top: 35%; left: 15%; animation-delay: 5s; animation-duration: 8.5s; }
.star-7 { top: 28%; left: 35%; animation-delay: 6s; animation-duration: 6s; }
.star-8 { top: 42%; left: 55%; animation-delay: 7s; animation-duration: 7s; }
.star-9 { top: 38%; left: 75%; animation-delay: 8s; animation-duration: 8s; }
.star-10 { top: 25%; left: 95%; animation-delay: 9s; animation-duration: 6.5s; }
.star-11 { top: 55%; left: 5%; animation-delay: 10s; animation-duration: 7.5s; }
.star-12 { top: 48%; left: 25%; animation-delay: 11s; animation-duration: 8.5s; }
.star-13 { top: 62%; left: 45%; animation-delay: 12s; animation-duration: 6s; }
.star-14 { top: 58%; left: 65%; animation-delay: 13s; animation-duration: 7s; }
.star-15 { top: 72%; left: 85%; animation-delay: 14s; animation-duration: 8s; }
.star-16 { top: 75%; left: 15%; animation-delay: 15s; animation-duration: 6.5s; }
.star-17 { top: 68%; left: 35%; animation-delay: 16s; animation-duration: 7.5s; }
.star-18 { top: 82%; left: 55%; animation-delay: 17s; animation-duration: 8.5s; }
.star-19 { top: 88%; left: 75%; animation-delay: 18s; animation-duration: 6s; }
.star-20 { top: 92%; left: 95%; animation-delay: 19s; animation-duration: 7s; }

@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.1;
    transform: scale(0.8);
    box-shadow: 
      0 0 1px rgba(255, 255, 255, 0.3),
      0 0 2px rgba(255, 255, 255, 0.1);
  }
  25% {
    opacity: 0.4;
    transform: scale(1.2);
    box-shadow: 
      0 0 3px rgba(255, 255, 255, 0.7),
      0 0 5px rgba(255, 255, 255, 0.4),
      0 0 7px rgba(255, 255, 255, 0.2);
  }
  50% {
    opacity: 0.2;
    transform: scale(0.9);
    box-shadow: 
      0 0 2px rgba(255, 255, 255, 0.5),
      0 0 4px rgba(255, 255, 255, 0.2);
  }
  75% {
    opacity: 0.6;
    transform: scale(1.1);
    box-shadow: 
      0 0 4px rgba(255, 255, 255, 0.8),
      0 0 6px rgba(255, 255, 255, 0.5),
      0 0 8px rgba(255, 255, 255, 0.3);
  }
}

/* Header and Navigation */
header {
  background-color: rgba(26, 47, 26, 0.9);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(244, 164, 96, 0.2);
  position: relative;
}

/* Logo Styles */
.logo {
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  left: 2rem;
  top: 1.5rem;
}

.logo-link {
  text-decoration: none;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(5px);
  border: none;
  outline: none;
}

.logo-link:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  text-shadow: 
    0 0 15px rgba(255, 165, 0, 0.8),
    0 0 30px rgba(255, 165, 0, 0.6),
    0 0 45px rgba(255, 165, 0, 0.4),
    0 0 60px rgba(255, 165, 0, 0.2);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
}

.logo-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Logo Glow Effect */
.logo-link::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: transparent;
  overflow: hidden;
  white-space: nowrap;
  animation: logoGlow 3s ease-in-out infinite;
  animation-play-state: paused;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-link:hover::before {
  animation-play-state: running;
  opacity: 1;
}

@keyframes logoGlow {
  0%, 100% {
    transform: translate(0);
    text-shadow: 
      0 0 5px rgba(255, 165, 0, 0.3),
      0 0 10px rgba(255, 165, 0, 0.2),
      0 0 15px rgba(255, 165, 0, 0.1);
  }
  25% {
    transform: translate(-1px, 1px);
    text-shadow: 
      0 0 8px rgba(255, 165, 0, 0.4),
      0 0 15px rgba(255, 165, 0, 0.3),
      0 0 20px rgba(255, 165, 0, 0.2);
  }
  50% {
    transform: translate(1px, -1px);
    text-shadow: 
      0 0 10px rgba(255, 165, 0, 0.5),
      0 0 20px rgba(255, 165, 0, 0.4),
      0 0 30px rgba(255, 165, 0, 0.3);
  }
  75% {
    transform: translate(-1px, -1px);
    text-shadow: 
      0 0 8px rgba(255, 165, 0, 0.4),
      0 0 15px rgba(255, 165, 0, 0.3),
      0 0 20px rgba(255, 165, 0, 0.2);
  }
}

/* Logo Floating Animation */
.logo-link:hover {
  animation: logoFloat 3s ease-in-out infinite, logoPulseGlow 2s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(-3px) scale(1.05);
  }
  50% {
    transform: translateY(-5px) scale(1.08);
  }
}

@keyframes logoPulseGlow {
  0%, 100% {
    text-shadow: 
      0 0 15px rgba(255, 165, 0, 0.8),
      0 0 30px rgba(255, 165, 0, 0.6),
      0 0 45px rgba(255, 165, 0, 0.4),
      0 0 60px rgba(255, 165, 0, 0.2);
  }
  50% {
    text-shadow: 
      0 0 20px rgba(255, 165, 0, 1),
      0 0 40px rgba(255, 165, 0, 0.8),
      0 0 60px rgba(255, 165, 0, 0.6),
      0 0 80px rgba(255, 165, 0, 0.4);
  }
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

nav ul li {
  display: inline;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(5px);
  border: none;
  outline: none;
}

nav a:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  text-shadow: 
    0 0 15px rgba(255, 165, 0, 0.8),
    0 0 30px rgba(255, 165, 0, 0.6),
    0 0 45px rgba(255, 165, 0, 0.4),
    0 0 60px rgba(255, 165, 0, 0.2);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
}

/* Smooth Glow Animation Base */
nav a::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: transparent;
  overflow: hidden;
  white-space: nowrap;
  animation: smoothGlow 2s ease-in-out infinite;
  animation-play-state: paused;
  opacity: 0;
  transition: opacity 0.3s ease;
}

nav a:hover::before {
  animation-play-state: running;
  opacity: 1;
}

/* Glitch Text Effect */
nav a[data-text]::before {
  content: attr(data-text);
}

/* Smooth Glow Animation Keyframes */
@keyframes smoothGlow {
  0%, 100% {
    transform: translate(0);
    text-shadow: 
      0 0 5px rgba(255, 165, 0, 0.3),
      0 0 10px rgba(255, 165, 0, 0.2),
      0 0 15px rgba(255, 165, 0, 0.1);
  }
  25% {
    transform: translate(-1px, 1px);
    text-shadow: 
      0 0 8px rgba(255, 165, 0, 0.4),
      0 0 15px rgba(255, 165, 0, 0.3),
      0 0 20px rgba(255, 165, 0, 0.2);
  }
  50% {
    transform: translate(1px, -1px);
    text-shadow: 
      0 0 10px rgba(255, 165, 0, 0.5),
      0 0 20px rgba(255, 165, 0, 0.4),
      0 0 30px rgba(255, 165, 0, 0.3);
  }
  75% {
    transform: translate(-1px, -1px);
    text-shadow: 
      0 0 8px rgba(255, 165, 0, 0.4),
      0 0 15px rgba(255, 165, 0, 0.3),
      0 0 20px rgba(255, 165, 0, 0.2);
  }
}



/* Smooth Glow Line Effect */
nav a .glow-line {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 165, 0, 0.9) 50%, 
    transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 0 10px rgba(255, 165, 0, 0.5),
    0 0 20px rgba(255, 165, 0, 0.3);
}

nav a:hover .glow-line {
  transform: translateX(100%);
  animation: smoothGlowLine 1.5s ease-in-out infinite;
}

@keyframes smoothGlowLine {
  0%, 100% {
    transform: translateX(-100%);
    opacity: 0.8;
    box-shadow: 
      0 0 10px rgba(255, 165, 0, 0.5),
      0 0 20px rgba(255, 165, 0, 0.3);
  }
  50% {
    transform: translateX(100%);
    opacity: 1;
    box-shadow: 
      0 0 15px rgba(255, 165, 0, 0.7),
      0 0 30px rgba(255, 165, 0, 0.5),
      0 0 45px rgba(255, 165, 0, 0.3);
  }
}

/* Smooth Floating Effect on Hover */
/* Animation is now combined with the enhanced glow effect below */

@keyframes smoothFloat {
  0%, 100% {
    transform: translateY(-3px) scale(1.05);
  }
  50% {
    transform: translateY(-5px) scale(1.08);
  }
}

/* Enhanced Glow Background Effect */
nav a:hover {
  background: transparent;
  box-shadow: none;
  animation: smoothFloat 3s ease-in-out infinite, pulseGlow 2s ease-in-out infinite;
}

/* Pulsing Glow Animation */
@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 
      0 0 15px rgba(255, 165, 0, 0.8),
      0 0 30px rgba(255, 165, 0, 0.6),
      0 0 45px rgba(255, 165, 0, 0.4),
      0 0 60px rgba(255, 165, 0, 0.2);
  }
  50% {
    text-shadow: 
      0 0 20px rgba(255, 165, 0, 1),
      0 0 40px rgba(255, 165, 0, 0.8),
      0 0 60px rgba(255, 165, 0, 0.6),
      0 0 80px rgba(255, 165, 0, 0.4);
  }
}



/* Saturn Cursor */
.saturn-cursor {
  position: fixed;
  width: 48px;
  height: 48px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

.saturn-planet-cursor {
  width: 100%;
  height: 100%;
  background: 
    /* Saturn's body - main sphere */
    radial-gradient(circle at 30% 30%, #F4A460 0%, #DEB887 20%, #CD853F 40%, #8B4513 60%, #654321 80%, #2F1B14 100%),
    /* Atmospheric bands */
    linear-gradient(90deg, transparent 0px, transparent 8px, rgba(139, 69, 19, 0.3) 8px, rgba(139, 69, 19, 0.3) 40px, transparent 40px, transparent 48px),
    linear-gradient(90deg, transparent 0px, transparent 12px, rgba(205, 133, 63, 0.4) 12px, rgba(205, 133, 63, 0.4) 36px, transparent 36px, transparent 48px),
    linear-gradient(90deg, transparent 0px, transparent 16px, rgba(222, 184, 135, 0.3) 16px, rgba(222, 184, 135, 0.3) 32px, transparent 32px, transparent 48px),
    /* Storm features */
    linear-gradient(45deg, transparent 0px, transparent 10px, rgba(139, 69, 19, 0.5) 10px, rgba(139, 69, 19, 0.5) 20px, transparent 20px, transparent 48px),
    linear-gradient(-45deg, transparent 28px, transparent 38px, rgba(139, 69, 19, 0.4) 38px, rgba(139, 69, 19, 0.4) 48px, transparent 48px, transparent 48px),
    /* Polar regions */
    radial-gradient(circle at 50% 20%, rgba(176, 196, 222, 0.2) 0%, transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(176, 196, 222, 0.2) 0%, transparent 30%);
  border-radius: 50%;
  box-shadow: 
    0 0 10px rgba(244, 164, 96, 0.3),
    0 0 20px rgba(222, 184, 135, 0.2);
  position: relative;
}

.saturn-rings-cursor {
  position: absolute;
  width: 120px;
  height: 30px;
  background: 
    linear-gradient(90deg, transparent 0px, transparent 3px, rgba(245, 245, 220, 0.8) 3px, rgba(245, 245, 220, 0.8) 6px, transparent 6px, transparent 9px),
    linear-gradient(90deg, transparent 9px, transparent 12px, rgba(255, 255, 224, 0.9) 12px, rgba(255, 255, 224, 0.9) 18px, transparent 18px, transparent 21px),
    linear-gradient(90deg, transparent 21px, transparent 24px, rgba(245, 245, 220, 0.7) 24px, rgba(245, 245, 220, 0.7) 30px, transparent 30px, transparent 33px),
    linear-gradient(90deg, transparent 33px, transparent 36px, rgba(255, 255, 224, 0.8) 36px, rgba(255, 255, 224, 0.8) 42px, transparent 42px, transparent 45px),
    linear-gradient(90deg, transparent 45px, transparent 48px, rgba(245, 245, 220, 0.6) 48px, rgba(245, 245, 220, 0.6) 54px, transparent 54px, transparent 57px),
    linear-gradient(90deg, transparent 57px, transparent 60px, rgba(255, 255, 224, 0.7) 60px, rgba(255, 255, 224, 0.7) 66px, transparent 66px, transparent 69px),
    linear-gradient(90deg, transparent 69px, transparent 72px, rgba(245, 245, 220, 0.5) 72px, rgba(245, 245, 220, 0.5) 78px, transparent 78px, transparent 81px),
    linear-gradient(90deg, transparent 81px, transparent 84px, rgba(255, 255, 224, 0.6) 84px, rgba(255, 255, 224, 0.6) 90px, transparent 90px, transparent 93px),
    linear-gradient(90deg, transparent 93px, transparent 96px, rgba(245, 245, 220, 0.4) 96px, rgba(245, 245, 220, 0.4) 102px, transparent 102px, transparent 105px),
    linear-gradient(90deg, transparent 105px, transparent 108px, rgba(255, 255, 224, 0.5) 108px, rgba(255, 255, 224, 0.5) 114px, transparent 114px, transparent 117px);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(245, 245, 220, 0.3);
  z-index: 1;
  animation: saturnRingsRotateCursor 15s linear infinite;
  /* Center the rings in the middle of the planet */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(75deg) rotateZ(0deg);
}

@keyframes saturnRingsRotateCursor {
  0% { transform: translate(-50%, -50%) rotateX(75deg) rotateZ(0deg); }
  100% { transform: translate(-50%, -50%) rotateX(75deg) rotateZ(360deg); }
}

/* Cursor interaction effects */
.saturn-cursor.clicking {
  transform: translate(-50%, -50%) scale(0.9);
}

.saturn-cursor.hovering {
  transform: translate(-50%, -50%) scale(1.1);
}

.saturn-cursor.clicking .saturn-rings-cursor {
  animation-duration: 8s;
}

.saturn-cursor.hovering .saturn-rings-cursor {
  animation-duration: 10s;
}

.milk-stream {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 200px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.3));
  border-radius: 4px;
  opacity: 0;
  animation: milkStream 4s ease-out 2.5s infinite;
}

@keyframes milkStream {
  0%, 100% {
    opacity: 0;
    transform: translateX(-50%) scaleY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
  }
}

.milk-drops {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.milk-drop {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  animation: milkDrop 3s ease-out 3s infinite;
}

.milk-drop:nth-child(1) { animation-delay: 3s; }
.milk-drop:nth-child(2) { animation-delay: 3.5s; }
.milk-drop:nth-child(3) { animation-delay: 4s; }
.milk-drop:nth-child(4) { animation-delay: 4.5s; }
.milk-drop:nth-child(5) { animation-delay: 5s; }

@keyframes milkDrop {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  50% {
    opacity: 1;
    transform: translateY(100px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(200px) scale(0.5);
  }
}
/* Cosmic Delay Entry Screen */
.cosmic-delay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at center, 
      rgba(0, 0, 0, 0.95) 0%, 
      rgba(26, 47, 26, 0.9) 50%, 
      rgba(0, 0, 0, 1) 100%),
    linear-gradient(45deg, 
      rgba(255, 255, 255, 0.02) 0%, 
      rgba(255, 182, 193, 0.01) 25%, 
      rgba(255, 215, 0, 0.01) 50%, 
      rgba(173, 216, 230, 0.01) 75%, 
      rgba(255, 140, 0, 0.01) 100%);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cosmicFadeOut 0.5s ease-out 3s forwards, vhsGlitch 0.2s ease-in-out infinite, iridescentShift 3s ease-in-out infinite;
  overflow: hidden;
}

.cosmic-delay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
  animation: parallaxGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.cosmic-delay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 25%, transparent 50%, rgba(255, 255, 255, 0.02) 75%, transparent 100%);
  animation: scanlineEffect 0.1s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

.saturn-transmission {
  text-align: center;
  color: #ffffff;
  font-family: 'Courier New', monospace;
  position: relative;
  z-index: 3;
  animation: transmissionFloat 4s ease-in-out infinite;
}



.transmission-text {
  margin-bottom: 4rem;
  position: relative;
  z-index: 4;
}

.glitch-text {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #00ff00;
  text-shadow: 
    0 0 5px #00ff00,
    0 0 10px #00ff00,
    0 0 15px #00ff00,
    0 0 20px #00ff00,
    0 0 30px #00ff00;
  animation: textGlitch 0.5s ease-in-out infinite, iridescentGlow 3s ease-in-out infinite;
  position: relative;
  z-index: 5;
}

.glitch-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #ff00ff;
  text-shadow: 
    0 0 5px #ff00ff,
    0 0 10px #ff00ff;
  animation: glitchShift 0.3s ease-in-out infinite;
  opacity: 0.7;
}

.loading-bar-container {
  margin: 1rem 0;
  width: 200px;
  height: 4px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  background: linear-gradient(90deg, 
    #00ff00 0%, 
    #00ffff 25%, 
    #ff00ff 50%, 
    #ffff00 75%, 
    #00ff00 100%);
  border-radius: 2px;
  animation: loadingBarFill 3s ease-in-out infinite, iridescentShift 2s ease-in-out infinite;
  position: relative;
}

.loading-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 100%);
  animation: loadingBarShine 1.5s ease-in-out infinite;
}

.transmission-status {
  font-size: 0.9rem;
  color: #ffffff;
  letter-spacing: 0.1em;
  animation: statusBlink 1s ease-in-out infinite, iridescentText 2s ease-in-out infinite;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-shadow: 
    0 0 5px rgba(255, 255, 255, 0.5),
    0 0 10px rgba(255, 255, 255, 0.3);
}

.cosmic-static {
  position: absolute;
  bottom: 6rem;
  left: 0;
  right: 0;
  height: 60px;
  overflow: hidden;
  z-index: 4;
}

.static-line {
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 0, 0.3) 25%, 
    rgba(0, 255, 0, 0.6) 50%, 
    rgba(0, 255, 0, 0.3) 75%, 
    transparent 100%);
  margin: 8px 0;
  animation: staticMove 0.5s ease-in-out infinite;
}

.static-line:nth-child(1) { animation-delay: 0s; }
.static-line:nth-child(2) { animation-delay: 0.1s; }
.static-line:nth-child(3) { animation-delay: 0.2s; }
.static-line:nth-child(4) { animation-delay: 0.3s; }
.static-line:nth-child(5) { animation-delay: 0.4s; }

/* Animations */
@keyframes cosmicFadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes vhsGlitch {
  0%, 100% {
    transform: translateX(0) translateY(0);
    filter: hue-rotate(0deg);
  }
  10% {
    transform: translateX(1px) translateY(1px);
    filter: hue-rotate(5deg);
  }
  20% {
    transform: translateX(-1px) translateY(-1px);
    filter: hue-rotate(-5deg);
  }
  30% {
    transform: translateX(0.5px) translateY(0.5px);
    filter: hue-rotate(3deg);
  }
  40% {
    transform: translateX(-0.5px) translateY(-0.5px);
    filter: hue-rotate(-3deg);
  }
}

@keyframes iridescentShift {
  0%, 100% {
    filter: hue-rotate(0deg) saturate(1);
  }
  25% {
    filter: hue-rotate(90deg) saturate(1.2);
  }
  50% {
    filter: hue-rotate(180deg) saturate(1);
  }
  75% {
    filter: hue-rotate(270deg) saturate(1.2);
  }
}

@keyframes parallaxGlow {
  0%, 100% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateX(-20px) translateY(-10px) scale(1.1);
    opacity: 0.5;
  }
  50% {
    transform: translateX(20px) translateY(10px) scale(0.9);
    opacity: 0.3;
  }
  75% {
    transform: translateX(-10px) translateY(20px) scale(1.05);
    opacity: 0.4;
  }
}

@keyframes scanlineEffect {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(2px);
    opacity: 0.6;
  }
}

@keyframes transmissionFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes iridescentGlow {
  0%, 100% {
    text-shadow: 
      0 0 5px #00ff00,
      0 0 10px #00ff00,
      0 0 15px #00ff00,
      0 0 20px #00ff00,
      0 0 30px #00ff00;
  }
  25% {
    text-shadow: 
      0 0 5px #00ffff,
      0 0 10px #00ffff,
      0 0 15px #00ffff,
      0 0 20px #00ffff,
      0 0 30px #00ffff;
  }
  50% {
    text-shadow: 
      0 0 5px #ff00ff,
      0 0 10px #ff00ff,
      0 0 15px #ff00ff,
      0 0 20px #ff00ff,
      0 0 30px #ff00ff;
  }
  75% {
    text-shadow: 
      0 0 5px #ffff00,
      0 0 10px #ffff00,
      0 0 15px #ffff00,
      0 0 20px #ffff00,
      0 0 30px #ffff00;
  }
}

@keyframes iridescentText {
  0%, 100% {
    color: #ffffff;
    text-shadow: 
      0 0 5px rgba(255, 255, 255, 0.5),
      0 0 10px rgba(255, 255, 255, 0.3);
  }
  25% {
    color: #ff6b9d;
    text-shadow: 
      0 0 5px rgba(255, 107, 157, 0.5),
      0 0 10px rgba(255, 107, 157, 0.3);
  }
  50% {
    color: #6b9dff;
    text-shadow: 
      0 0 5px rgba(107, 157, 255, 0.5),
      0 0 10px rgba(107, 157, 255, 0.3);
  }
  75% {
    color: #9dff6b;
    text-shadow: 
      0 0 5px rgba(157, 255, 107, 0.5),
      0 0 10px rgba(157, 255, 107, 0.3);
  }
}

@keyframes loadingBarFill {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

@keyframes loadingBarShine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}



@keyframes textGlitch {
  0%, 100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-1px);
  }
  20% {
    transform: translateX(1px);
  }
  30% {
    transform: translateX(-0.5px);
  }
  40% {
    transform: translateX(0.5px);
  }
}

@keyframes glitchShift {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(2px);
  }
  75% {
    transform: translateX(-1px);
  }
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes statusBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes staticMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

/* Mobile Responsive for Cosmic Delay */
@media (max-width: 768px) {
  .glitch-text {
    font-size: 1rem;
  }
}

/* Text Selection Styles */
::selection {
  background: transparent;
  color: inherit;
}

::-moz-selection {
  background: transparent;
  color: inherit;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero h1 {
  font-size: 4rem;
  animation: fadeIn 2s ease-out forwards;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Professional Orange Glow with Iridescent Hover for Hero Title */
.hero-title {
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ffffff;
  background: transparent;
  border: none;
  box-shadow: none;
  text-shadow: 
    0 0 2px #ffffff,
    0 0 4px #ffffff,
    0 0 6px #ffffff,
    0 0 8px #ff8c00,
    0 0 12px #ff8c00,
    0 0 16px #ff8c00,
    0 0 20px #ff8c00;
  animation: professionalOrangeGlow 6s ease-in-out infinite;
}

.hero-title:hover {
  /* No hover effects */
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  text-shadow: 
    0 0 2px #ffffff,
    0 0 4px #ffffff,
    0 0 6px #ffffff,
    0 0 8px #ff8c00,
    0 0 12px #ff8c00,
    0 0 16px #ff8c00,
    0 0 20px #ff8c00;
}

/* Professional Orange Glow Animation */
@keyframes professionalOrangeGlow {
  0%, 100% {
    text-shadow: 
      0 0 2px #ffffff,
      0 0 4px #ffffff,
      0 0 6px #ffffff,
      0 0 8px #ff8c00,
      0 0 12px #ff8c00,
      0 0 16px #ff8c00,
      0 0 20px #ff8c00;
  }
  25% {
    text-shadow: 
      0 0 1px #ffffff,
      0 0 2px #ffffff,
      0 0 3px #ffffff,
      0 0 4px #ff8c00,
      0 0 6px #ff8c00,
      0 0 8px #ff8c00,
      0 0 10px #ff8c00;
  }
  50% {
    text-shadow: 
      0 0 2px #ffffff,
      0 0 4px #ffffff,
      0 0 6px #ffffff,
      0 0 8px #ff8c00,
      0 0 12px #ff8c00,
      0 0 16px #ff8c00,
      0 0 20px #ff8c00;
  }
  75% {
    text-shadow: 
      0 0 3px #ffffff,
      0 0 6px #ffffff,
      0 0 9px #ffffff,
      0 0 12px #ff8c00,
      0 0 18px #ff8c00,
      0 0 24px #ff8c00,
      0 0 30px #ff8c00;
  }
}

/* Iridescent Blur Animation */
@keyframes iridescentBlur {
  0%, 100% {
    filter: blur(0.5px);
    text-shadow: 
      0 0 2px #ffffff,
      0 0 4px #ffffff,
      0 0 6px #ffffff,
      0 0 8px #ff6b35,
      0 0 12px #ff6b35,
      0 0 16px #ff6b35,
      0 0 20px #ff6b35;
  }
  25% {
    filter: blur(1px);
    text-shadow: 
      0 0 3px #ffffff,
      0 0 6px #ffffff,
      0 0 9px #ffffff,
      0 0 12px #f7931e,
      0 0 18px #f7931e,
      0 0 24px #f7931e,
      0 0 30px #f7931e;
  }
  50% {
    filter: blur(0.3px);
    text-shadow: 
      0 0 4px #ffffff,
      0 0 8px #ffffff,
      0 0 12px #ffffff,
      0 0 16px #ffd23f,
      0 0 24px #ffd23f,
      0 0 32px #ffd23f,
      0 0 40px #ffd23f;
  }
  75% {
    filter: blur(0.8px);
    text-shadow: 
      0 0 3px #ffffff,
      0 0 6px #ffffff,
      0 0 9px #ffffff,
      0 0 12px #4ecdc4,
      0 0 18px #4ecdc4,
      0 0 24px #4ecdc4,
      0 0 30px #4ecdc4;
  }
}

/* Professional Iridescent Shift Animation */
@keyframes iridescentShift {
  0%, 100% {
    color: #ff6b35;
    text-shadow: 
      0 0 2px #ffffff,
      0 0 4px #ffffff,
      0 0 6px #ffffff,
      0 0 8px #ff6b35,
      0 0 12px #ff6b35,
      0 0 16px #ff6b35,
      0 0 20px #ff6b35;
  }
  16.66% {
    color: #f7931e;
    text-shadow: 
      0 0 2px #ffffff,
      0 0 4px #ffffff,
      0 0 6px #ffffff,
      0 0 8px #f7931e,
      0 0 12px #f7931e,
      0 0 16px #f7931e,
      0 0 20px #f7931e;
  }
  33.33% {
    color: #ffd23f;
    text-shadow: 
      0 0 2px #ffffff,
      0 0 4px #ffffff,
      0 0 6px #ffffff,
      0 0 8px #ffd23f,
      0 0 12px #ffd23f,
      0 0 16px #ffd23f,
      0 0 20px #ffd23f;
  }
  50% {
    color: #4ecdc4;
    text-shadow: 
      0 0 2px #ffffff,
      0 0 4px #ffffff,
      0 0 6px #ffffff,
      0 0 8px #4ecdc4,
      0 0 12px #4ecdc4,
      0 0 16px #4ecdc4,
      0 0 20px #4ecdc4;
  }
  66.66% {
    color: #45b7d1;
    text-shadow: 
      0 0 2px #ffffff,
      0 0 4px #ffffff,
      0 0 6px #ffffff,
      0 0 8px #45b7d1,
      0 0 12px #45b7d1,
      0 0 16px #45b7d1,
      0 0 20px #45b7d1;
  }
  83.33% {
    color: #96ceb4;
    text-shadow: 
      0 0 2px #ffffff,
      0 0 4px #ffffff,
      0 0 6px #ffffff,
      0 0 8px #96ceb4,
      0 0 12px #96ceb4,
      0 0 16px #96ceb4,
      0 0 20px #96ceb4;
  }
}

/* Professional Hover Effect */
.hero-title:hover {
  background: linear-gradient(
    45deg,
    #ff6b35,
    #f7931e,
    #ffd23f,
    #4ecdc4,
    #45b7d1,
    #96ceb4,
    #ff6b35
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: iridescentShift 2s ease-in-out infinite;
}

.hero p {
  font-size: 1.5rem;
  margin-top: 1rem;
}
.reveal-hover {
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.reveal-hover:hover {
  animation: lightVhsEffect 0.5s ease-in-out infinite;
}

.reveal-hover::before,
.reveal-hover::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.reveal-hover::before {
  color: rgba(255, 0, 255, 0.4);
  z-index: 1;
}

.reveal-hover::after {
  color: rgba(0, 255, 255, 0.4);
  z-index: 2;
}

.reveal-hover:hover::before {
  opacity: 0.6;
  transform: translate(-1px, 0px);
  filter: blur(0.2px);
}

.reveal-hover:hover::after {
  opacity: 0.6;
  transform: translate(1px, 0px);
  filter: blur(0.2px);
}

@keyframes lightVhsEffect {
  0%, 100% {
    transform: translate(0);
    text-shadow: 
      0 0 5px rgba(255, 255, 255, 0.3),
      0 0 10px rgba(255, 165, 0, 0.2);
  }
  25% {
    transform: translate(-0.5px, 0.5px);
    text-shadow: 
      0 0 8px rgba(255, 255, 255, 0.4),
      0 0 15px rgba(255, 165, 0, 0.3);
  }
  50% {
    transform: translate(0.5px, -0.5px);
    text-shadow: 
      0 0 10px rgba(255, 255, 255, 0.5),
      0 0 20px rgba(255, 165, 0, 0.4);
  }
  75% {
    transform: translate(-0.5px, -0.5px);
    text-shadow: 
      0 0 8px rgba(255, 255, 255, 0.4),
      0 0 15px rgba(255, 165, 0, 0.3);
  }
}
.btn {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 15px 30px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-top: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  text-transform: uppercase;
}

.btn:hover {
  background: #ffffff;
  color: #1a2f1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn[data-hover-text]:hover::after {
  content: attr(data-hover-text);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  color: #1a2f1a;
  font-weight: 500;
  z-index: 10;
  pointer-events: none;
  background: transparent;
}

.btn[data-hover-text] {
  position: relative;
  overflow: visible;
}

.btn[data-hover-text]:hover {
  color: transparent;
}
section {
  padding: 8vh 15vw;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  transition: all 0.5s ease-out;
  overflow: visible;
}
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.prophecy, .scent-notes, .buy {
  background-color: transparent;
}

/* Prophecy Visual Elements */
.prophecy-visual {
  display: none;
}

/* Scrolling Landscape */
.landscape {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: scrollLandscape 20s linear infinite;
}

.clover-field {
  position: absolute;
  width: 100%;
  height: 33.33%;
  background: 
    radial-gradient(circle at 20% 50%, #ffffff 2px, transparent 2px),
    radial-gradient(circle at 40% 30%, #ffffff 1.5px, transparent 1.5px),
    radial-gradient(circle at 60% 70%, #ffffff 2.5px, transparent 2.5px),
    radial-gradient(circle at 80% 20%, #ffffff 1px, transparent 1px),
    radial-gradient(circle at 90% 80%, #ffffff 2px, transparent 2px);
  background-size: 100px 100px, 80px 80px, 120px 120px, 60px 60px, 90px 90px;
  background-position: 0 0, 20px 10px, 40px 30px, 60px 50px, 80px 70px;
}

.clover-field:nth-child(1) { top: 0; }
.clover-field:nth-child(2) { top: 33.33%; }
.clover-field:nth-child(3) { top: 66.66%; }

@keyframes scrollLandscape {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100px); }
}

/* Floating Satellites */
.floating-satellites {
  display: none;
}

.satellite {
  position: absolute;
  width: 80px;
  height: 80px;
  animation: floatSatellite 10s ease-in-out infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.satellite-body {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.satellite-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 30px;
  background: linear-gradient(45deg, #2c3e50, #34495e, #2c3e50);
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.satellite-panel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 25px;
  background: linear-gradient(45deg, #3498db, #2980b9);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.left-panel {
  left: -35px;
  transform: translateY(-50%) rotateY(-15deg);
}

.right-panel {
  right: -35px;
  transform: translateY(-50%) rotateY(15deg);
}

.satellite-antenna {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 15px;
  background: #95a5a6;
  border-radius: 1px;
}

.satellite-dish {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 8px;
  background: linear-gradient(45deg, #7f8c8d, #95a5a6);
  border-radius: 50% 50% 0 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.satellite:hover .satellite-core {
  background: linear-gradient(45deg, #e74c3c, #c0392b, #e74c3c);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.satellite:hover .satellite-panel {
  background: linear-gradient(45deg, #f39c12, #e67e22);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
}

.satellite:hover {
  animation-play-state: paused;
}

@keyframes transmissionExpand {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

.satellite:nth-child(1) { left: 10%; animation-delay: 0s; }
.satellite:nth-child(2) { left: 25%; animation-delay: 2s; }
.satellite:nth-child(3) { left: 45%; animation-delay: 4s; }
.satellite:nth-child(4) { left: 65%; animation-delay: 6s; }
.satellite:nth-child(5) { left: 80%; animation-delay: 8s; }

@keyframes floatSatellite {
  0%, 100% { 
    transform: translateY(350px) rotateY(0deg) rotateX(0deg) scale(0.6); 
    opacity: 0.6;
  }
  20% {
    transform: translateY(250px) rotateY(90deg) rotateX(10deg) scale(0.8);
    opacity: 0.8;
  }
  40% {
    transform: translateY(150px) rotateY(180deg) rotateX(0deg) scale(1);
    opacity: 0.9;
  }
  60% { 
    transform: translateY(50px) rotateY(270deg) rotateX(-10deg) scale(1.1); 
    opacity: 1;
  }
  80% {
    transform: translateY(100px) rotateY(360deg) rotateX(5deg) scale(1);
    opacity: 0.9;
  }
}

/* Goat Watcher */
.goat-watcher {
  position: absolute;
  bottom: 20px;
  right: 50px;
  z-index: 10;
}

.goat-body {
  width: 60px;
  height: 40px;
  background: #8B7355;
  border-radius: 30px 30px 10px 10px;
  position: relative;
}

.goat-head {
  width: 35px;
  height: 30px;
  background: #8B7355;
  border-radius: 20px 20px 10px 10px;
  position: absolute;
  top: -15px;
  left: -10px;
  transform: rotate(-15deg);
}

.goat-eye {
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: 5px;
  animation: watchSky 4s ease-in-out infinite;
}

@keyframes watchSky {
  0%, 100% { transform: translateY(0) rotate(-15deg); }
  50% { transform: translateY(-10px) rotate(-25deg); }
}

/* Norwegian Whispers */
.norwegian-whispers {
  position: relative;
  width: 100%;
  height: 200px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whisper {
  position: absolute;
  font-family: 'Space Grotesk', monospace;
  font-weight: 300;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  animation: refinedWhisperFade 8s ease-in-out infinite;
}

.whisper:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.whisper:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 2s;
  animation-duration: 15s;
}

.whisper:nth-child(3) {
  top: 50%;
  left: 25%;
  animation-delay: 4s;
  animation-duration: 10s;
}

.whisper:nth-child(4) {
  top: 50%;
  right: 25%;
  animation-delay: 6s;
  animation-duration: 13s;
}

.whisper:nth-child(5) {
  top: 80%;
  left: 30%;
  animation-delay: 8s;
  animation-duration: 16s;
}

.whisper:nth-child(6) {
  top: 80%;
  right: 30%;
  animation-delay: 10s;
  animation-duration: 11s;
}

@keyframes refinedWhisperFade {
  0%, 100% {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    color: rgba(255, 255, 255, 0.05);
    text-shadow: 
      0 0 5px rgba(255, 165, 0, 0.1),
      0 0 10px rgba(255, 165, 0, 0.05);
  }
  20% {
    opacity: 0.15;
    transform: translateY(5px) scale(0.97);
    color: rgba(255, 255, 255, 0.08);
    text-shadow: 
      0 0 8px rgba(255, 165, 0, 0.15),
      0 0 15px rgba(255, 165, 0, 0.08);
  }
  40% {
    opacity: 0.25;
    transform: translateY(0px) scale(1);
    color: rgba(255, 255, 255, 0.12);
    text-shadow: 
      0 0 10px rgba(255, 165, 0, 0.2),
      0 0 20px rgba(255, 165, 0, 0.1);
  }
  60% {
    opacity: 0.3;
    transform: translateY(-2px) scale(1.02);
    color: rgba(255, 255, 255, 0.15);
    text-shadow: 
      0 0 12px rgba(255, 165, 0, 0.25),
      0 0 25px rgba(255, 165, 0, 0.12);
  }
  80% {
    opacity: 0.2;
    transform: translateY(-1px) scale(1.01);
    color: rgba(255, 255, 255, 0.1);
    text-shadow: 
      0 0 8px rgba(255, 165, 0, 0.15),
      0 0 15px rgba(255, 165, 0, 0.08);
  }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .norwegian-whispers {
    height: 150px;
    margin: 1rem 0;
  }
  
  .whisper {
    font-size: 0.6rem;
  }
  
  .whisper:nth-child(1) { top: 15%; left: 15%; }
  .whisper:nth-child(2) { top: 15%; right: 15%; }
  .whisper:nth-child(3) { top: 45%; left: 20%; }
  .whisper:nth-child(4) { top: 45%; right: 20%; }
  .whisper:nth-child(5) { top: 75%; left: 25%; }
  .whisper:nth-child(6) { top: 75%; right: 25%; }
}

/* Scent Section Animations */
.scent-notes {
  position: relative;
  overflow: visible;
  min-height: 800px;
  padding: 3vh 15vw;
  margin-bottom: 0;
}

.scent-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
  min-height: 800px;
}

.scent-content {
  position: relative;
  z-index: 10;
}

.scent-list {
  list-style: none;
  padding: 0;
}

.scent-item {
  margin: 2rem 0;
  padding: 0;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
  border-left: 1px solid transparent;
  position: relative;
  font-weight: 400;
  line-height: 1.8;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.scent-item.active {
  opacity: 1;
  transform: translateX(0);
}

.scent-item[data-season="spring"].active {
  border-left-color: #FFB6C1;
  background: rgba(255,182,193,0.1);
}

.scent-item[data-season="summer"].active {
  border-left-color: #FFD700;
  background: rgba(255,215,0,0.1);
}

.scent-item[data-season="autumn"].active {
  border-left-color: #FF8C00;
  background: rgba(255,140,0,0.1);
}

.scent-item[data-season="winter"].active {
  border-left-color: #ADD8E6;
  background: rgba(173,216,230,0.1);
}

/* Enhanced Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax Effects */
.prophecy-visual {
  transform: translateZ(0);
  will-change: transform;
}

/* Smooth Section Transitions */
section {
  position: relative;
  transition: all 0.5s ease-out;
}

section:hover {
  transform: translateY(-5px);
}

/* Floating Elements */
.floating-element {
  position: absolute;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.whisper {
  position: absolute;
  font-size: 0.85rem;
  color: #6F848B;
  opacity: 0;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.02em;
  animation: whisperAppear 12s ease-in-out infinite;
  white-space: nowrap;
}

.whisper:nth-child(1) { left: 10%; animation-delay: 0s; }
.whisper:nth-child(2) { left: 30%; animation-delay: 2s; }
.whisper:nth-child(3) { left: 50%; animation-delay: 4s; }
.whisper:nth-child(4) { left: 70%; animation-delay: 6s; }
.whisper:nth-child(5) { left: 20%; animation-delay: 8s; }
.whisper:nth-child(6) { left: 60%; animation-delay: 10s; }

@keyframes whisperAppear {
  0%, 100% { 
    opacity: 0; 
    transform: translateY(20px) scale(0.8);
  }
  10%, 90% { 
    opacity: 0.7; 
    transform: translateY(0) scale(1);
  }
}
.section-title {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.testimonials {
  background-color: transparent;
  color: #ffffff;
  padding: 5vh 15vw !important;
  margin-top: -5vh;
}
.testimonial {
  font-style: normal;
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  text-align: center;
}
.cult {
  background-color: transparent;
  text-align: center;
}

.email-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Formbricks Embed Styling Overrides */
#formbricks-embed-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Override Formbricks default styles to match our design */
#formbricks-embed-container :is(input, button, select, textarea) {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #ffffff !important;
  background: transparent !important;
  border: 1px solid #ffffff !important;
  border-radius: 0 !important;
  transition: all 0.3s ease !important;
}

#formbricks-embed-container :is(input:focus, textarea:focus) {
  outline: none !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  transform: translateY(-2px) !important;
}

#formbricks-embed-container input::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  transition: all 0.3s ease !important;
}

#formbricks-embed-container input:focus::placeholder {
  color: rgba(255, 255, 255, 0.8) !important;
  transform: translateX(5px) !important;
}

#formbricks-embed-container button {
  background: transparent !important;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
  padding: 15px 30px !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

#formbricks-embed-container button:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3) !important;
}

/* Hide Formbricks default styling */
#formbricks-embed-container .fb-form {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#formbricks-embed-container .fb-form * {
  font-family: 'Roboto', sans-serif !important;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.cult input {
  padding: 15px 20px;
  width: 300px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  border: 1px solid #ffffff;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  position: relative;
}

.cult input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.cult input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.cult input:focus::placeholder {
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(5px);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
  animation: messageSlideIn 0.3s ease forwards;
}

.form-message.success {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #4CAF50;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.form-message.error {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.5);
  color: #F44336;
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

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

.btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.loading-spinner-small {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.email-form .btn {
  margin-top: 0;
  min-width: 200px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.email-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.email-form .btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}
.footer {
  background-color: transparent;
  color: #ffffff;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid #ffffff;
  margin-top: 5rem;
}
.hidden-secret {
  color: #ffffff;
  opacity: 0.3;
}
.hidden-secret:hover {
  color: #ffffff;
  opacity: 1;
}

.buy {
  text-align: center;
  background-color: transparent;
}

.buy-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 2rem;
}

.shopify-button-container {
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fallback-buy-btn {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 15px 30px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.fallback-buy-btn:hover {
  background: #ffffff;
  color: #1a2f1a;
}

/* Payment Status Styles */
.payment-status {
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.payment-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.payment-loading p {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  margin: 0;
}

.payment-error {
  text-align: center;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.payment-error p {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* Success Message Styles */
.success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  font-weight: bold;
}

.success-message p {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin: 0;
  text-align: center;
}

.order-details {
  font-size: 0.8rem !important;
  opacity: 0.8;
  font-family: 'Courier New', monospace;
}

/* Stripe Checkout Button */
.stripe-checkout-btn {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 15px 30px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.stripe-checkout-btn:hover {
  background: #ffffff;
  color: #1a2f1a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Melting Effect */
.melting-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
  min-height: 1200px;
}

.melt-drop {
  position: absolute;
  width: 8px;
  height: 20px;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.8) 20%, 
    rgba(255, 255, 255, 0.6) 40%, 
    rgba(255, 255, 255, 0.4) 60%, 
    rgba(255, 255, 255, 0.2) 80%, 
    rgba(255, 255, 255, 0.1) 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: meltDropDrip 12s ease-in-out infinite;
  opacity: 0;
  box-shadow: 
    0 0 6px rgba(255, 255, 255, 0.4),
    inset 0 0 2px rgba(255, 255, 255, 0.2);
  transform-origin: top center;
}

.melt-drop:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
  animation-duration: 10s;
}

.melt-drop:nth-child(2) {
  left: 35%;
  animation-delay: 1.5s;
  animation-duration: 11s;
}

.melt-drop:nth-child(3) {
  left: 50%;
  animation-delay: 3s;
  animation-duration: 12s;
}

.melt-drop:nth-child(4) {
  left: 65%;
  animation-delay: 4.5s;
  animation-duration: 10.5s;
}

.melt-drop:nth-child(5) {
  left: 80%;
  animation-delay: 6s;
  animation-duration: 11.5s;
}

.melt-drop:nth-child(6) {
  left: 15%;
  animation-delay: 7.5s;
  animation-duration: 10s;
}

.melt-drop:nth-child(7) {
  left: 45%;
  animation-delay: 9s;
  animation-duration: 12s;
}

.melt-drop:nth-child(8) {
  left: 75%;
  animation-delay: 10.5s;
  animation-duration: 11s;
}

@keyframes meltDropDrip {
  0% {
    opacity: 0;
    transform: translateY(-50px) scale(0.1) rotate(0deg);
  }
  10% {
    opacity: 0.3;
    transform: translateY(-40px) scale(0.3) rotate(5deg);
  }
  20% {
    opacity: 0.6;
    transform: translateY(-30px) scale(0.5) rotate(10deg);
  }
  30% {
    opacity: 1;
    transform: translateY(-20px) scale(0.7) rotate(15deg);
  }
  40% {
    opacity: 1;
    transform: translateY(-10px) scale(0.9) rotate(20deg);
  }
  50% {
    opacity: 1;
    transform: translateY(0px) scale(1) rotate(25deg);
  }
  60% {
    opacity: 0.9;
    transform: translateY(50px) scale(1.1) rotate(30deg);
  }
  70% {
    opacity: 0.7;
    transform: translateY(150px) scale(1.2) rotate(35deg);
  }
  80% {
    opacity: 0.4;
    transform: translateY(300px) scale(1.3) rotate(40deg);
  }
  90% {
    opacity: 0.2;
    transform: translateY(500px) scale(1.4) rotate(45deg);
  }
  100% {
    opacity: 0;
    transform: translateY(800px) scale(0.1) rotate(50deg);
  }
}

/* About Page Styles */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 2rem 4rem;
  min-height: 100vh;
}

.about-hero {
  text-align: center;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.about-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-shadow: 
    0 0 20px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease-out;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-title:hover {
  animation: iridescentGlow 3s ease-in-out infinite, vhsGlitch 0.3s ease-in-out infinite;
  text-shadow: 
    0 0 5px #ffffff,
    0 0 10px #ffffff,
    0 0 15px #ffffff,
    0 0 20px #ff6b9d,
    0 0 35px #ff6b9d,
    0 0 40px #6b9dff,
    0 0 50px #6b9dff,
    0 0 75px #9dff6b;
  transform: translateY(-2px);
  color: #ffffff;
  text-stroke: 1px #ff6b9d;
  -webkit-text-stroke: 1px #ff6b9d;
}

@keyframes vhsGlitch {
  0%, 100% {
    transform: translateY(-2px);
    filter: hue-rotate(0deg);
  }
  10% {
    transform: translateY(-2px) translateX(1px);
    filter: hue-rotate(5deg);
  }
  20% {
    transform: translateY(-2px) translateX(-1px);
    filter: hue-rotate(-5deg);
  }
  30% {
    transform: translateY(-2px) translateX(0.5px);
    filter: hue-rotate(3deg);
  }
  40% {
    transform: translateY(-2px) translateX(-0.5px);
    filter: hue-rotate(-3deg);
  }
  50% {
    transform: translateY(-2px);
    filter: hue-rotate(0deg);
  }
  60% {
    transform: translateY(-2px) translateX(0.3px);
    filter: hue-rotate(2deg);
  }
  70% {
    transform: translateY(-2px) translateX(-0.3px);
    filter: hue-rotate(-2deg);
  }
  80% {
    transform: translateY(-2px) translateX(0.1px);
    filter: hue-rotate(1deg);
  }
  90% {
    transform: translateY(-2px) translateX(-0.1px);
    filter: hue-rotate(-1deg);
  }
}

@keyframes iridescentGlow {
  0% {
    text-shadow: 
      0 0 5px #ffffff,
      0 0 10px #ffffff,
      0 0 15px #ffffff,
      0 0 20px #ff6b9d,
      0 0 35px #ff6b9d,
      0 0 40px #6b9dff,
      0 0 50px #6b9dff,
      0 0 75px #9dff6b;
    text-stroke: 1px #ff6b9d;
    -webkit-text-stroke: 1px #ff6b9d;
  }
  25% {
    text-shadow: 
      0 0 5px #ffffff,
      0 0 10px #ffffff,
      0 0 15px #ffffff,
      0 0 20px #6b9dff,
      0 0 35px #6b9dff,
      0 0 40px #9dff6b,
      0 0 50px #9dff6b,
      0 0 75px #ff6b9d;
    text-stroke: 1px #6b9dff;
    -webkit-text-stroke: 1px #6b9dff;
  }
  50% {
    text-shadow: 
      0 0 5px #ffffff,
      0 0 10px #ffffff,
      0 0 15px #ffffff,
      0 0 20px #9dff6b,
      0 0 35px #9dff6b,
      0 0 40px #ff6b9d,
      0 0 50px #ff6b9d,
      0 0 75px #6b9dff;
    text-stroke: 1px #9dff6b;
    -webkit-text-stroke: 1px #9dff6b;
  }
  75% {
    text-shadow: 
      0 0 5px #ffffff,
      0 0 10px #ffffff,
      0 0 15px #ffffff,
      0 0 20px #ff9d6b,
      0 0 35px #ff9d6b,
      0 0 40px #6bff9d,
      0 0 50px #6bff9d,
      0 0 75px #9d6bff;
    text-stroke: 1px #ff9d6b;
    -webkit-text-stroke: 1px #ff9d6b;
  }
  100% {
    text-shadow: 
      0 0 5px #ffffff,
      0 0 10px #ffffff,
      0 0 15px #ffffff,
      0 0 20px #ff6b9d,
      0 0 35px #ff6b9d,
      0 0 40px #6b9dff,
      0 0 50px #6b9dff,
      0 0 75px #9dff6b;
    text-stroke: 1px #ff6b9d;
    -webkit-text-stroke: 1px #ff6b9d;
  }
}

.about-greeting {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  animation: fadeInUp 1s ease-out 0.2s both;
  letter-spacing: 0.02em;
}

.about-intro {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease-out 0.4s both;
  letter-spacing: 0.02em;
}

.about-mission {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  animation: fadeInUp 1s ease-out 0.6s both;
  letter-spacing: 0.02em;
}

.origin-myth,
.philosophy,
.craft {
  margin-bottom: 4rem;
  padding: 2rem 0;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 2rem;
  position: relative;
}

.origin-myth::before,
.philosophy::before,
.craft::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, 
    rgba(255, 165, 0, 0.8), 
    rgba(255, 255, 255, 0.4));
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% {
    height: 0;
    opacity: 0;
  }
  50% {
    height: 100%;
    opacity: 1;
  }
}

.myth-content,
.philosophy-content,
.craft-content {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.98);
  position: relative;
  z-index: 2;
}

.myth-content p,
.philosophy-content p,
.craft-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 400;
  text-shadow: 
    0 0 5px rgba(255, 255, 255, 0.3),
    0 0 10px rgba(255, 255, 255, 0.1);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}

/* Enhanced section titles inside windows */
.window-content .section-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.4),
    0 0 20px rgba(255, 165, 0, 0.3),
    0 0 30px rgba(255, 165, 0, 0.1);
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
  animation: titlePulse 4s ease-in-out infinite;
}

.craft-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.craft-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
}

.craft-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: rgba(255, 165, 0, 0.8);
  font-size: 0.8rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.craft-ending {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}



/* Responsive design for about page */
@media (max-width: 768px) {
  .about-content {
    padding: 100px 1rem 2rem;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-greeting {
    font-size: 1.2rem;
  }
  
  .about-intro,
  .about-mission {
    font-size: 1rem;
  }
  
  .origin-myth,
  .philosophy,
  .craft {
    padding-left: 1rem;
  }
  
  .craft-list li {
    padding-left: 1.5rem;
  }
  
  .floating-milk-jar,
  .woolly-monster,
  .absurd-elements,
  .distillation-process {
    display: none;
  }
}

/* Contact Page Styles */
.contact-content {
  padding-top: 120px;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
}

.contact-hero {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 0;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-shadow: 
    0 0 20px rgba(255, 255, 255, 0.5),
    0 0 40px rgba(255, 255, 255, 0.3);
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    transparent 50%,
    rgba(255, 255, 255, 0.1) 50%
  );
  background-size: 100% 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.contact-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(255, 0, 0, 0.1) 25%, transparent 50%, rgba(0, 0, 255, 0.1) 75%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}

.contact-title:hover {
  animation: neonGlow 2s ease-in-out infinite, neonFlicker 0.3s ease-in-out infinite;
  text-shadow: 
    0 0 5px #ffffff,
    0 0 10px #ffffff,
    0 0 15px #ffffff,
    0 0 20px #0ff,
    0 0 35px #0ff,
    0 0 40px #0ff,
    0 0 50px #0ff,
    0 0 75px #0ff;
  transform: translateY(-2px);
  color: #ffffff;
  text-stroke: 1px #0ff;
  -webkit-text-stroke: 1px #0ff;
}

.contact-title:hover::before {
  opacity: 0;
}

.contact-title:hover::after {
  opacity: 0;
}



/* Neon sign animations */
@keyframes neonGlow {
  0%, 100% {
    text-shadow: 
      0 0 5px #ffffff,
      0 0 10px #ffffff,
      0 0 15px #ffffff,
      0 0 20px #0ff,
      0 0 35px #0ff,
      0 0 40px #0ff,
      0 0 50px #0ff,
      0 0 75px #0ff;
  }
  50% {
    text-shadow: 
      0 0 5px #ffffff,
      0 0 10px #ffffff,
      0 0 15px #ffffff,
      0 0 20px #0ff,
      0 0 35px #0ff,
      0 0 40px #0ff,
      0 0 50px #0ff,
      0 0 75px #0ff,
      0 0 90px #0ff;
  }
}

@keyframes neonFlicker {
  0%, 100% {
    opacity: 1;
  }
  10% {
    opacity: 0.9;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0.95;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0.95;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 0.9;
  }
}



.contact-greeting {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.contact-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-section {
  margin-bottom: 4rem;
}

.contact-form-container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 
    0 0 30px rgba(255, 255, 255, 0.1),
    0 0 60px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form .form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 20px 35px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(5px);
  width: 100%;
  box-sizing: border-box;
  min-height: 70px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 0 15px rgba(255, 255, 255, 0.4),
    0 0 30px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  color: #ffffff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(5px);
}

.contact-form select {
  cursor: pointer;
}

.contact-form select option {
  background: #1a2f1a;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 1rem;
  padding: 12px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  font-size: 1rem;
}

/* Responsive design for contact form */
@media (max-width: 768px) {
  .contact-content {
    width: 100%;
    padding: 120px 1rem 2rem 1rem;
  }
  
  .contact-form-container {
    width: 95%;
    padding: 2rem;
    margin: 0 auto;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 20px 30px;
    font-size: 1.1rem;
    min-height: 70px;
    background: rgba(26, 47, 26, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    -webkit-text-fill-color: #ffffff;
    -webkit-appearance: none;
    border-radius: 4px;
  }
  
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
  }
  
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    background: rgba(26, 47, 26, 0.95);
    border-color: rgba(255, 255, 255, 0.9);
    color: #ffffff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
    -webkit-text-fill-color: #ffffff;
    box-shadow: 
      0 0 15px rgba(255, 255, 255, 0.3),
      0 0 30px rgba(255, 255, 255, 0.1);
  }
  
  .contact-form textarea {
    min-height: 120px;
  }
}

@media (max-width: 480px) {
  .contact-content {
    width: 100%;
    padding: 120px 0.5rem 2rem 0.5rem;
  }
  
  .contact-form-container {
    width: 98%;
    padding: 2rem;
    margin: 0 auto;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 16px 20px;
    font-size: 0.9rem;
    min-height: 55px;
  }
}

.contact-submit-btn {
  padding: 15px 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  align-self: center;
  min-width: 200px;
}

.contact-submit-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 
    0 6px 20px rgba(255, 255, 255, 0.3),
    0 0 30px rgba(255, 255, 255, 0.2);
  text-shadow: 
    0 0 15px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(255, 255, 255, 0.6);
}

.contact-submit-btn.loading {
  background: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
}

.contact-submit-btn.success {
  background: rgba(76, 175, 80, 0.2);
  border-color: rgba(76, 175, 80, 0.8);
  color: #4CAF50;
}

.contact-info {
  margin-bottom: 4rem;
  text-align: center;
}

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

.contact-method {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.1),
    0 0 20px rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-method h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-method p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.5;
  text-align: center;
}

.method-description {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.8rem !important;
  font-style: italic;
}

/* Email address specific styling */
.contact-method p:contains("@") {
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
}

/* Ensure email addresses fit properly */
.contact-method p:first-of-type {
  min-height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-poetry {
  text-align: center;
  padding: 3rem 0;
  margin-top: 2rem;
}

.poetry-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.poetry-line {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.poetry-attribution {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
  .contact-content {
    padding: 120px 1rem 2rem 1rem;
    width: 100%;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .contact-greeting {
    font-size: 1.2rem;
  }

  .contact-intro {
    font-size: 0.9rem;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-method {
    padding: 1.5rem;
    min-height: 100px;
  }

  .contact-method p {
    font-size: 0.85rem;
  }

  .contact-method p:first-of-type {
    font-size: 0.9rem;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-method {
    padding: 1rem;
    min-height: 80px;
  }

  .contact-method h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .contact-method p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .contact-method p:first-of-type {
    font-size: 0.85rem;
  }

  .method-description {
    font-size: 0.75rem !important;
  }

  .poetry-container {
    padding: 1.5rem;
  }

  .poetry-line {
    font-size: 1rem;
  }
}

/* Custom Success Overlay Styles */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 47, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.success-overlay.visible {
  opacity: 1;
}

.success-modal {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 3rem;
  max-width: 500px;
  text-align: center;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s ease;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 255, 255, 0.1);
}

.success-overlay.visible .success-modal {
  transform: translateY(0) scale(1);
}

.success-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  animation: starTwinkle 3s ease-in-out infinite;
}

.success-title {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 
    0 0 20px rgba(255, 255, 255, 0.5),
    0 0 40px rgba(255, 255, 255, 0.3);
}

.success-message {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.success-poetry {
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  font-weight: 300;
}

.success-close-btn {
  padding: 12px 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.success-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(255, 255, 255, 0.2),
    0 0 30px rgba(255, 255, 255, 0.1);
}

/* Error state for submit button */
.contact-submit-btn.error {
  background: rgba(244, 67, 54, 0.2);
  border-color: rgba(244, 67, 54, 0.8);
  color: #f44336;
}

/* Floating Coordinates Animation */
.floating-coordinates {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-coordinate {
  position: absolute;
  font-family: 'Space Grotesk', monospace;
  font-weight: 300;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: coordinateFloat 20s ease-in-out infinite;
  opacity: 0;
  transform: translateY(20px);
}

.bg-coordinate:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.bg-coordinate:nth-child(2) {
  top: 25%;
  right: 15%;
  animation-delay: 8s;
  animation-duration: 30s;
}

/* Additional coordinate instances for more atmospheric effect */
.bg-coordinate:nth-child(3) {
  top: 45%;
  left: 20%;
  animation-delay: 15s;
  animation-duration: 28s;
}

.bg-coordinate:nth-child(4) {
  top: 65%;
  right: 25%;
  animation-delay: 22s;
  animation-duration: 32s;
}

.bg-coordinate:nth-child(5) {
  top: 35%;
  left: 60%;
  animation-delay: 5s;
  animation-duration: 26s;
}

.bg-coordinate:nth-child(6) {
  top: 75%;
  left: 40%;
  animation-delay: 12s;
  animation-duration: 29s;
}

@keyframes coordinateFloat {
  0%, 100% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    color: rgba(255, 255, 255, 0.05);
    text-shadow: 
      0 0 5px rgba(255, 165, 0, 0.1),
      0 0 10px rgba(255, 165, 0, 0.05);
  }
  10% {
    opacity: 0.3;
    transform: translateY(10px) scale(0.9);
    color: rgba(255, 255, 255, 0.15);
    text-shadow: 
      0 0 8px rgba(255, 165, 0, 0.2),
      0 0 15px rgba(255, 165, 0, 0.1);
  }
  25% {
    opacity: 0.6;
    transform: translateY(0px) scale(1);
    color: rgba(255, 255, 255, 0.25);
    text-shadow: 
      0 0 12px rgba(255, 165, 0, 0.3),
      0 0 20px rgba(255, 165, 0, 0.15);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-10px) scale(1.05);
    color: rgba(255, 255, 255, 0.4);
    text-shadow: 
      0 0 15px rgba(255, 165, 0, 0.4),
      0 0 25px rgba(255, 165, 0, 0.2);
  }
  75% {
    opacity: 0.6;
    transform: translateY(-5px) scale(1.02);
    color: rgba(255, 255, 255, 0.25);
    text-shadow: 
      0 0 12px rgba(255, 165, 0, 0.3),
      0 0 20px rgba(255, 165, 0, 0.15);
  }
  90% {
    opacity: 0.3;
    transform: translateY(5px) scale(0.95);
    color: rgba(255, 255, 255, 0.15);
    text-shadow: 
      0 0 8px rgba(255, 165, 0, 0.2),
      0 0 15px rgba(255, 165, 0, 0.1);
  }
}

/* Subtle rotation effect for more organic movement */
.bg-coordinate:nth-child(odd) {
  animation-name: coordinateFloatRotate;
}

@keyframes coordinateFloatRotate {
  0%, 100% {
    opacity: 0;
    transform: translateY(20px) scale(0.8) rotate(-2deg);
    color: rgba(255, 255, 255, 0.05);
    text-shadow: 
      0 0 5px rgba(255, 165, 0, 0.1),
      0 0 10px rgba(255, 165, 0, 0.05);
  }
  10% {
    opacity: 0.3;
    transform: translateY(10px) scale(0.9) rotate(-1deg);
    color: rgba(255, 255, 255, 0.15);
    text-shadow: 
      0 0 8px rgba(255, 165, 0, 0.2),
      0 0 15px rgba(255, 165, 0, 0.1);
  }
  25% {
    opacity: 0.6;
    transform: translateY(0px) scale(1) rotate(0deg);
    color: rgba(255, 255, 255, 0.25);
    text-shadow: 
      0 0 12px rgba(255, 165, 0, 0.3),
      0 0 20px rgba(255, 165, 0, 0.15);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-10px) scale(1.05) rotate(1deg);
    color: rgba(255, 255, 255, 0.4);
    text-shadow: 
      0 0 15px rgba(255, 165, 0, 0.4),
      0 0 25px rgba(255, 165, 0, 0.2);
  }
  75% {
    opacity: 0.6;
    transform: translateY(-5px) scale(1.02) rotate(0.5deg);
    color: rgba(255, 255, 255, 0.25);
    text-shadow: 
      0 0 12px rgba(255, 165, 0, 0.3),
      0 0 20px rgba(255, 165, 0, 0.15);
  }
  90% {
    opacity: 0.3;
    transform: translateY(5px) scale(0.95) rotate(-0.5deg);
    color: rgba(255, 255, 255, 0.15);
    text-shadow: 
      0 0 8px rgba(255, 165, 0, 0.2),
      0 0 15px rgba(255, 165, 0, 0.1);
  }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .bg-coordinate {
    font-size: 0.6rem;
  }
  
  .bg-coordinate:nth-child(1) { top: 10%; left: 5%; }
  .bg-coordinate:nth-child(2) { top: 20%; right: 10%; }
  .bg-coordinate:nth-child(3) { top: 40%; left: 15%; }
  .bg-coordinate:nth-child(4) { top: 60%; right: 20%; }
  .bg-coordinate:nth-child(5) { top: 30%; left: 55%; }
  .bg-coordinate:nth-child(6) { top: 70%; left: 35%; }
}

/* Video Section */
.video-section {
  width: 100%;
  padding: 3rem 0;
  margin-bottom: 4rem;
  background: transparent;
  backdrop-filter: none;
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}



/* Video Title Styling */
.video-title {
  position: relative;
  z-index: 2;
  text-shadow: 
    0 0 20px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(173, 216, 230, 0.2);
  letter-spacing: 0.3em;
  font-weight: 300;
  margin-bottom: 1rem;
}

.video-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  font-family: 'Inter', sans-serif;
}

.video-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16 / 9;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 50px rgba(255, 165, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer !important;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer !important;
  pointer-events: auto;
}

/* Force cursor visibility over YouTube iframe */
.video-container * {
  cursor: pointer !important;
}

/* Fallback cursor for iframe issues */
.video-container:hover {
  cursor: pointer !important;
}

.video-container iframe:hover {
  cursor: pointer !important;
}

/* Ensure cursor is visible even if custom cursor fails */
.video-container,
.video-container iframe {
  cursor: pointer !important;
  pointer-events: auto;
}

/* YouTube video styling - title hidden via URL parameters */
.video-container iframe {
  /* Additional styling for YouTube player */
  pointer-events: auto;
}

.video-container:hover iframe {
  transform: scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(255, 165, 0, 0.2);
}

/* Video section responsive design */
@media (max-width: 768px) {
  .video-section {
    padding: 2rem 1rem;
  }
  
  .video-container {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
}

/* Small Video Container for About Page */
.video-container-small {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000080;
  border: 3px solid;
  border-image: linear-gradient(45deg, #c0c0c0, #ffffff, #808080, #c0c0c0) 1;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer !important;
  box-shadow: 
    0 0 0 2px #ffffff,
    0 0 0 3px #808080,
    0 0 20px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 165, 0, 0.1),
    0 0 60px rgba(173, 216, 230, 0.05),
    inset 0 0 20px rgba(0, 0, 0, 0.3);
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.video-container-small::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(180deg, #000080 0%, #0000a0 50%, #000080 100%);
  border-bottom: 1px solid #ffffff;
  z-index: 2;
  pointer-events: none;
  box-sizing: border-box;
}

.video-container-small::after {
  content: '×';
  position: absolute;
  top: 1px;
  right: 3px;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #c0c0c0 0%, #ffffff 50%, #808080 100%);
  border: 1px solid #000000;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: #000000;
  z-index: 3;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  text-shadow: none;
  box-shadow: 
    inset 1px 1px 0 #ffffff,
    inset -1px -1px 0 #808080;
  transition: all 0.1s ease;
}

.video-container-small::after:hover {
  background: linear-gradient(135deg, #ff0000 0%, #ff8080 50%, #ff0000 100%);
  color: #ffffff;
}

.window-title {
  position: absolute;
  top: 2px;
  left: 6px;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  font-weight: bold;
  color: #ffffff;
  z-index: 3;
  text-shadow: 1px 1px 0 #000000;
  letter-spacing: 0.3px;
}

.video-container-small iframe {
  width: 100%;
  height: calc(100% - 20px);
  border: none;
  border-radius: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer !important;
  pointer-events: auto;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 0;
  filter: contrast(1.1) saturate(1.2) brightness(0.9);
  box-sizing: border-box;
}

/* Removed black and white hover effect */

@keyframes shimmer {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* Small video responsive design */
@media (max-width: 768px) {
  .video-container-small {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 1rem 0.5rem;
  }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  /* General mobile adjustments */
  body {
    font-size: 14px;
    letter-spacing: 0.05em;
  }
  
  /* Header mobile adjustments */
  header {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .logo {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 1rem;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  
  nav ul li {
    width: 100%;
    text-align: center;
  }
  
  nav ul li a {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Hero section mobile */
  .hero {
    min-height: 60vh;
    padding: 2rem 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    word-wrap: break-word;
    hyphens: auto;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  /* Section padding adjustments */
  section {
    padding: 4vh 5vw;
  }
  
  .scent-notes {
    padding: 3vh 5vw;
    min-height: 600px;
  }
  
  .scent-visual {
    min-height: 600px;
  }
  
  .scent-item {
    margin: 1.5rem 0;
    font-size: 0.85rem;
  }
  
  /* Video section mobile */
  .video-section {
    padding: 1rem 0;
    margin-bottom: 4rem;
  }
  
  .video-container {
    max-width: 100%;
    margin: 0 1rem;
  }
  
  /* Testimonials mobile */
  .testimonials {
    padding: 3vh 5vw !important;
    margin-top: -2vh;
  }
  
  .testimonial {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  /* Buy section mobile */
  .buy {
    padding: 3vh 5vw;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  /* Button adjustments */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    min-width: 200px;
  }
  
  /* Footer mobile */
  .footer {
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .footer nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  /* Floating coordinates mobile */
  .floating-coordinates {
    display: none;
  }
  
  /* Saturn cursor mobile adjustments */
  .saturn-cursor {
    display: none;
  }
  
  body {
    cursor: auto;
  }
}

/* Small phone adjustments */
@media (max-width: 480px) {
  body {
    font-size: 13px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  section {
    padding: 3vh 3vw;
  }
  
  .scent-notes {
    padding: 2vh 3vw;
    min-height: 500px;
  }
  
  .scent-visual {
    min-height: 500px;
  }
  
  .video-section {
    padding: 0.5rem 0;
    margin-bottom: 3rem;
  }
  
  .video-container {
    margin: 0 0.5rem;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    min-width: 180px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .testimonial {
    font-size: 0.85rem;
  }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
  /* Disable hover effects on touch devices */
  .hero-title:hover,
  .reveal-hover:hover,
  .btn:hover {
    transform: none;
    animation: none;
  }
  
  /* Increase touch targets */
  .btn,
  nav ul li a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Disable custom cursor on touch devices */
  .saturn-cursor {
    display: none;
  }
  
  body {
    cursor: auto;
  }
}

/* Landscape phone adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 40vh;
    padding: 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  section {
    padding: 2vh 5vw;
  }
  
  .scent-notes {
    min-height: 400px;
  }
  
  .scent-visual {
    min-height: 400px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-title,
  .section-title {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  /* Smooth scrolling for mobile */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Prevent horizontal scrolling */
  body {
    overflow-x: hidden;
    width: 100%;
  }
  
  /* Improve touch scrolling */
  .scent-notes,
  .testimonials,
  .buy {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Optimize animations for mobile */
  .hero-title,
  .scent-item,
  .testimonial {
    will-change: transform, opacity;
  }
  
  /* Optimize background animations for mobile */
  .iridescent-sphere-background {
    animation-duration: 50s;
    background: 
      radial-gradient(ellipse at center, 
        rgba(26, 47, 26, 0.85) 0%, 
        rgba(26, 47, 26, 0.9) 50%, 
        rgba(26, 47, 26, 0.95) 100%),
      linear-gradient(45deg, 
        rgba(255, 255, 255, 0.015) 0%, 
        rgba(255, 182, 193, 0.015) 25%, 
        rgba(255, 215, 0, 0.015) 50%, 
        rgba(173, 216, 230, 0.015) 75%, 
        rgba(255, 140, 0, 0.015) 100%);
  }
  
  .melting-sphere {
    animation-duration: 35s;
    width: 350px;
    height: 350px;
    filter: blur(1.5px) hue-rotate(0deg);
    box-shadow: 
      0 0 40px rgba(255, 255, 255, 0.25),
      0 0 80px rgba(255, 182, 193, 0.15),
      0 0 120px rgba(255, 215, 0, 0.08);
  }
  
  .liquid-ripples {
    width: 500px;
    height: 500px;
  }
  
  .ripple {
    border-width: 1.5px;
    animation-duration: 10s;
  }
  
  /* Improve button touch targets */
  .btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Optimize video for mobile */
  .video-container iframe {
    touch-action: manipulation;
  }
  
  /* Improve navigation touch targets */
  nav ul li a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Reduce background complexity on mobile */
  .surreal-background {
    filter: blur(0.5px);
  }
  
  .ice-plants,
  .snow-rocks {
    opacity: 0.7;
  }
}

/* Prevent zoom on input focus for iOS */
@media (max-width: 768px) {
  input[type="email"],
  input[type="text"] {
    font-size: 16px;
  }
}

/* Optimize for low-end mobile devices */
@media (max-width: 480px) {
  /* Optimize background animations for mobile */
  .iridescent-sphere-background {
    animation-duration: 60s;
    background: 
      radial-gradient(ellipse at center, 
        rgba(26, 47, 26, 0.9) 0%, 
        rgba(26, 47, 26, 0.95) 50%, 
        rgba(26, 47, 26, 1) 100%),
      linear-gradient(45deg, 
        rgba(255, 255, 255, 0.01) 0%, 
        rgba(255, 182, 193, 0.01) 25%, 
        rgba(255, 215, 0, 0.01) 50%, 
        rgba(173, 216, 230, 0.01) 75%, 
        rgba(255, 140, 0, 0.01) 100%);
  }
  
  .melting-sphere {
    animation-duration: 40s;
    width: 300px;
    height: 300px;
    filter: blur(1px) hue-rotate(0deg);
    box-shadow: 
      0 0 30px rgba(255, 255, 255, 0.2),
      0 0 60px rgba(255, 182, 193, 0.1),
      0 0 90px rgba(255, 215, 0, 0.05);
  }
  
  .liquid-ripples {
    width: 400px;
    height: 400px;
  }
  
  .ripple {
    border-width: 1px;
    animation-duration: 12s;
  }
  
  .ripple-1 {
    width: 80px;
    height: 80px;
  }
  
  .ripple-2 {
    width: 120px;
    height: 120px;
  }
  
  .ripple-3 {
    width: 160px;
    height: 160px;
  }
  
  .ripple-4 {
    width: 200px;
    height: 200px;
  }
  
  /* Reduce shadow complexity */
  .hero-title,
  .section-title {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
  
  /* Optimize performance */
  * {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  
  /* Ensure FIMBULVETR fits on very small screens */
  .hero-title {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
    padding: 0 0.5rem;
  }
  
  .hero {
    padding: 1rem 0.5rem;
  }
}

/* Windows-style Window Frames for About Page */
.windows-window {
  background: #000080;
  border: 3px solid;
  border-image: linear-gradient(45deg, #c0c0c0, #ffffff, #808080, #c0c0c0) 1;
  box-shadow: 
    0 0 0 2px #ffffff,
    0 0 0 3px #808080,
    0 0 0 4px #000000,
    0 0 0 5px #c0c0c0,
    0 0 0 6px #000000,
    0 0 20px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(0, 255, 255, 0.2),
    0 0 60px rgba(255, 0, 255, 0.1),
    0 0 80px rgba(0, 0, 0, 0.8);
  margin: 2rem auto;
  max-width: 800px;
  width: 100%;
  position: relative;
  animation: windowGlow 4s ease-in-out infinite;
}

.windows-window::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(0, 255, 255, 0.05) 25%, 
    rgba(255, 0, 255, 0.05) 50%, 
    rgba(255, 255, 0, 0.05) 75%, 
    rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}

.window-title-bar {
  height: 25px;
  background: linear-gradient(180deg, #000080 0%, #0000a0 50%, #000080 100%);
  border-bottom: 1px solid #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.window-title {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 1px 1px 0 #000000;
  letter-spacing: 0.5px;
  animation: titleGlow 3s ease-in-out infinite;
}

.window-close-btn {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #c0c0c0 0%, #ffffff 50%, #808080 100%);
  border: 1px solid #000000;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  box-shadow: inset 1px 1px 0 #ffffff, inset -1px -1px 0 #808080;
  transition: all 0.2s ease;
  position: absolute;
  top: 2px;
  right: 3px;
  z-index: 3;
}

.window-close-btn:hover {
  background: linear-gradient(135deg, #ff0000 0%, #ff6666 50%, #cc0000 100%);
  color: #ffffff;
  box-shadow: inset 1px 1px 0 #ff6666, inset -1px -1px 0 #cc0000, 0 0 10px rgba(255, 0, 0, 0.5);
  transform: scale(1.1);
}

.window-content {
  padding: 2rem;
  background: 
    radial-gradient(ellipse at center, 
      rgba(26, 47, 26, 0.95) 0%, 
      rgba(26, 47, 26, 0.98) 50%, 
      rgba(26, 47, 26, 1) 100%),
    linear-gradient(45deg, 
      rgba(255, 255, 255, 0.03) 0%, 
      rgba(255, 182, 193, 0.02) 25%, 
      rgba(255, 215, 0, 0.02) 50%, 
      rgba(173, 216, 230, 0.02) 75%, 
      rgba(255, 140, 0, 0.02) 100%);
  position: relative;
  z-index: 1;
  min-height: 200px;
  animation: windowContentGlow 8s ease-in-out infinite;
  backdrop-filter: blur(1px);
}

.window-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, 
      rgba(255, 255, 255, 0.05) 0%, 
      rgba(255, 182, 193, 0.03) 15%, 
      rgba(255, 215, 0, 0.02) 30%, 
      rgba(173, 216, 230, 0.03) 45%, 
      rgba(255, 140, 0, 0.02) 60%, 
      transparent 100%);
  pointer-events: none;
  z-index: -1;
  animation: iridescentShift 12s ease-in-out infinite;
}

/* Removed rotating square animation */

/* Glow Animations */
@keyframes windowGlow {
  0%, 100% {
    box-shadow: 
      0 0 0 2px #ffffff,
      0 0 0 3px #808080,
      0 0 0 4px #000000,
      0 0 0 5px #c0c0c0,
      0 0 0 6px #000000,
      0 0 20px rgba(255, 255, 255, 0.3),
      0 0 40px rgba(0, 255, 255, 0.2),
      0 0 60px rgba(255, 0, 255, 0.1),
      0 0 80px rgba(0, 0, 0, 0.8);
  }
  50% {
    box-shadow: 
      0 0 0 2px #ffffff,
      0 0 0 3px #808080,
      0 0 0 4px #000000,
      0 0 0 5px #c0c0c0,
      0 0 0 6px #000000,
      0 0 30px rgba(255, 255, 255, 0.4),
      0 0 60px rgba(0, 255, 255, 0.3),
      0 0 90px rgba(255, 0, 255, 0.2),
      0 0 120px rgba(0, 0, 0, 0.9);
  }
}

@keyframes titleGlow {
  0%, 100% {
    text-shadow: 1px 1px 0 #000000, 0 0 5px rgba(255, 255, 255, 0.5);
  }
  50% {
    text-shadow: 1px 1px 0 #000000, 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6);
  }
}

@keyframes windowContentGlow {
  0%, 100% {
    background: 
      radial-gradient(ellipse at center, 
        rgba(26, 47, 26, 0.95) 0%, 
        rgba(26, 47, 26, 0.98) 50%, 
        rgba(26, 47, 26, 1) 100%),
      linear-gradient(45deg, 
        rgba(255, 255, 255, 0.03) 0%, 
        rgba(255, 182, 193, 0.02) 25%, 
        rgba(255, 215, 0, 0.02) 50%, 
        rgba(173, 216, 230, 0.02) 75%, 
        rgba(255, 140, 0, 0.02) 100%);
  }
  50% {
    background: 
      radial-gradient(ellipse at center, 
        rgba(26, 47, 26, 0.93) 0%, 
        rgba(26, 47, 26, 0.96) 50%, 
        rgba(26, 47, 26, 0.98) 100%),
      linear-gradient(45deg, 
        rgba(255, 255, 255, 0.04) 0%, 
        rgba(255, 182, 193, 0.03) 25%, 
        rgba(255, 215, 0, 0.03) 50%, 
        rgba(173, 216, 230, 0.03) 75%, 
        rgba(255, 140, 0, 0.03) 100%);
  }
}

@keyframes iridescentShift {
  0%, 100% {
    background: 
      radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 182, 193, 0.03) 15%, 
        rgba(255, 215, 0, 0.02) 30%, 
        rgba(173, 216, 230, 0.03) 45%, 
        rgba(255, 140, 0, 0.02) 60%, 
        transparent 100%);
  }
  50% {
    background: 
      radial-gradient(circle at 70% 70%, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 182, 193, 0.03) 15%, 
        rgba(255, 215, 0, 0.02) 30%, 
        rgba(173, 216, 230, 0.03) 45%, 
        rgba(255, 140, 0, 0.02) 60%, 
        transparent 100%);
  }
}

/* Removed conicRotate animation */

@keyframes titlePulse {
  0%, 100% {
    text-shadow: 
      0 0 10px rgba(255, 255, 255, 0.4),
      0 0 20px rgba(255, 165, 0, 0.3),
      0 0 30px rgba(255, 165, 0, 0.1);
  }
  50% {
    text-shadow: 
      0 0 15px rgba(255, 255, 255, 0.5),
      0 0 25px rgba(255, 165, 0, 0.4),
      0 0 35px rgba(255, 165, 0, 0.2);
  }
}

/* Mobile Responsive for Windows Windows */
@media (max-width: 768px) {
  .windows-window {
    margin: 1rem auto;
    max-width: 90%;
    width: 100%;
    box-shadow: 
      0 0 0 2px #ffffff,
      0 0 0 3px #808080,
      0 0 0 4px #000000,
      0 0 0 5px #c0c0c0,
      0 0 0 6px #000000,
      0 0 15px rgba(255, 255, 255, 0.2),
      0 0 30px rgba(0, 255, 255, 0.1),
      0 0 45px rgba(255, 0, 255, 0.05);
  }
  
  .video-container-small {
    margin: 1rem auto;
    max-width: 90%;
    width: 100%;
  }
  
  .window-content {
    padding: 1.5rem;
  }
  
  .window-title {
    font-size: 11px;
  }
  
  .window-close-btn {
    width: 18px;
    height: 18px;
    font-size: 12px;
    top: 2px;
    right: 3px;
  }
}

@media (max-width: 480px) {
  .windows-window {
    margin: 0.5rem auto;
    max-width: 95%;
    width: 100%;
    box-shadow: 
      0 0 0 2px #ffffff,
      0 0 0 3px #808080,
      0 0 0 4px #000000,
      0 0 0 5px #c0c0c0,
      0 0 0 6px #000000,
      0 0 10px rgba(255, 255, 255, 0.15),
      0 0 20px rgba(0, 255, 255, 0.08);
  }
  
  .video-container-small {
    margin: 0.5rem auto;
    max-width: 95%;
    width: 100%;
  }
  
  .window-content {
    padding: 1rem;
  }
  
  .window-title {
    font-size: 10px;
  }
  
  .window-close-btn {
    width: 16px;
    height: 16px;
    font-size: 11px;
    top: 2px;
    right: 3px;
  }
}
