@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
  font-family: "Poppins", sans-serif;
  background: #0a0a1a;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}

.blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.6;
  z-index: 0;
}

.pink {
  width: 400px;
  height: 400px;
  background: #ff007a;
  top: 20%;
  left: -10%;
}

.blue {
  width: 500px;
  height: 500px;
  background: #00d2ff;
  bottom: 10%;
  right: -15%;
}

main {
  position: relative;
  z-index: 1;
  max-width: 500px;
  padding: 20px;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff007a, #00d2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 1.2rem;
  opacity: 0.7;
  margin-bottom: 40px;
}

.btn-open {
  padding: 14px 40px;
  background: transparent;
  border: 2px solid #00d2ff;
  color: #00d2ff;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 10px #00d2ff44;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hidden {
  opacity: 0;
  transform: scale(0.8);
}

.btn-open:hover {
  background: #00d2ff;
  color: #0a0a1a;
  box-shadow: 0 0 20px #00d2ff88;
  transform: scale(1.05);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 26, 0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  width: 90vw;
  max-width: 900px;
  height: 80vh;
  background: #111122;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 30px #00d2ff88;
}

.modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #00d2ff;
  cursor: pointer;
  font-weight: 700;
  transition: color 0.3s ease;
  z-index: 11;
}

.close:hover {
  color: #ff007a;
}

.features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.8;
}

.features li {
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .btn-open {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
  }
}

.logo {
  width: 50px;
  margin-bottom: 10px;
  margin-top: 10px;
  animation: float 4s ease-in-out infinite;
}

.dashboard {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 0 20px #00d2ff33;
  margin-top: 40px;
  opacity: 0;
}

/* Animation dashboard */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
