:root {
  --bg-color: white;
  --text-color: black;
}

body.dark-mode {
  --bg-color: #121212;
  --text-color: white;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

@media (max-width: 768px) {
   .menu { display: block; }
   .hero__terminal { width: 90% !important; }
   .img-with-text img { max-width: 60% !important; margin-left: 0; }
}

.menu {
    z-index: 10;
}


.topmate-button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  display: inline-block;
  font-weight: bold;
  margin-top: 10px;
}
.topmate-button:hover {
  background-color: #0056b3;
}



/* 🔘 Button */
.topmate-modal-btn {
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.topmate-modal-btn:hover {
  background-color: #0056b3;
}

/* 📦 Modal Layout */
.topmate-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.topmate-modal-content {
  position: relative;
  margin: 5% auto;
  width: 90%;
  max-width: 700px;
  height: 80%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.topmate-close {
  position: absolute;
  right: 16px;
  top: 8px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 1;
}
.topmate-close:hover {
  color: #e74c3c;
}

