
:root {
  --bg-color: #050505;
  --primary-color: #ff003c;
  --secondary-color: #cc0000;
  --text-main: #ffffff;
  --text-dim: #a0a0a0;
  --accent-grey: #1a1a1a;
  --industrial-grey: #2d2d2d;
  --font-heading: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'Inter', sans-serif;
  --glitch-shadow: 2px 0 #00ffff, -2px 0 #ff00ff;
  --ease-main: cubic-bezier(0.23, 1, 0.32, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=JetBrains+Mono:wght@400;700&family=Outfit:wght@700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Dynamic Background System */
.light-system {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: #000;
  pointer-events: none;
}

/* Particle System */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  animation: float 20s infinite linear;
}

@keyframes float {
  from { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  to { transform: translateY(-100px) translateX(40px); opacity: 0; }
}

.wash-light {
  position: absolute;
  width: 80vw;
  height: 80vh;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  animation: move-light 12s infinite alternate ease-in-out;
}

.wash-light.red {
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  top: -20%;
  left: -20%;
}

.wash-light.blue {
  background: radial-gradient(circle, #0015ff 0%, transparent 70%);
  bottom: -20%;
  right: -20%;
  animation-duration: 9s;
  animation-delay: -3s;
}

.wash-light.purple {
  background: radial-gradient(circle, #9d00ff 0%, transparent 70%);
  top: 40%;
  left: 40%;
  width: 40vw;
  height: 40vh;
  animation-duration: 15s;
  animation-delay: -5s;
}

@keyframes move-light {
  from { transform: translate(-30%, -30%) scale(0.8); }
  to { transform: translate(30%, 30%) scale(1.3); }
}

.laser-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.laser {
  position: absolute;
  background: var(--primary-color);
  width: 2px;
  height: 200vh;
  opacity: 0.4;
  box-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
  transform-origin: top;
  animation: laser-sweep 3s infinite ease-in-out;
}

.laser.blue {
    background: #00f7ff;
    box-shadow: 0 0 15px #00f7ff, 0 0 30px #00f7ff;
    animation-duration: 5s;
    animation-delay: -1s;
}

.laser:nth-child(1) { left: 10%; animation-delay: 0s; }
.laser:nth-child(2) { left: 30%; animation-delay: 1.5s; transform: rotate(15deg); }
.laser:nth-child(3) { left: 50%; animation-delay: 0.5s; transform: rotate(-10deg); }
.laser:nth-child(4) { left: 70%; animation-delay: 2s; transform: rotate(20deg); }
.laser:nth-child(5) { left: 90%; animation-delay: 1s; transform: rotate(-15deg); }

@keyframes laser-sweep {
  0% { transform: rotate3d(0, 1, 0, -35deg); opacity: 0; }
  20% { opacity: 0.6; }
  50% { transform: rotate3d(0, 1, 0, 35deg); opacity: 0.8; }
  80% { opacity: 0.6; }
  100% { transform: rotate3d(0, 1, 0, -35deg); opacity: 0; }
}

/* Splash Gate (The Doorway) */
#splash-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    display: flex;
    overflow: hidden;
    background: #000;
}

.gate-panel {
    flex: 1;
    height: 100%;
    background: #000;
    border: 1px solid var(--industrial-grey);
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gate-panel.left { transform-origin: left; border-right: none; }
.gate-panel.right { transform-origin: right; border-left: none; }

.splash-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2001;
    text-align: center;
    pointer-events: auto;
    transition: opacity 0.5s ease;
    width: 100%;
}

.splash-logo {
    width: 250px;
    height: auto;
    max-width: 80vw;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px var(--primary-color));
    animation: pulse-glow 2s infinite alternate ease-in-out;
}

@keyframes pulse-glow {
    from { filter: drop-shadow(0 0 10px var(--primary-color)); transform: scale(1); }
    to { filter: drop-shadow(0 0 40px var(--primary-color)); transform: scale(1.05); }
}

.enter-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enter-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 30px #fff;
}

/* Doorway Animation */
body.gate-open #splash-gate .left { transform: perspective(2000px) rotateY(-90deg); }
body.gate-open #splash-gate .right { transform: perspective(2000px) rotateY(90deg); }
body.gate-open #splash-gate { pointer-events: none; }
body.gate-open .splash-content { opacity: 0; pointer-events: none; }

.strobe-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  z-index: 1000;
  pointer-events: none;
  mix-blend-mode: overlay;
  animation: strobe 12s infinite step-end;
}

