@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
:root {
--font-family: 'Share Tech Mono', monospace;
--color-accent: #00cbfe;
--color-dark: #ff3000;
--box-coloraccent: 0 0 15px rgba(0, 203, 254, 0.3);
--box-colordark: 0 0 15px rgba(255, 48, 0, 0.3);
--color-bg: rgb(0, 0, 0);  
}

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

body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  background-image: linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 100% 3px;
  z-index: 2;
}

canvas {
  display: block;
}

.center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

.coming-soon-box {
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 20px;
  max-width: 600px;
  width: 100%;
  margin: auto;
  background-color: rgba(17, 17, 17, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 12px;
  box-shadow: var(--box-coloraccent);
}

.coming-soon-box img {
  width: 50%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
    user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.soon {
  color: var(--color-accent);
  font-family: var(--font-family);
  margin-top:20px;
  font-size: 24px;
  text-align: center;
  word-break: break-word;
  
}

button {
  background: none;
  border: none;
  color: white;  
  font-family: var(--font-family); 
  font-size: 12px;
  padding: 0;
  margin: 0;
  text-decoration: underline;
  cursor: pointer;
   text-decoration: none;
}

@media (max-width: 800px) {
  .coming-soon-box {
    max-width: 80%;
    width: 100%;
    padding: 60px 30px;
    gap: 20px;
  }

  .coming-soon-box img {
    width: 70%;
    max-width: 250px;
  }

  .soon {
    font-size: 28px;
  }

  button {
    font-size: 14px;
  }
}
