:root {
  --primary: #FF9ECD;
  --secondary: #FFB7E0;
  --accent: #FFC8EA;
  --background: #FFF0F7;
  --text: #B45C94;
  --gradient-start: #FFB7E0;
  --gradient-end: #FF9ECD;
  --ice-cream: #FFF5E6;
  --cone: #D4A676;
  --caramel: #C17F59;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(135deg, var(--background), #FFE8F3);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}

.container {
  padding: 2rem;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.logo {
  height: 200px;
  margin: 0 auto 2rem;
  position: relative;
}

.ice-cream-cone {
  position: relative;
  width: 100%;
  height: 100%;
  animation: bounce 2s infinite ease-in-out;
}

.scoop {
  width: 100px;
  height: 100px;
  background: var(--ice-cream);
  border-radius: 50% 50% 45% 45%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 32px rgba(255, 158, 205, 0.3);
}

.caramel-drip {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 90px;
  background: linear-gradient(180deg, transparent 20%, var(--caramel));
  border-radius: 40% 40% 45% 45%;
  opacity: 0.7;
  animation: drip 3s infinite;
}

.cone {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: var(--cone);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.waffle-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 5px,
    rgba(0, 0, 0, 0.1) 5px,
    rgba(0, 0, 0, 0.1) 10px
  );
}

.kawaii-face {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 40px;
  z-index: 2;
}

.eyes {
  display: flex;
  gap: 20px;
  margin-top: -10px;
  justify-content: center;
}

.eyes::before,
.eyes::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #B45C94;
  border-radius: 50%;
  position: relative;
  animation: blink 3s infinite;
}

.blush {
  display: flex;
  gap: 30px;
  margin-top: 10px;
  justify-content: center;
}

.blush::before,
.blush::after {
  content: '';
  width: 15px;
  height: 6px;
  background: rgba(255, 132, 188, 0.4);
  border-radius: 50%;
}

.mouth {
  width: 20px;
  height: 10px;
  border-bottom: 3px solid #B45C94;
  border-radius: 50%;
  margin: 5px auto 0;
}

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

@keyframes blink {
  0%, 95%, 100% { height: 8px; }
  97% { height: 1px; }
}

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

h1 {
  color: var(--text);
  font-size: 4rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 3px 3px 0px rgba(255, 158, 205, 0.3);
}

.tagline {
  color: var(--text);
  font-size: 1.5rem;
  margin-bottom: 3rem;
  font-weight: bold;
}

.coming-soon {
  font-size: 1.25rem;
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(255, 158, 205, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.decorative-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  margin: 1rem auto;
  border-radius: 4px;
}

.contact {
  margin-top: 2rem;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--primary);
  font-weight: bold;
}

a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 158, 205, 0.4);
}

.floating-items {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.item {
  position: absolute;
  font-size: 2rem;
  animation: float 20s infinite linear;
  opacity: 0.5;
}

.heart { 
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  color: var(--primary);
}

.star {
  top: 60%;
  right: 15%;
  animation-delay: -5s;
  color: var(--secondary);
}

.cloud {
  bottom: 20%;
  left: 20%;
  animation-delay: -10s;
  color: var(--accent);
}

.candy {
  top: 30%;
  right: 30%;
  animation-delay: -7s;
}

.sparkle {
  bottom: 40%;
  right: 40%;
  animation-delay: -3s;
  color: var(--secondary);
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(100px, 50px) rotate(90deg); }
  50% { transform: translate(50px, 100px) rotate(180deg); }
  75% { transform: translate(-50px, 50px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

@media (max-width: 480px) {
  h1 {
    font-size: 3rem;
  }
  
  .tagline {
    font-size: 1.25rem;
  }

  .logo {
    width: 100px;
    height: 140px;
  }

  .kawaii-face {
    transform: scale(0.7);
  }
}