* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #181d23;
  color: #e7e7e7;
  font-family: 'Fira Mono', monospace;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.terminal {
  background: #101418;
  border-radius: 12px;
  box-shadow: 0 4px 28px #000a, 0 1.5px 0 0 #4fcf58;
  padding: 2rem 2rem;
  max-width: 500px;
  width: 90vw;
  text-align: center;
  border: 2px solid #4fcf58;
  position: relative;
  box-sizing: border-box;
}

.avatar {
  width: 130px;
  margin-bottom: 1.2rem;
  margin-top: -80px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: none;
  border: none;
  box-shadow: none;
}

.username {
  color: #4fcf58;
  font-size: 2.1rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.tagline {
  color: #adf7c2;
  margin-bottom: 1.5rem;
  font-size: 1.09rem;
  letter-spacing: 1px;
}

.prompt {
  color: #4fcf58;
  font-weight: bold;
  margin-right: 8px;
  font-size: 1.05em;
}

.content {
  text-align: left;
  background: #181d23;
  border-radius: 8px;
  padding: 1rem;
  font-size: 1.07rem;
  margin-bottom: 1.3rem;
  box-shadow: 0 0 8px #4fcf5877;
}

.osint-tag {
  display: inline-block;
  background: #272f37;
  color: #ffe97a;
  padding: 0.3em 0.7em;
  border-radius: 8px;
  font-size: 0.85em;
  margin: 0.2em;
  letter-spacing: 0.5px;
  border: 1px solid #ffe97a44;
}

.osint-tag-blue-team {
  background: #22324b;
  color: #4fa3ff;
  border: 1px solid #4fa3ff88;
}

.osint-tag-osint {
  background: #052c01;
  color: #036d26;
  border: 1px solid #0ac41388;
}

.links a {
  color: #4fcf58;
  text-decoration: none;
  margin: 0 0.5em;
  font-weight: bold;
  transition: color 0.17s;
}

.links a:hover {
  color: #ffe97a;
}

.footer {
  text-align: center;
  padding: 1rem 0;
  color: #888;
  font-size: 0.9rem;
  margin-top: 2rem;
}

.terminal-bar {
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: 'Fira Mono', monospace;
  color: #4fcf58;
  background: transparent;
  font-size: 1rem;
  z-index: 1000;
}

.terminal-bar .cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  background-color: #4fcf58;
  margin-left: 5px;
  animation: blink 1s step-end infinite;
  vertical-align: bottom;
}

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

.social-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.social-links a {
  color: #4fcf58;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #ffe97a;
}

.social-links svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 600px) {
  .terminal {
    width: 100%;
    padding: 1rem;
  }

  .avatar {
    width: 90px;
    margin-top: -50px;
  }

  .username {
    font-size: 1.4rem;
  }

  .tagline {
    font-size: 1rem;
    text-align: center;
  }

  .content {
    font-size: 0.95rem;
  }

  .links {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .social-links svg {
    width: 24px;
    height: 24px;
  }

  .terminal-bar {
    display: none;
  }
}

