.text-box {
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.6);
    color: black;
    border-radius: 4px;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    border: 2px solid rgb(53, 47, 108);
    box-shadow: 3px 3px 0px rgb(23, 17, 77);
    font-size: clamp(13px, 2vw, 15px);
    text-align: center;
    z-index: 200;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, bottom 0.3s ease-in-out, box-shadow 0.2s ease;
}

#info-text {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #94c2cad9; /* soft white background */
    color: #1f1f1f;
    border: 1.5px solid #352f6c;
    border-radius: 6px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(18px, 3.5vw, 26px);
    font-weight: 500;
    text-align: center;
    z-index: 200;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}


#instruction-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

#social-links {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: rgba(147, 144, 144, 0.92);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

#social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

#social-links a:hover {
  color: #0073b1;
}

#social-links img {
  width: 20px;
  height: 20px;
}

.made-by {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
  text-align: center;
}


#coffee-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

#video-link {
    position: absolute;
    top: 10px;
    left: 10px;
}

#logo-container {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #93b6bf, #2d9dd0);
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Segoe UI', sans-serif;
    transition: transform 0.3s ease;
}

#logo-container:hover {
    transform: scale(1.05);
}

#logo {
    font-size: 1.8em;
}

#creator {
    font-size: 0.9rem;
    color: #333;
}

#matrixCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background: black;
}

.center-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: monospace;
  font-size: 2.5rem;
  color: #00ffcc;
  text-shadow: 0 0 10px #00ffcc;
  white-space: nowrap;
}
#typewriter::after {
  content: "|";
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.intro {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  text-align: center;
  animation: fadeInOut 4s ease-in-out infinite;
}

.intro h1 {
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  
}

.intro h1 span {
  color: #0ff;
  text-shadow: 0 0 20px #0ff;
}

.intro p {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #ccc;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
#tutorial-box {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 250px;
  background: rgba(0, 0, 0, 0.6); /* transparent background */
  color: #fff;
  font-family: Arial, sans-serif;
  border-radius: 12px;
  padding: 15px;
  z-index: 999;
  box-shadow: 0 0 15px rgba(0,255,255,0.5);
  animation: fadeIn 1.2s ease-in-out;
}

#tutorial-header {
  font-weight: bold;
  font-size: 18px;
  color: #0ff;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#close-tutorial {
  cursor: pointer;
  font-size: 20px;
  color: #fff;
}

#tutorial-content p {
  font-size: 14px;
  margin: 8px 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* .tagline-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    text-align: center;
}

.tagline {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #ff00cc, 0 0 20px #00ffe1;
    animation: floatText 3s ease-in-out infinite;
}

@keyframes floatText {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-15px);
    }
} */
