
body {
  background-color: #000;
  color: #f5f5f5;
  font-family: "Courier New", monospace;
}

a {
  color: #ff0033;
}

nav {
  background-color: #111;
  border-bottom: 2px solid #ff0033;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

main.container {
  padding-top: 5rem;
}

img {
  max-width: 100%;
  filter: grayscale(100%) contrast(120%);
}

figure {
  background: #111;
  padding: 1rem;
  border: 1px solid #333;
}

h1, h2, h3 {
  color: #ff0033;
}

.glitch {
  text-shadow: 1px 0 red, -1px 0 cyan;
  animation: glitch 0.5s infinite alternate;
}

@keyframes glitch {
  0% { transform: translate(0.5px, -0.5px); }
  100% { transform: translate(-0.5px, 0.5px); }
}

form input, form textarea {
  background-color: #111;
  color: #fff;
  border: 1px solid #444;
}

footer {
  border-top: 1px solid #333;
  padding-top: 2rem;
  margin-top: 4rem;
}

.hero {
  text-align: center;
  padding: 4rem 0;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero-visual {
  margin: 3rem 0;
  position: relative;
}

.hero-visual img {
  height: 300px;
  object-fit: cover;
  border: 2px solid #ff0033;
}

.hero-visual figcaption {
  background: #ff0033;
  color: #000;
  padding: 0.5rem;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
}

.manifesto {
  background: #111;
  border: 1px solid #333;
  padding: 2rem;
  margin: 3rem 0;
  text-align: left;
  border-left: 4px solid #ff0033;
}

.manifesto h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* Dynamic content styles */
.loading {
  color: #ff0033;
  font-family: "Courier New", monospace;
  text-align: center;
  padding: 2rem;
}

.tracks-grid, .art-grid, .writings-list, .blog-posts {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.track-item, .art-item, .writing-item, .blog-post {
  background: #111;
  border: 1px solid #333;
  border-left: 3px solid #ff0033;
  padding: 1.5rem;
}

.track-item h3, .art-item h3, .writing-item h3, .blog-post h3 {
  margin-bottom: 1rem;
  color: #ff0033;
}

.track-item img, .art-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin: 1rem 0;
}

.writing-meta, .post-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.type {
  background: #ff0033;
  color: #000;
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.read-more {
  background: transparent;
  border: 1px solid #ff0033;
  color: #ff0033;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: "Courier New", monospace;
  margin-top: 1rem;
}

.read-more:hover {
  background: #ff0033;
  color: #000;
}

.full-content {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-item {
  background: #111;
  border: 1px solid #333;
  border-left: 3px solid #ff0033;
  padding: 1.5rem;
}

.social-item h3 {
  margin-bottom: 0.5rem;
  color: #ff0033;
}

.social-item a {
  display: block;
  margin-bottom: 0.5rem;
  word-break: break-all;
}

/* Mobile optimization */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  nav .container-fluid {
    flex-direction: column;
    text-align: center;
  }
  
  main.container {
    padding-top: 8rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .social-grid {
    grid-template-columns: 1fr;
  }
  
  .tracks-grid, .art-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  
  input, textarea, button {
    width: 100%;
    font-size: 16px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .track-item img, .art-item img {
    height: 150px;
  }
}

.status-text {
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ccc;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.social-item {
  background: #111;
  padding: 2rem;
  border: 1px solid #333;
  text-align: center;
}

.social-item h3 {
  margin-bottom: 1rem;
}

.social-item a {
  display: block;
  padding: 0.5rem;
  margin: 0.5rem 0;
  background: #222;
  text-decoration: none;
  border: 1px solid #444;
  transition: all 0.3s;
}

.social-item a:hover {
  background: #ff0033;
  color: #000;
  transform: translate(2px, -2px);
}
