* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  overflow-x: hidden;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(180deg, #fef9e7 0%, #fff5e1 50%, #ffffff 100%);
  position: relative;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 1;
}

.shape {
  position: absolute;
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
  width: 80px;
  height: 80px;
  background: #ffd700;
  border-radius: 50%;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 60px;
  height: 60px;
  background: #ff6b6b;
  border-radius: 50%;
  top: 70%;
  right: 15%;
  animation-delay: 2s;
}

.shape:nth-child(3) {
  width: 100px;
  height: 100px;
  background: #4ecdc4;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: 15%;
  left: 15%;
  animation-delay: 4s;
}

.shape:nth-child(4) {
  width: 70px;
  height: 70px;
  background: #95e1d3;
  border-radius: 50%;
  top: 30%;
  right: 20%;
  animation-delay: 1s;
}

.shape:nth-child(5) {
  width: 90px;
  height: 90px;
  background: #f38181;
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  top: 50%;
  left: 5%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-30px) rotate(120deg);
  }

  66% {
    transform: translateY(30px) rotate(240deg);
  }
}

.content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.sun-emoji {
  font-size: 5rem;
  animation: rotate 10s linear infinite;
  display: inline-block;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.logo-container {
  animation: slideInDown 1s ease;
}

.logo {
  max-width: 350px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.1));
}

h1 {
  font-size: 3rem;
  color: #2c3e50;
  font-weight: 800;
  margin-bottom: 20px;
  animation: slideInUp 1s ease 0.2s both;
  line-height: 1.2;
}

.happiness-text {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.3rem;
  color: #5a6c7d;
  margin-bottom: 15px;
  animation: slideInUp 1s ease 0.4s both;
}

.domain-text {
  font-size: 1rem;
  color: #95a5a6;
  margin-bottom: 30px;
  font-style: italic;
  animation: slideInUp 1s ease 0.6s both;
}

.cta-btn {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  animation: slideInUp 1s ease 0.8s both;
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 165, 0, 0.5);
  color: #fff;
}

.emoji-decoration {
  font-size: 2rem;
  margin: 0 10px;
  display: inline-block;
  animation: bounce 1s infinite;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ffd700;
  border-radius: 50%;
  animation: sparkle 2s infinite;
}

.sparkle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.sparkle:nth-child(2) {
  top: 40%;
  right: 25%;
  animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
  bottom: 30%;
  left: 30%;
  animation-delay: 1s;
}

.sparkle:nth-child(4) {
  top: 60%;
  right: 20%;
  animation-delay: 1.5s;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.happinessLogo {
  width: 150px;
}
.ariesLogo{
  width: 250px;
}

@media (max-width: 768px) {
  .sun-emoji {
    font-size: 3.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .logo {
    max-width: 280px;
  }

  .cta-btn {
    padding: 15px 45px;
    font-size: 1rem;
  }

  .emoji-decoration {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .sun-emoji {
    font-size: 3rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .domain-text {
    font-size: 0.9rem;
  }

  .logo {
    max-width: 240px;
  }

  .cta-btn {
    padding: 12px 35px;
    font-size: 0.95rem;
  }
}
