:root {
  --bg-color: #fffaf5;
  --primary-pink: #ffb7d5;
  --primary-blue: #9de3ff;
  --primary-yellow: #fff3a0;
  --primary-green: #c1ffc1;
  --primary-purple: #e0b0ff;
  --text-dark: #333;
  --font-playful: 'Fredoka', sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-playful);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 4rem 2rem 2rem;
}

/* Background Animation */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(
    45deg,
    var(--primary-pink),
    var(--primary-blue),
    var(--primary-green),
    var(--primary-yellow)
  );
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  opacity: 0.15;
  pointer-events: none;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  text-align: center;
  z-index: 10;
  padding: 2rem;
  max-width: 800px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo-container {
  margin-bottom: 2rem;
  position: relative;
}

.main-logo {
  max-width: 550px;
  width: 100%;
  border-radius: 50%; /* Since the logo is circular in the preview */
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  animation: float 6s ease-in-out infinite;
  background: white;
  padding: 15px;
  border: 8px solid rgba(255, 255, 255, 0.5);
}

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

.message {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards 0.5s;
}

.headline {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ff85a1, #4ecdc4, #ffbd3f);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  text-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.subheadline {
  font-size: 1.6rem;
  font-weight: 400;
  color: #777;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

.social-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 1s ease-out forwards 0.8s;
  opacity: 0;
}

.follow-text {
  font-size: 1.1rem;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: white;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 4px solid #fff;
}

.social-link svg {
  stroke: #ff85a1;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 133, 161, 0.2);
  border-color: #ffb7d5;
}

.social-link:hover svg {
  transform: rotate(10deg);
}

.footer {
  width: 100%;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  padding-top: 2rem;
  z-index: 10;
}

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

#bubble-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Floating Balloons/Bubbles */
.bubble {
  position: absolute;
  bottom: -100px;
  border-radius: 50%;
  opacity: 0.6;
  animation: rise 10s linear infinite;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-120vh) scale(1.2);
    opacity: 0;
  }
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .headline { font-size: 2.5rem; }
  .subheadline { font-size: 1.2rem; }
  .main-logo { max-width: 300px; }
}
