:root {
  --black: #060606;
  --white: #f0ece4;
  --purple: #b026ff;
  --purple-dark: #7a00ff;
  --red: #ff1744;
  --mono: 'DM Mono', monospace;
  --display: 'Bebas Neue', sans-serif;
  --condensed: 'Barlow Condensed', sans-serif;
}
 
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
html {
  scroll-behavior: smooth;
}
 
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--mono);
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='3' fill='%23b026ff'/%3E%3Ccircle cx='10' cy='10' r='7' fill='none' stroke='%23b026ff' stroke-width='1' opacity='0.5'/%3E%3C/svg%3E") 10 10, crosshair;
  overflow-x: hidden;
}
 
.grain {
  position: fixed;
  inset: -200%;
  width: 400%;
  height: 400%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
  animation: grain 0.5s steps(2) infinite;
}
 
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  30% { transform: translate(3%, 2%); }
  50% { transform: translate(-1%, 4%); }
  70% { transform: translate(4%, -1%); }
  90% { transform: translate(-3%, 1%); }
}
 
.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 9998;
}
 
.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8vw;
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
 
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("hardcension7.jpg");
  background-size: cover;
  background-position: center top;
  filter: brightness(0.35) contrast(1.2);
  transition: filter 0.5s ease;
}
 
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6,6,6,0.85) 0%,
    rgba(6,6,6,0.4) 50%,
    transparent 100%
  );
}
 
.hero-content {
  position: relative;
  z-index: 2;
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
 
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.hero-tag {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--purple);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  opacity: 0;
  animation: heroReveal 1s 0.2s forwards ease-out;
}
 
.hero-title {
  font-family: var(--display);
  font-size: clamp(100px, 18vw, 280px);
  line-height: 0.85;
  color: var(--white);
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
  text-shadow:
    0 0 40px rgba(176, 38, 255, 0.4),
    0 0 80px rgba(176, 38, 255, 0.15);
  opacity: 0;
  animation: heroReveal 1s 0.4s forwards ease-out, glitch 8s 2s infinite;
}
 
.hero-title::before,
.hero-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  opacity: 0;
}
 
.hero-title::before {
  color: var(--purple);
  animation: glitchTop 8s 2s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
 
.hero-title::after {
  color: var(--red);
  animation: glitchBot 8s 2.05s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}
 
@keyframes glitch {
  0%, 92%, 100% { transform: translate(0); }
  93% { transform: translate(-3px, 1px); }
  94% { transform: translate(3px, -1px); }
  95% { transform: translate(0); }
}
 
@keyframes glitchTop {
  0%, 92%, 100% { opacity: 0; transform: translate(0); }
  93% { opacity: 0.8; transform: translate(-4px, -2px); }
  94% { opacity: 0.8; transform: translate(4px, 2px); }
  95% { opacity: 0; }
}
 
@keyframes glitchBot {
  0%, 92%, 100% { opacity: 0; transform: translate(0); }
  93% { opacity: 0.8; transform: translate(4px, 1px); }
  94% { opacity: 0.8; transform: translate(-4px, -1px); }
  95% { opacity: 0; }
}
 
.hero-sub {
  font-family: var(--condensed);
  font-weight: 300;
  font-size: clamp(14px, 2vw, 22px);
  letter-spacing: 0.4em;
  color: rgba(240, 236, 228, 0.55);
  margin-top: 12px;
  text-transform: uppercase;
  opacity: 0;
  animation: heroReveal 1s 0.6s forwards ease-out;
}
 
.hero-line {
  width: 60px;
  height: 1px;
  background: var(--purple);
  margin: 24px 0;
  opacity: 0;
  animation: heroReveal 1s 0.8s forwards ease-out;
}
 
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(240, 236, 228, 0.4);
  opacity: 0;
  animation: heroReveal 1s 1s forwards ease-out;
}
 
