
body {
    
    
    

    margin: 0;
    padding: 0;
    
    font-family: 'Courier New', monospace;
    color: #00f0ff;
    overflow-x: hidden;

  background: #000;
  background-size: 65%;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 1000vw;
  height: 1000vh;
  background: url('../assets/sitebackground.png') no-repeat center center fixed;
  background-size: 65%;
  z-index: -2;
  opacity: 0.5;
}

canvas#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: transparent;
    pointer-events: none;
    opacity: 0.8;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: auto;
    padding: 2rem;
}

.terminal-box {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00f0ff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px #00f0ff88;
}

.services-box, .contact-box {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00f0ff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px #00f0ff88;
    transition: all 0.3s ease;
}

.services-box:hover,
.contact-box:hover {
    box-shadow: 0 0 25px #00f0ffcc;
    transform: scale(1.01);
}

h2 {
    text-shadow: 0 0 6px #00f0ff;
}

.blinker {
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.service-list li {
    margin: 1rem 0;
    cursor: pointer;
    transition: 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 10px;
}
.service-list li:hover {
    border-left: 3px solid #00f0ff;
    background: rgba(0, 240, 255, 0.05);
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    background: black;
    border: 1px solid #00f0ff;
    color: #00f0ff;
    font-family: monospace;
}

button {
    background: transparent;
    border: 1px solid #00f0ff;
    color: #00f0ff;
    padding: 0.6rem 1.5rem;
    font-family: monospace;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 0 8px #00f0ff88;
    transition: all 0.2s ease;
}

button:hover {
    background: #00f0ff22;
    box-shadow: 0 0 12px #00f0ffcc;
}

canvas.matrix { position: fixed; top: 0; left: 0; z-index: -1; pointer-events: none; }

.custom-popup {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -20%);
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #00ffff;
  color: #00ffff;
  padding: 20px;
  z-index: 9999;
  border-radius: 8px;
  font-family: monospace;
  box-shadow: 0 0 20px #00ffff;
}

.custom-popup .popup-content button {
  margin-top: 10px;
  background: #00ffff;
  color: black;
  border: none;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}




  .terminal-box {
    overflow-x: hidden;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
  }

  pre#terminal-output {
    white-space: pre-wrap;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    overflow-x: hidden;
    max-width: 100%;
  }

  input,
  textarea {
    font-size: 1rem;
    padding: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
  }

  button {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}


.terminal-line {
  white-space: pre-wrap;
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
  box-sizing: border-box;
}



  .terminal-box {
    overflow-x: hidden;
    max-width: 100%;
  }

  #terminal-output {
    max-width: 100%;
  }

  input,
  textarea {
    font-size: 1rem;
    padding: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
  }

  button {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}


@media screen and (max-width: 600px) {
  .container {
    padding: 1rem;
  }

  .contact-box {
    padding: 1rem;
  }

  input,
  textarea {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 0.75rem;
  }

  textarea {
    min-height: 100px;
    resize: vertical;
  }

  button {
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
    width: 100%;
  }

  .terminal-box {
    overflow-x: hidden;
    max-width: 100%;
  }

  #terminal-output {
    max-width: 100%;
  }

  .terminal-line {
    white-space: pre-wrap;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
    box-sizing: border-box;
  }
}

.price-box {
  display: none;
  margin-top: 0.5rem;
  color: #00f0ff;
  font-style: italic;
}

.price-toggle {
  background: transparent;
  border: 1px solid #00f0ff;
  color: #00f0ff;
  margin-top: 0.5rem;
  padding: 0.3rem 1rem;
  font-family: monospace;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 0 6px #00f0ff66;
  transition: all 0.2s ease;
}

.price-toggle:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 10px #00f0ffcc;
}
