/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fondo general */
body {
  font-family: 'Poppins', sans-serif;
  background: #0b0f19;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  flex-direction: column;
}

/* Contenedor principal */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

img{
    border-radius: 20%;
}

/* Logo circular */
.logo .icon{  
    background: linear-gradient(135deg, #ff6a00, #ff2d55);
  color: #fff;
  font-size: 40px;
  padding: 15px 20px;
  border-radius: 20%;
  box-shadow: 0 4px 15px rgba(255, 70, 0, 0.4);
}

/* Título con degradado */
h1 {
  font-size: 128px;
  font-weight: 800;
  background: linear-gradient(90deg, #ff7b00, #ff3399);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtítulo */
p {
  font-size: 18px;
  color: #ccc;
  letter-spacing: 0.5px;
}

/* Botón "Coming Soon" */
.coming-btn {
  background: linear-gradient(135deg, #ff7b00, #ff4d4d);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
  padding: 12px 30px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 77, 0, 0.3);
  transition: transform 0.2s ease;
}

.coming-btn:hover {
  transform: scale(1.05);
}

/* Dots animados */
.dots {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: #ff7b00;
  border-radius: 50%;
  animation: blink 1.4s infinite;
}

.dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%, 80%, 100% { opacity: 0.2; }
  40% { opacity: 1; }
}

/* Responsivo */
@media (max-width: 600px) {
  h1 {
    font-size: 36px;
  }
  p {
    font-size: 16px;
  }
  .coming-btn {
    font-size: 16px;
    padding: 10px 25px;
  }
}



@media screen and (max-width: 800px) {
  h1 {
    font-size: 48px;
  }
  p {
    font-size: 18px;
  }
}