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

body {
  font-family: "Source Code Pro", monospace;
  background-color: #000;
  color: #00ced1; /* Bright cyan color from your portfolio */
  min-height: 100vh;
  overflow: hidden;
}

/* Matrix background */
#matrix-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Main content */
.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
}

/* Header section */
.header {
  margin-bottom: 2rem;
}

/* Name styling */
#name {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
  color: #00ced1; /* Bright cyan color */
}

/* Subtitle */
.subtitle {
  font-size: 1.5rem;
  color: #00ced1; /* Bright cyan color */
  margin-bottom: 0.5rem;
}

/* Tagline and typewriter */
.tagline {
  font-size: 1rem;
  color: #a0a0a0; /* Lighter gray for secondary text */
  margin-bottom: 1.5rem;
}

.cursor {
  animation: blink 1s infinite;
}

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

/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.social-icon {
  color: #00ced1; /* Bright cyan color */
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* Navigation buttons */
.nav-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 600px;
  margin-bottom: 3rem;
}

.nav-button {
  display: block;
  padding: 1rem;
  background-color: #1a1f2c; /* Dark navy blue from your portfolio */
  border: 1px solid rgba(0, 206, 209, 0.3); /* Cyan border */
  color: #00ced1; /* Bright cyan color */
  text-decoration: none;
  text-align: left;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.nav-button:hover {
  border-color: #00ced1;
  box-shadow: 0 0 15px rgba(0, 206, 209, 0.5);
  background-color: #232936; /* Slightly lighter navy blue on hover */
  transform: translateY(-2px);
}

.button-content {
  display: flex;
  flex-direction: column;
}

.button-title {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.button-desc {
  font-size: 0.75rem;
  opacity: 0.8;
  color: #a0a0a0; /* Lighter gray for secondary text */
}

/* Tagline footer */
.tagline-footer {
  font-size: 0.8rem;
  color: #00ced1; /* Bright cyan color */
}

.bold {
  font-weight: bold;
}

/* Responsive styles */
@media (min-width: 640px) {
  .nav-buttons {
    grid-template-columns: repeat(3, 1fr);
  }

  #name {
    font-size: 4rem;
  }
}

@media (min-width: 768px) {
  #name {
    font-size: 4.5rem;
  }

  .subtitle {
    font-size: 1.8rem;
  }
}
