.main {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.main .content-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.main .arcade-footer {
  padding: 2rem;
  border-left-style: solid;
  border-right-style: solid;
  border-left-color: #ff0077;
  border-right-color: #ff0077;
  border-left-width: 4px;
  border-right-width: 4px;
  color: #ffd300;
  text-align: center;
  background-color: #1a1a2e;
}
.main .arcade-footer p {
  margin: 0;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.8rem;
}
header {
  display: flex;
  padding: 1rem 2rem;
  border-left-style: solid;
  border-right-style: solid;
  border-left-color: #00f0ff;
  border-right-color: #00f0ff;
  border-left-width: 4px;
  border-right-width: 4px;
  box-shadow: 0px 6px 0px #ff0077;
  justify-content: center;
  background-color: #1a1a2e;
}
header .header-container {
  display: flex;
  width: 100%;
  max-width: 1100px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
header .logo-area a {
  color: #00f0ff;
  font-family: 'Press Start 2P', monospace;
  font-size: 1.4rem;
  text-decoration: none;
}
header .logo-area a:hover {
  color: #ffd300;
}
header nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
header nav .nav-item a {
  display: flex;
  padding: 0.5rem 1rem;
  border: solid transparent 4px;
  align-items: center;
  color: #e0e0e0;
  font-family: 'Press Start 2P', monospace;
  font-size: 1rem;
  text-decoration: none;
}
header nav .nav-item a:hover {
  border: solid #ffd300 4px;
  color: #ffd300;
  background-color: #16213e;
}
header nav div.active a {
  border: solid #ff0077 4px;
  color: #ffd300;
  background-color: #16213e;
}
.about-header {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.bio-box {
  margin-bottom: 3rem;
}
.bio-text {
  color: #e0e0e0;
  font-size: 1.4rem;
}
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.stats-container .stat-box {
  min-width: 320px;
  flex-grow: 1;
}
.stats-container .contact-box {
  min-width: 320px;
  flex-grow: 1;
}
.stat-row {
  display: flex;
  margin-top: 1rem;
  margin-bottom: 1rem;
  justify-content: space-between;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.9rem;
}
.stat-row .stat-label {
  color: #00f0ff;
}
.stat-row .stat-bar {
  color: #00ff66;
}
.contact-links {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-section {
  display: flex;
  margin-top: 2rem;
  margin-bottom: 4rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-section .subtitle {
  max-width: 800px;
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
  font-size: 1.4rem;
}
.projects-header {
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  border-bottom-style: solid;
  border-bottom-color: #ff0077;
  border-bottom-width: 4px;
}
.card-img-wrapper {
  display: flex;
  padding: 0.5rem;
  margin-bottom: 1.5rem;
  border: solid #00f0ff 4px;
  justify-content: center;
  background-color: #121224;
}
.tags-row {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.project-desc {
  margin-bottom: 2rem;
  color: #e0e0e0;
  font-size: 1.1rem;
}
.card-action {
  display: flex;
  margin-top: 1rem;
  justify-content: start;
}