@keyframes strobe {
  0%, 98% { opacity: 0; }
  98.1%, 98.3% { opacity: 0.1; }
  98.4%, 98.6% { opacity: 0.05; }
}

/* Base Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-padding {
  padding: 100px 0;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease-main);
}

/* Background Texture */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 9999;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(5,5,5,1) 0%, rgba(5,5,5,0) 100%);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: grayscale(100%) contrast(120%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(255, 0, 60, 0.1) 0%, rgba(5, 5, 5, 1) 70%);
}

.badge {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.hero h1 {
  font-size: clamp(4rem, 15vw, 10rem);
  line-height: 0.85;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 40px;
}

/* Sections */
.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3.5rem;
  line-height: 1;
}

.section-title span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--primary-color);
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

/* Music Section */
.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.player-card {
  background: var(--accent-grey);
  border: 1px solid var(--industrial-grey);
  padding: 30px;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.player-card:hover {
  border-color: var(--primary-color);
}

.release-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.release-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--industrial-grey);
}

/* Gallery - Masonry */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 200px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-main);
  filter: grayscale(100%);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.gallery-item:nth-child(2n) { grid-row: span 2; }
.gallery-item:nth-child(3n) { grid-row: span 1.5; }

/* Booking Form */
.booking-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.form-group {
  margin-bottom: 30px;
}

label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

input, textarea, select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--industrial-grey);
  color: #fff;
  padding: 15px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.btn {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 20px 40px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  width: 100%;
}

.btn:hover {
  background: var(--secondary-color);
}

/* Animations */
@keyframes flicker {
  0% { opacity: 1; }
  10% { opacity: 0.8; }
  20% { opacity: 1; }
  30% { opacity: 0.9; }
  100% { opacity: 1; }
}

.glitch-text {
  animation: flicker 4s infinite;
  text-shadow: 0 0 10px var(--primary-color);
  transition: all 0.2s ease;
}

.glitch-text:hover {
  animation: flicker 0.1s infinite;
  text-shadow: 2px 0 red, -2px 0 blue;
  color: #fff;
}

.concert-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--industrial-grey);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 4px;
    transition: all 0.4s var(--ease-main);
    position: relative;
    overflow: hidden;
}

.concert-card:hover {
    border-color: var(--primary-color);
    background: rgba(255, 0, 60, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 60, 0.2);
}

.concert-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.5s;
}

.concert-card:hover::after {
    left: 100%;
}

.live-badge {
    color: var(--primary-color);
    animation: blink-red 1s infinite alternate;
}

@keyframes blink-red {
    from { opacity: 1; }
    to { opacity: 0.3; }
}

.attribution {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  opacity: 0.4;
  text-align: center;
  width: 100%;
  border-top: 1px solid var(--industrial-grey);
  padding-top: 20px;
}

.attribution a {
  color: var(--primary-color);
  font-weight: 700;
}
.flicker-highlight {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
    animation: intense-flicker 0.2s infinite;
}

@keyframes intense-flicker {
    0%, 100% { opacity: 1; filter: contrast(1); }
    50% { opacity: 0.8; filter: contrast(1.5) brightness(1.2); }
}

@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .music-grid, .booking-split { grid-template-columns: 1fr; }
  .hero h1 { font-size: 5rem; }
  .section-padding { padding: 60px 0; }
  .booking-split { gap: 40px; }
  .splash-logo { width: 150px; }
}
