body {
margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #0a0f1a 0%, #111827 100%);
  color: #e3e8ee;
  font-family: 'Space Grotesk', sans-serif;
  background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
  background-size: contain;
  background-repeat: repeat;
  min-height: 100vh;
}

.nav-bar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 0;
  background-color: rgba(10, 15, 25, 0.8);
  backdrop-filter: blur(8px);
  text-align: center;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-bar a {
  color: #e0e6f0;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-bar a:hover {
  color: #ffffff;
}

.performance-container {
    max-width: 1000px;
    margin: 120px auto 60px;
    padding: 0 30px;
}

.performance-title {
  text-align:left;
  font-size: 2.5rem;
  margin-top: 8rem;
  color: rgba(10, 15, 25, 0.8);
}

.performance-entry {
    display: flex;
    flex-direction: row;
    gap: 30px;
    background: rgba(255, 255, 255, 0.04);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

.performance-media iframe {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: none;
}

.performance-description {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.performance-description h2 {
  margin-top: 0;
  font-size: 1.6rem;
  color: rgba(10, 15, 25, 0.8);
}

.performance-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: #a5bbdf;
}

.site-footer {
  color: #444;
  padding: 20px 40px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
  margin-top: 80px;
}

.site-footer hr {
  border: none;
  border-top: 1px solid #ddd;
  margin-bottom: 15px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-content .left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.footer-content .right a {
  color: #444;
  margin-left: 20px;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.footer-content .right a:hover {
  color: #000;
}

@media (max-width: 768px) {
  .performance-entry {
    flex-direction: column;
    align-items: center;
  }
  .performance-description {
    text-align: center;
  }
}