/* ===== COMING SOON PAGE - BLOCKCHAIN BACKGROUND ===== */
.coming-soon-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blockchain Grid Background */
.blockchain-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Blockchain Nodes */
.blockchain-nodes {
  position: absolute;
  inset: 0;
}

.node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #00ffff;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
  animation: node-pulse 2s ease-in-out infinite;
}

.node-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.node-2 {
  top: 30%;
  left: 40%;
  animation-delay: 0.3s;
}

.node-3 {
  top: 20%;
  left: 60%;
  animation-delay: 0.6s;
}

.node-4 {
  top: 70%;
  left: 20%;
  animation-delay: 0.9s;
}

.node-5 {
  top: 60%;
  left: 50%;
  animation-delay: 1.2s;
}

.node-6 {
  top: 70%;
  left: 80%;
  animation-delay: 1.5s;
}

@keyframes node-pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Blockchain Connections */
.blockchain-connections {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.connections-svg {
  width: 100%;
  height: 100%;
}

.connection-line {
  stroke: url(#connectionGradient);
  stroke-width: 2;
  stroke-dasharray: 10 5;
  animation: connection-flow 3s linear infinite;
}

@keyframes connection-flow {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    stroke-dashoffset: 30;
    opacity: 0.3;
  }
}

/* Content */
.coming-soon-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px;
  max-width: 600px;
}

.coming-soon-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 24px;
  padding: 20px;
}

.coming-soon-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coming-soon-title {
  font-size: 4rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.coming-soon-subtitle {
  font-size: 1.3rem;
  color: #888888;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

.coming-soon-icon {
  font-size: 3rem;
  color: #00ffff;
  margin-bottom: 40px;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.coming-soon-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 14px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.coming-soon-back-btn:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 255, 255, 0.2);
}

.coming-soon-back-btn i {
  transition: transform 0.3s ease;
}

.coming-soon-back-btn:hover i {
  transform: translateX(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .coming-soon-title {
    font-size: 2.5rem;
  }

  .coming-soon-subtitle {
    font-size: 1.1rem;
  }

  .coming-soon-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
  }

  .coming-soon-icon {
    font-size: 2.5rem;
  }
}