.hero-contact-btn {
  display: inline-block;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--black);
  background: var(--purple);
  text-decoration: none;
  padding: 14px 32px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: heroReveal 1s 0.9s forwards ease-out;
  transition: box-shadow 0.3s;
}
 
.hero-contact-btn:hover {
  box-shadow: 0 0 30px rgba(176, 38, 255, 0.7), 0 0 60px rgba(176, 38, 255, 0.3);
}
 
.hero.small .hero-contact-btn {
  display: none;
}
 
.hero-meta .sep {
  color: var(--purple);
}
 
.scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 8vw;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(240,236,228,0.3);
  z-index: 2;
  animation: blink 2s 2s infinite;
}
 
@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}
 
.hero.small {
  height: 72px;
}
 
.hero.small .hero-bg {
  filter: brightness(0.15) contrast(1.2);
}
 
.hero.small .hero-sub,
.hero.small .hero-line,
.hero.small .hero-meta,
.hero.small .scroll-hint,
.hero.small .hero-tag {
  opacity: 0;
  pointer-events: none;
}
 
.hero.small .hero-title {
  font-size: clamp(36px, 5vw, 56px);
  animation: none;
}
 
body::before {
  content: '';
  display: block;
  height: 100vh;
}
 
section {
  position: relative;
  z-index: 0;
  padding: 120px 8vw;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
 
section.visible {
  opacity: 1;
  transform: translateY(0);
}
 
.section-title {
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 48px;
}
 
.about-number, .mix-number, .events-number, .socials-number, .booking-number {
  position: absolute;
  top: 40px;
  right: 8vw;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: rgba(176, 38, 255, 0.4);
  letter-spacing: 0.2em;
}
 
.marquee-wrap {
  overflow: hidden;
  background: var(--purple);
  padding: 14px 0;
  position: relative;
  z-index: 0;
}
 
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  will-change: transform;
}
 
.marquee-track span {
  font-family: var(--condensed);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--black);
  text-transform: uppercase;
  flex-shrink: 0;
}
 
.marquee-track .dot {
  font-size: 0.5rem;
  color: rgba(6,6,6,0.5);
  flex-shrink: 0;
}
 
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
 
.about {
  border-top: 1px solid rgba(240,236,228,0.08);
}
 
.about-inner {
  max-width: 700px;
}
 
.about-text {
  font-family: var(--mono);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.9;
  color: rgba(240, 236, 228, 0.6);
  font-weight: 300;
}
 
.mix {
  border-top: 1px solid rgba(240,236,228,0.08);
  background: #0a0a0a;
}
 
.mix-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: center;
}
 
.mix-desc {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: rgba(240,236,228,0.35);
  margin-top: 16px;
  font-style: italic;
}
 
.mix-player {
  border: 1px solid rgba(176, 38, 255, 0.3);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(176, 38, 255, 0.1),
    inset 0 0 40px rgba(0,0,0,0.5);
}
 
.events {
  border-top: 1px solid rgba(240,236,228,0.08);
}
 
.events-list {
  display: flex;
  flex-direction: column;
}
 
.event-row {
  display: grid;
  grid-template-columns: 100px 1px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(240,236,228,0.07);
  cursor: pointer;
  transition: padding-left 0.3s ease;
}
 
.event-row:hover {
  padding-left: 12px;
}
 
.event-row:hover .event-arrow {
  color: var(--purple);
  transform: translate(4px, -4px);
}
 
.event-date {
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  color: var(--purple);
}
 
.event-date span {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: rgba(240,236,228,0.35);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}
 
.event-divider {
  background: rgba(176,38,255,0.3);
  height: 100%;
  min-height: 50px;
}
 
.event-venue {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 0.05em;
}
 
.event-city {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: rgba(240,236,228,0.4);
  margin-top: 6px;
  letter-spacing: 0.1em;
}
 
