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

body {
  font-family: "Google Sans Code", monospace;
  background: #0a0a0a;
  color: #c0c0c0;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

header {
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  font-size: 24px;
  color: #00ff00;
  letter-spacing: 2px;
}

.tagline {
  font-size: 13px;
  color: #666;
  margin-top: 5px;
}

.hero {
  margin-bottom: 80px;
}

.hero h1 {
  font-size: 36px;
  font-weight: normal;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero p {
  font-size: 16px;
  color: #888;
  max-width: 700px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.service {
  padding: 25px;
  background: #111;
  border: 1px solid #222;
  transition: border-color 0.3s;
  border-radius: 5px;
}

.service:hover {
  border-color: #00ff00;
  border-radius: 10px;
}

.service h3 {
  color: #00ff00;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: normal;
  letter-spacing: 1px;
}

.service p {
  font-size: 14px;
  color: #777;
}

.footer {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
  color: #555;
  font-size: 12px;
}

.terminal-prompt {
  color: #00ff00;
  margin-right: 10px;
}

.blink {
  animation: blink 3s infinite;
}

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

a {
  color: #00ff00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
