@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&family=Share+Tech+Mono&display=swap');



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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'VT323', monospace;
  font-size: 1.35rem;
  line-height: 1.6;
  color: #e0e0e0;
  background: #0a0a0f;
}

.light-mode body {
  font-family: 'VT323', monospace;
  font-size: 1.35rem;
  line-height: 1.6;
  color: #1a1a2e;
  background: #e8e0d4;
}

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

.light-mode a {
  color: #0077aa;
  text-decoration: none;
}

a:hover {
  color: #3399ff;
}

.light-mode a:hover {
  color: #0055aa;
}

h1,
h2,
h3,
h4 {
  font-family: 'Press Start 2P', monospace;
  line-height: 1.4;
}

h1 {
  font-size: 1.6rem;
}

h2 {
  font-size: 1rem;
}

h3 {
  font-size: 0.85rem;
}

h4 {
  font-size: 0.75rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #121218;
  border-bottom: 2px solid #3399ff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.light-mode .navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f5efe6;
  border-bottom: 2px solid #0055aa;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.7rem;
  color: #3399ff;
  text-transform: uppercase;
}

.light-mode .nav-logo {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.7rem;
  color: #0055aa;
  text-transform: uppercase;
}

.nav-logo span {
  color: #ff6ec7;
}

.light-mode .nav-logo span {
  color: #cc3388;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links li a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.95rem;
  color: #a0a0b0;
  text-transform: uppercase;
}

.light-mode .nav-links li a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.95rem;
  color: #3a3a5a;
  text-transform: uppercase;
}

.nav-links li a:hover {
  color: #3399ff;
}

.light-mode .nav-links li a:hover {
  color: #0055aa;
}

.theme-toggle {
  background: none;
  border: 2px solid #3399ff;
  color: #3399ff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  transition: background 0.5s ease, color 0.5s ease, border-color 0.2s ease;
}

.light-mode .theme-toggle {
  background: none;
  border: 2px solid #0055aa;
  color: #0055aa;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
}

.theme-toggle:hover {
  background: #3399ff;
  color: #0a0a0f;
}

.light-mode .theme-toggle:hover {
  background: #0055aa;
  color: #e8e0d4;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3rem;
  padding: 4rem 2rem;
  min-height: 70vh;
}

.hero-image img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border: 3px solid #3399ff;
  box-shadow: 6px 6px 0 #2266cc;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.light-mode .hero-image img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border: 3px solid #0055aa;
  box-shadow: 6px 6px 0 #003366;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.hero-image img:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #2266cc;
}

.light-mode .hero-image img:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #003366;
}

.hero-text {
  max-width: 500px;
}

.hero-text .greeting {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.2rem;
  color: #3399ff;
  margin-bottom: 0.5rem;
}

.light-mode .hero-text .greeting {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.2rem;
  color: #0055aa;
  margin-bottom: 0.5rem;
}

.hero-text h1 {
  margin-bottom: 0.5rem;
}

.hero-text h1 .highlight {
  color: #3399ff;
}

.light-mode .hero-text h1 .highlight {
  color: #0055aa;
}

.hero-text .tagline {
  font-size: 1.5rem;
  color: #a0a0b0;
  margin-bottom: 1.5rem;
}

.light-mode .hero-text .tagline {
  font-size: 1.5rem;
  color: #3a3a5a;
  margin-bottom: 1.5rem;
}

.hero-text .hero-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  display: inline-block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  padding: 0.7rem 1.5rem;
  border: 2px solid #3399ff;
  color: #3399ff;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
}

.light-mode .btn {
  display: inline-block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  padding: 0.7rem 1.5rem;
  border: 2px solid #0055aa;
  color: #0055aa;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
}

.btn:hover {
  background: #3399ff;
  color: #0a0a0f;
}

.light-mode .btn:hover {
  background: #0055aa;
  color: #e8e0d4;
}

.btn-filled {
  background: #3399ff;
  color: #0a0a0f;
}

.light-mode .btn-filled {
  background: #0055aa;
  color: #e8e0d4;
}

.btn-filled:hover {
  background: transparent;
  color: #3399ff;
}

.light-mode .btn-filled:hover {
  background: transparent;
  color: #0055aa;
}

.section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  color: #3399ff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.light-mode .section-title {
  color: #0055aa;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #6a6a7a;
  margin-bottom: 2rem;
}

.light-mode .section-subtitle {
  font-size: 1.3rem;
  color: #7a7a9a;
  margin-bottom: 2rem;
}

.about-content p {
  margin-bottom: 1rem;
  color: #a0a0b0;
}

.light-mode .about-content p {
  margin-bottom: 1rem;
  color: #3a3a5a;
}

.about-content strong {
  color: #3399ff;
}

.light-mode .about-content strong {
  color: #0055aa;
}

.quote-block {
  border-left: 4px solid #3399ff;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: #1a1a24;
  font-style: italic;
  font-size: 1.5rem;
  color: #a0a0b0;
}

.light-mode .quote-block {
  border-left: 4px solid #0055aa;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: #faf6f0;
  font-style: italic;
  font-size: 1.5rem;
  color: #3a3a5a;
}

.quote-block .quote-author {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 1.1rem;
  color: #2266cc;
}

