/* Fonts & Base */
body {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  background: radial-gradient(circle at top, #0a0a0f, #000);
  color: #fff;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #37036E, #F20588, #F20540);
  text-align: center;
  padding: 2rem;
}

.tagline {
  font-size: 1.2rem;
  color: #ccc;
  margin-top: 0.5rem;
  letter-spacing: 2px;
}

/* Glitch Text Effect */
.glitch {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  position: relative;
  color: #fff;
  animation: flicker 2s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 magenta;
  animation: glitch 2s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 cyan;
  animation: glitch 3s infinite linear alternate-reverse;
}

@keyframes glitch {
  0% { clip: rect(44px, 9999px, 56px, 0); }
  20% { clip: rect(12px, 9999px, 36px, 0); }
  40% { clip: rect(85px, 9999px, 96px, 0); }
  60% { clip: rect(10px, 9999px, 22px, 0); }
  80% { clip: rect(54px, 9999px, 68px, 0); }
  100% { clip: rect(0px, 9999px, 10px, 0); }
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.3;
  }
}

/* Social Links */
.socials {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.socials a {
  text-decoration: none;
  color: #fff;
  padding: 0.7rem 1.2rem;
  border: 2px solid #0ff;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.socials a:hover {
  background: #0ff;
  color: #000;
  text-shadow: 0 0 8px #000;
}

/* Sections */
section {
  padding: 4rem 2rem;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0ff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.embeds iframe {
  max-width: 600px;
  width: 100%;
  margin: 1rem auto;
  display: block;
  border: none;
}

/* Shows */
.shows ul {
  list-style: none;
  padding: 0;
}

.shows li {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

/* About 
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.about-content img {
  max-width: 250px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,255,255,0.6);
}

/* Footer 
footer {
  background: #000;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}*/





.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;   /* center-align content */
  display: flex;
  flex-direction: column; /* stack image + text vertically */
  gap: 2rem;
  align-items: center;  /* keep image centered */
}

.promo-photo {
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,255,255,0.6);
}
