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

body {
  font-family: "Arial", sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar {
  position: fixed;
  width: 100%;
  padding: 1rem 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  font-family: "Courier New", Courier, monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ff88;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 2px rgba(0, 255, 136, 0.3);
  font-smooth: never;
  -webkit-font-smoothing: none;
}
.navbar .logo .blink {
  animation: blink 1s step-end infinite;
  color: inherit;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.navbar .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.navbar .nav-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar .nav-links a:hover {
  color: #00ff88;
}
.navbar .menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url("/images/img_background_multiverse_site_lg.jpeg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero .hero-content .cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #00ff88;
  color: #0a0a0a;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}
.hero .hero-content .cta-button:hover {
  background: rgb(0, 229.5, 122.4);
  transform: translateY(-2px);
}
.hero .hero-content .cta-button:active {
  transform: translateY(1px);
}
@media (max-width: 480px) {
  .hero .hero-content .cta-button {
    width: 100%;
    padding: 1rem;
  }
}

.services {
  padding: 5rem 0;
}
.services h2 {
  text-align: center;
  margin-bottom: 3rem;
}
.services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.services .service-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.services .service-card:hover {
  transform: translateY(-5px);
}
.services .service-card h3 {
  color: #00ff88;
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00ff88;
}
.contact-form button {
  background: #00ff88;
  color: #0a0a0a;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: rgb(0, 229.5, 122.4);
}
.contact-form .grecaptcha-badge {
  opacity: 0.8;
  transition: opacity 0.3s;
}
.contact-form .grecaptcha-badge:hover {
  opacity: 1;
}

footer {
  text-align: center;
  padding: 2rem 0;
  background: #1a1a1a;
  margin-top: 5rem;
}

@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }
  .navbar .nav-links.active {
    display: flex;
  }
  .navbar .menu-toggle {
    display: block;
  }
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

/*# sourceMappingURL=styles.css.map */
