body {
  margin: 0;
  padding: 0;
  font-family: 'Courier New', monospace;
  background-color: #111;
  color: #eee;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.logo {
  width: 120px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: #f33;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 0.5rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-post {
  margin-bottom: 4rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 1rem;
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.button {
  display: inline-block;
  margin: 1rem 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #f33;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #c00;
}

.navbar {
  background-color: #000;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 1rem;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.navbar a {
  color: #eee;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #f33;
}