.event-arrow {
  font-size: 24px;
  color: rgba(240,236,228,0.2);
  transition: color 0.3s, transform 0.3s;
}
 
.socials {
  border-top: 0.5px solid rgba(240,236,228,0.08);
  background: #080808;
}
 
.socials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 900px;
}
 
.social-link {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 36px 32px;
  background: rgba(240,236,228,0.03);
  border: 1px solid rgba(240,236,228,0.06);
  text-decoration: none;
  color: var(--white);
  transition: background 0.3s, border-color 0.3s;
}
 
.social-link:hover {
  background: rgba(176,38,255,0.08);
  border-color: rgba(176,38,255,0.4);
}
 
.social-link:hover .social-icon {
  color: var(--purple);
}
 
.social-icon {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: rgba(240,236,228,0.3);
  transition: color 0.3s;
}
 
.social-name {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 28px);
  letter-spacing: 0.08em;
}
 
.social-arrow {
  font-size: 20px;
  color: rgba(240,236,228,0.2);
  transition: color 0.3s, transform 0.3s;
}
 
.social-link:hover .social-arrow {
  color: var(--purple);
  transform: translate(3px, -3px);
}
 
.booking {
  border-top: 1px solid rgba(240,236,228,0.08);
  overflow: hidden;
  padding-bottom: 0;
}
 
.booking-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
 
.booking-text {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: rgba(240,236,228,0.4);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
 
.booking-mail {
  display: inline-flex;
  align-items: center;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 28px);
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(176,38,255,0.5);
  padding: 18px 36px;
  position: relative;
  transition: color 0.3s;
  overflow: hidden;
}
 
.booking-mail::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--purple);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
 
.booking-mail:hover {
  color: var(--black);
}
 
.booking-mail:hover::before {
  transform: translateX(0);
}
 
.booking-mail span {
  position: relative;
  z-index: 1;
}
 
.booking-big {
  font-family: var(--display);
  font-size: clamp(80px, 18vw, 240px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240,236,228,0.05);
  letter-spacing: 0.02em;
  margin-top: 40px;
  user-select: none;
  pointer-events: none;
}
 
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw;
  border-top: 1px solid rgba(240,236,228,0.06);
  font-family: var(--mono);
  font-size: 0.65rem;
  color: rgba(240,236,228,0.2);
  letter-spacing: 0.15em;
}
 
@media (max-width: 768px) {
  .mix-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
 
  .socials-grid {
    grid-template-columns: 1fr;
  }
 
  .event-row {
    grid-template-columns: 80px 1px 1fr auto;
    gap: 20px;
  }
 
  .hero-title {
    font-size: clamp(72px, 22vw, 140px);
  }
}
 
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(100px, 35vw, 160px);
  }
 
  .hero-sub {
    font-size: 3.5vw;
    letter-spacing: 0.25em;
  }
 
  .hero-tag {
    font-size: 0.7rem;
  }
 
  .hero-contact-btn {
    font-size: 0.85rem;
    padding: 12px 26px;
  }
 
  .hero-meta {
    font-size: 0.65rem;
    gap: 8px;
  }
 
  .section-title {
    font-size: clamp(40px, 12vw, 80px);
  }
 
  .about-text {
    font-size: 14px;
  }
 
  .mix-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
 
  .event-row {
    grid-template-columns: 70px 1px 1fr auto;
    gap: 16px;
    padding: 24px 0;
  }
 
  .event-venue {
    font-size: 18px;
  }
 
  .event-date {
    font-size: 28px;
  }
 
  .socials-grid {
    grid-template-columns: 1fr;
  }
 
  .social-link {
    padding: 24px 20px;
  }
 
  .booking-big {
    font-size: clamp(50px, 18vw, 120px);
  }
 
  .booking-mail {
    font-size: 16px;
    padding: 14px 24px;
    word-break: break-all;
  }
 
  .marquee-track span {
    font-size: 0.7rem;
  }
 
  .footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}