@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

/* Matrix Code NFI Font */
@font-face {
  font-family: 'Matrix Code NFI';
  font-style: normal;
  font-weight: normal;
  src: local('Matrix Code NFI'), url('matrix code nfi.woff') format('woff');
}

html, body {
  margin: 0;
  padding: 0;
  height: 0%;
  background: black;
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
}

canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

.content-wrapper {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}

/* Navigation Styles */
.nav {
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid #ff0000;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-logo {
  max-height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-menu li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #ff0000;
}

.nav-menu li a.active {
  color: #ff0000;
}

.header {
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.logo {
  max-width: 300px;
  margin: 20px auto;
}

.blog-container, .about-container, .pgp-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 0, 0, 0.3);
}

.blog-post {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ff0000;
  background: rgba(0, 0, 0, 0.5);
}

.blog-post:last-child {
  margin-bottom: 0;
}

.blog-post h2 {
  margin-top: 0;
  color: #ffffff;
}

.blog-post .date {
  color: #888888;
  font-size: 14px;
}

.blog-post .content {
  margin-top: 15px;
  line-height: 1.6;
}

.blog-post .tags {
  margin-top: 15px;
}

.blog-post .tags span {
  background: #888888;
  color: black;
  padding: 3px 8px;
  margin-right: 5px;
  font-size: 12px;
}

/* About page styles */
.about-content {
  font-size: 16px;
}

.about-content h2 {
  color: #ff0000;
  margin-bottom: 15px;
}

.about-content p {
  margin-bottom: 20px;
}

/* PGP page styles */
.pgp-key {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #ff0000;
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.4;
  white-space: pre-wrap;
  overflow-x: auto;
  margin: 20px 0;
}

.pgp-info {
  margin-bottom: 30px;
}

.pgp-info h2 {
  color: #ff0000;
  margin-bottom: 15px;
}

.pgp-info p {
  margin-bottom: 15px;
} 