.light-mode .quote-block .quote-author {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 1.1rem;
  color: #003366;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.skill-card {
  background: #1a1a24;
  border: 1px solid #2a2a3a;
  padding: 1.2rem;
}

.light-mode .skill-card {
  background: #faf6f0;
  border: 1px solid #c8c0b4;
  padding: 1.2rem;
}

.skill-card:hover {
  border-color: #3399ff;
}

.light-mode .skill-card:hover {
  border-color: #0055aa;
}

.skill-card h4 {
  color: #3399ff;
  margin-bottom: 0.5rem;
}

.light-mode .skill-card h4 {
  color: #0055aa;
  margin-bottom: 0.5rem;
}

.skill-card p {
  color: #a0a0b0;
  font-size: 1.2rem;
}

.light-mode .skill-card p {
  color: #3a3a5a;
  font-size: 1.2rem;
}

.retro-list {
  list-style: none;
  text-align: left;
  display: inline-block;
}

.retro-list.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

.retro-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #a0a0b0;
}

.light-mode .retro-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #3a3a5a;
}

.retro-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #3399ff;
  font-family: 'Share Tech Mono', monospace;
  font-weight: bold;
}

.light-mode .retro-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #0055aa;
  font-family: 'Share Tech Mono', monospace;
  font-weight: bold;
}

.retro-list li:hover {
  color: #e0e0e0;
}

.light-mode .retro-list li:hover {
  color: #1a1a2e;
}

.table-container {
  margin: 1rem 0;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.3rem;
}

table thead {
  background: #3399ff;
  color: #0a0a0f;
}

.light-mode table thead {
  background: #0055aa;
  color: #e8e0d4;
}

table th {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.6rem;
  padding: 1rem;
  text-align: left;
  text-transform: uppercase;
}

table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #2a2a3a;
  color: #a0a0b0;
  vertical-align: top;
}

.light-mode table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #c8c0b4;
  color: #3a3a5a;
  vertical-align: top;
}

table tbody tr:nth-child(even) {
  background: rgba(51, 153, 255, 0.04);
}

.light-mode table tbody tr:nth-child(even) {
  background: rgba(0, 85, 170, 0.05);
}

table tbody tr:hover {
  background: rgba(51, 153, 255, 0.08);
}

.light-mode table tbody tr:hover {
  background: rgba(0, 85, 170, 0.1);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.link-card {
  display: block;
  background: #1a1a24;
  border: 1px solid #2a2a3a;
  padding: 1.2rem;
  text-decoration: none;
}

.light-mode .link-card {
  display: block;
  background: #faf6f0;
  border: 1px solid #c8c0b4;
  padding: 1.2rem;
  text-decoration: none;
}

.link-card:hover {
  border-color: #3399ff;
}

.light-mode .link-card:hover {
  border-color: #0055aa;
}

.link-card .link-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.55rem;
  color: #3399ff;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  display: block;
}

.light-mode .link-card .link-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.55rem;
  color: #0055aa;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  display: block;
}

.link-card .link-desc {
  color: #a0a0b0;
  font-size: 1.2rem;
}

.light-mode .link-card .link-desc {
  color: #3a3a5a;
  font-size: 1.2rem;
}

.web-image-container {
  margin: 2rem 0;
  text-align: center;
}

.web-image-container img {
  max-width: 100%;
  border: 2px solid #2a2a3a;
  box-shadow: 4px 4px 0 #2266cc;
}

.light-mode .web-image-container img {
  max-width: 100%;
  border: 2px solid #c8c0b4;
  box-shadow: 4px 4px 0 #003366;
}

.web-image-container .caption {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: #6a6a7a;
  margin-top: 0.5rem;
}

.light-mode .web-image-container .caption {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: #7a7a9a;
  margin-top: 0.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.form-input {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.1rem;
  padding: 1rem;
  background: #1a1a24;
  border: 1px solid #2a2a3a;
  color: #e0e0e0;
  outline: none;
  resize: vertical;
}

.light-mode .form-input {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.1rem;
  padding: 1rem;
  background: #faf6f0;
  border: 1px solid #c8c0b4;
  color: #1a1a2e;
  outline: none;
  resize: vertical;
}

.form-input:focus {
  border-color: #3399ff;
}

.light-mode .form-input:focus {
  border-color: #0055aa;
}

.footer {
  background: #121218;
  border-top: 2px solid #3399ff;
  padding: 2rem;
  text-align: center;
}

.light-mode .footer {
  background: #f5efe6;
  border-top: 2px solid #0055aa;
  padding: 2rem;
  text-align: center;
}

.footer p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  color: #6a6a7a;
  margin-bottom: 0.5rem;
}

.light-mode .footer p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  color: #7a7a9a;
  margin-bottom: 0.5rem;
}

.footer .footer-accent {
  color: #3399ff;
}

.light-mode .footer .footer-accent {
  color: #0055aa;
}

.footer #page-info {
  font-size: 0.85rem;
  color: #6a6a7a;
  margin-top: 0.5rem;
}

.light-mode .footer #page-info {
  font-size: 0.85rem;
  color: #7a7a9a;
  margin-top: 0.5rem;
}