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

body {
  font-family: 'Rubik', sans-serif;
  background: #fff;
  color: #111;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

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

.logo {
  width: 100px;
  margin-bottom: 30px;
}

.coming-soon {
  letter-spacing: 3px;
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.headline {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}

.subtext {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.notify-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.notify-form input {
  padding: 10px 15px;
  border: 2px solid #ccc;
  border-radius: 5px;
  flex: 1 1 250px;
  font-size: 14px;
}

.notify-form button {
  padding: 10px 20px;
  background: #111;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

footer {
  margin-top: 40px;
}

.social-icons a {
  color: #333;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #000;
}

/* Decorative shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  z-index: 0;
}
.purple {
  background: #a259ff;
  width: 120px;
  height: 120px;
  top: -10%;
  left: -10%;
    animation: float1 12s ease-in-out infinite;

}
.pink {
  background: #ff5c8d;
  width: 30px;
  height: 30px;
  top: 20%;
  right: 10%;
    animation: float2 9s ease-in-out infinite;
  animation-delay: 1s;
}
.green {
  background: #00e0b8;
  width: 30px;
  height: 30px;
  bottom: 20%;
  left: -10%;
  animation: float3 11s ease-in-out infinite;
  animation-delay: 2s;
    animation: float4 13s ease-in-out infinite;
  animation-delay: 0.5s;
}
.yellow {
  background: #ffd285;
  width: 100px;
  height: 100px;
  bottom: -10%;
  right: -15%;
    animation: float4 13s ease-in-out infinite;
  animation-delay: 0.5s;
}

/* Responsive */
@media screen and (max-width: 500px) {
  .headline {
    font-size: 24px;
  }
  .notify-form {
    flex-direction: column;
  }
}
@keyframes float1 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(30px, -20px); }
  50%  { transform: translate(-15px, 25px); }
  75%  { transform: translate(-20px, -15px); }
  100% { transform: translate(0, 0); }
}

@keyframes float2 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-25px, 15px); }
  50%  { transform: translate(20px, -30px); }
  75%  { transform: translate(15px, 10px); }
  100% { transform: translate(0, 0); }
}

@keyframes float3 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(10px, 20px); }
  50%  { transform: translate(-30px, -25px); }
  75%  { transform: translate(25px, 15px); }
  100% { transform: translate(0, 0); }
}

@keyframes float4 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-10px, -20px); }
  50%  { transform: translate(15px, 30px); }
  75%  { transform: translate(-20px, 10px); }
  100% { transform: translate(0, 0); }
}
