/* Reset & base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background-color: #121212;
  color: #e0e0e0;
  padding: 20px;
  line-height: 1.6;
}

/* Header & Nav */
header {
  text-align: center;
  margin-bottom: 30px;
}

nav a {
  color: #e0e0e0;
  margin: 0 15px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

nav a:hover {
  border-color: #ff0033;
}

/* Main content */
main {
  max-width: 800px;
  margin: 0 auto;
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  max-width: 300px;
  border: 2px solid #ff0033;
  border-radius: 5px;
}

/* Footer & Audio Player */
footer {
  margin-top: 40px;
  text-align: center;
}

audio {
  margin-top: 20px;
}
.hero {
  text-align: center;
  margin: 40px auto;
  max-width: 700px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.feature-box {
  background-color: #1e1e1e;
  border: 2px solid #ff0033;
  border-radius: 8px;
  padding: 20px;
  max-width: 250px;
  flex: 1 1 250px;
  text-align: center;
  transition: transform 0.2s;
}

.feature-box:hover {
  transform: translateY(-5px);
}
/* Blog styles */
.blog-post {
  background-color: #1e1e1e;
  border-left: 4px solid #ff0033;
  padding: 20px;
  margin: 20px auto;
  max-width: 700px;
  border-radius: 6px;
}

.blog-post h2 {
  margin-bottom: 10px;
}

.blog-post p small {
  color: #aaa;
}

/* Tire smoke animated background */
.smoke-bg {
  background: #121212 url('media/smoke.gif') repeat top center;
  background-size: cover;
  animation: driftSmoke 40s linear infinite;
}

@keyframes driftSmoke {
  from { background-position: 0 0; }
  to { background-position: -1000px 0; }
}
