* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #1a1a1a;
  overflow-x: hidden;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(180deg, #2a2520 0%, #1f1c18 50%, #1a1612 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.1;
  animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
  width: 80px;
  height: 80px;
  background: #e5cd95;
  border-radius: 50%;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 60px;
  height: 60px;
  background: #ed1b24;
  border-radius: 50%;
  top: 70%;
  right: 15%;
  animation-delay: 2s;
}

.shape:nth-child(3) {
  width: 100px;
  height: 100px;
  background: #e5cd95;
  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: #ed1b24;
  border-radius: 50%;
  top: 30%;
  right: 20%;
  animation-delay: 1s;
}

.shape:nth-child(5) {
  width: 90px;
  height: 90px;
  background: #e5cd95;
  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;
  padding: 20px;
}

.sun-emoji {
  font-size: 5rem;
  animation: rotate 10s linear infinite;
  display: inline-block;
  filter: drop-shadow(0 0 20px rgba(229, 205, 149, 0.5));
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.logo-container {
  animation: slideInDown 1s ease;
  margin-bottom: 2rem;
}

.logo {
  max-width: 350px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 20px rgba(229, 205, 149, 0.3));
}

h1 {
  font-size: 3rem;
  color: #e5cd95;
  font-weight: 800;
  margin-bottom: 20px;
  animation: slideInUp 1s ease 0.2s both;
  line-height: 1.2;
}

.happiness-text {
  background: linear-gradient(135deg, #e5cd95 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(229, 205, 149, 0.3);
}

.subtitle {
  font-size: 1.3rem;
  color: #c4c4c4;
  margin-bottom: 15px;
  animation: slideInUp 1s ease 0.4s both;
}

.domain-text {
  font-size: 1rem;
  color: #888888;
  margin-bottom: 30px;
  font-style: italic;
  animation: slideInUp 1s ease 0.6s both;
}

.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #ed1b24 0%, #c41820 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(237, 27, 36, 0.4);
  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(237, 27, 36, 0.6);
  background: linear-gradient(135deg, #ff2530 0%, #ed1b24 100%);
  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: #e5cd95;
  border-radius: 50%;
  animation: sparkle 2s infinite;
  box-shadow: 0 0 10px #e5cd95;
}

.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: 200px;
}

.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 35px;
    font-size: 1rem;
  }

  .emoji-decoration {
    font-size: 1.5rem;
  }

  .ariesLogo {
    width: 200px;
  }

  .happinessLogo {
    width: 150px;
  }
}

@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 30px;
    font-size: 0.95rem;
  }

  .ariesLogo {
    width: 180px;
  }

  .happinessLogo {
    width: 150px;
  }
}
