@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Mono:wght@400;700&family=Syne:wght@400;600;700;800&display=swap');

:root {
  --bg: #050507;
  --card: rgba(12, 12, 15, 0.85);
  --elevated: rgba(22, 22, 28, 0.9);
  --accent: #ff6b35;
  --electric: #00f0ff;
  --purple: #a855f7;
  --text: #fafafa;
  --muted: #71717a;
  --border: rgba(255,255,255,0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Syne', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* BACKGROUND LAYERS */
.atmosphere {
  position: fixed; inset: 0; z-index: -10;
  background: 
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(255,107,53,0.12), transparent 50%),
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(0,240,255,0.08), transparent 40%),
    radial-gradient(ellipse 60% 50% at 100% 20%, rgba(168,85,247,0.1), transparent 40%);
}

.orb {
  position: fixed; border-radius: 50%; filter: blur(100px); opacity: 0.35; z-index: -9;
  animation: float 12s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: var(--accent); top: 5%; left: 5%; }
.orb-2 { width: 400px; height: 400px; background: var(--electric); top: 50%; right: 5%; animation-delay: -4s; }
.orb-3 { width: 450px; height: 450px; background: var(--purple); bottom: 10%; left: 30%; animation-delay: -8s; }

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-30px) scale(1.1); }
  66% { transform: translate(-20px,20px) scale(0.95); }
}

.grid-floor {
  position: fixed; inset: 0; z-index: -8;
  background: 
    linear-gradient(rgba(255,107,53,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(400px) rotateX(50deg);
  transform-origin: center 70%;
  mask-image: linear-gradient(to top, black, transparent 70%);
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  from { background-position: 0 0; }
  to { background-position: 0 60px; }
}

.scanlines {
  position: fixed; inset: 0; z-index: 99; pointer-events: none;
  background: repeating-linear-gradient(transparent, transparent 2px, rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px);
}

.grain {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#fx-canvas { position: fixed; inset: 0; z-index: -7; }
#laser-canvas { position: fixed; inset: 0; z-index: -6; pointer-events: none; }

/* SPINNING RINGS GRAPHIC */
.hero-rings {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px; z-index: 0; pointer-events: none;
}
@media (max-width: 1100px) { .hero-rings { opacity: 0.3; right: -200px; } }
@media (max-width: 800px) { .hero-rings { display: none; } }

.ring {
  position: absolute; inset: 0; border-radius: 50%; border: 2px solid transparent;
}
.ring-1 {
  inset: 40px; border-color: var(--accent); opacity: 0.7;
  animation: spin 12s linear infinite;
  box-shadow: 0 0 30px rgba(255,107,53,0.4), inset 0 0 30px rgba(255,107,53,0.3);
}
.ring-2 {
  inset: 100px; border-color: var(--electric); opacity: 0.6;
  animation: spin 18s linear infinite reverse;
  box-shadow: 0 0 25px rgba(0,240,255,0.35), inset 0 0 25px rgba(0,240,255,0.25);
}
.ring-3 {
  inset: 160px; border-color: var(--purple); opacity: 0.5;
  animation: spin 24s linear infinite;
  box-shadow: 0 0 20px rgba(168,85,247,0.35), inset 0 0 20px rgba(168,85,247,0.25);
}
.ring-4 {
  inset: 220px; border: 1px dashed rgba(255,255,255,0.15);
  animation: spin 30s linear infinite reverse;
}
.ring-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 24px; height: 24px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 40px var(--accent), 0 0 80px var(--accent), 0 0 120px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.3); } }

/* EQ BARS */
.eq-bars { display: flex; align-items: flex-end; gap: 5px; height: 60px; }
.eq-bar {
  width: 7px; border-radius: 4px;
  background: linear-gradient(to top, var(--accent), var(--electric));
  animation: eq 0.6s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255,107,53,0.5);
}
.eq-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.eq-bar:nth-child(3) { height: 50%; animation-delay: 0.2s; }
.eq-bar:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.eq-bar:nth-child(5) { height: 60%; animation-delay: 0.4s; }
.eq-bar:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.eq-bar:nth-child(7) { height: 55%; animation-delay: 0.6s; }
.eq-bar:nth-child(8) { height: 75%; animation-delay: 0.7s; }
@keyframes eq { 0%,100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }

/* WAVEFORM */
.waveform { display: flex; align-items: center; gap: 3px; }
.waveform span {
  width: 4px; border-radius: 2px;
  background: linear-gradient(var(--electric), var(--purple));
  animation: wave 1s ease-in-out infinite;
}
@keyframes wave { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(0.3); } }

/* VINYL */
.vinyl-wrap { position: relative; width: 180px; height: 180px; }
.vinyl {
  width: 100%; height: 100%; border-radius: 50%;
  background: 
    radial-gradient(circle, #111 0% 10%, transparent 10%),
    radial-gradient(circle, var(--accent) 10%, transparent 10.5%),
    repeating-radial-gradient(circle, #151515, #151515 1px, #1a1a1a 1px, #1a1a1a 3px);
  box-shadow: 0 0 0 8px #080808, 0 0 40px rgba(0,0,0,0.5), 0 0 60px rgba(255,107,53,0.3);
  animation: vinyl-spin 2s linear infinite;
}
.vinyl::after {
  content: 'DJ MARIO'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Bebas Neue'; font-size: 11px; letter-spacing: 2px;
  color: var(--accent); text-shadow: 0 0 10px var(--accent);
}
@keyframes vinyl-spin { to { transform: rotate(360deg); } }
.vinyl.paused { animation-play-state: paused; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(16px); background: rgba(5,5,7,0.85);
  border-bottom: 1px solid var(--border);
}
.nav::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--electric), var(--purple), transparent);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand-mark {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  display: grid; place-items: center;
  font-family: 'Bebas Neue'; font-size: 20px; color: white;
  box-shadow: 0 0 30px rgba(255,107,53,0.4);
  position: relative; overflow: hidden;
}
.brand-mark::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  animation: shimmer 2s infinite;
}
@keyframes shimmer { 0%,100% { transform: translateX(-100%); } 50% { transform: translateX(100%); } }
.brand-name {
  font-family: 'Bebas Neue'; font-size: 24px; letter-spacing: 3px;
  background: linear-gradient(90deg, var(--text), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.brand-tagline { font-family: 'Space Mono'; font-size: 9px; letter-spacing: 2px; color: var(--muted); }
.nav-links { display: flex; gap: 6px; }
.nav-links a {
  font-family: 'Space Mono'; font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: #a1a1aa; text-decoration: none; padding: 10px 18px; border-radius: 8px;
  transition: all 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--electric));
  transition: all 0.3s; transform: translateX(-50%);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 50%; }
.nav-links a.active { color: var(--accent); }

/* LAYOUT */
.main { min-height: 100vh; padding-top: 72px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

/* HERO */
.hero {
  min-height: calc(100vh - 72px);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px;
  align-items: center; padding: 60px 0; position: relative;
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } }

.hero-content { position: relative; z-index: 1; }
.hero-label {
  font-family: 'Space Mono'; font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  animation: fadeUp 0.6s ease;
}
.hero-label::before { content: ''; width: 40px; height: 2px; background: var(--accent); }

.hero-title {
  font-family: 'Bebas Neue'; font-size: clamp(70px, 12vw, 140px);
  line-height: 0.9; letter-spacing: -2px; margin: 0 0 24px;
  animation: fadeUp 0.6s ease 0.1s backwards;
}
.hero-title .grad {
  background: linear-gradient(90deg, var(--accent), var(--electric), var(--purple), var(--accent));
  background-size: 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: gradShift 4s ease infinite;
}
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-desc {
  font-size: 17px; color: #a1a1aa; max-width: 480px; margin-bottom: 32px; line-height: 1.8;
  animation: fadeUp 0.6s ease 0.2s backwards;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; animation: fadeUp 0.6s ease 0.3s backwards; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 10px;
  font-family: 'Space Mono'; font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--border);
  background: var(--elevated); color: var(--text); cursor: pointer;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.btn:hover {
  border-color: rgba(255,107,53,0.3); transform: translateY(-3px);
  box-shadow: 0 10px 40px -10px rgba(255,107,53,0.4);
}
.btn.primary {
  background: linear-gradient(135deg, var(--accent), #e85d2a);
  border: none; color: white; font-weight: 700;
  box-shadow: 0 6px 25px rgba(255,107,53,0.4);
}
.btn.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255,107,53,0.5);
}
.btn.sm { padding: 10px 18px; font-size: 10px; }

/* SIDEBAR CARDS */
.hero-sidebar { display: flex; flex-direction: column; gap: 20px; animation: fadeUp 0.6s ease 0.4s backwards; }

.stat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 28px; position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--electric), var(--purple));
}
.stat-card::after {
  content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(255,107,53,0.1), transparent 60%);
  animation: glow 4s ease-in-out infinite;
}
@keyframes glow { 0%,100% { opacity: 0.3; } 50% { opacity: 0.6; } }

.stat-label { font-family: 'Space Mono'; font-size: 10px; letter-spacing: 2px; color: var(--muted); margin-bottom: 10px; position: relative; z-index: 1; }
.stat-value {
  font-family: 'Bebas Neue'; font-size: 56px; letter-spacing: 2px; line-height: 1;
  text-shadow: 0 0 30px rgba(255,107,53,0.5); position: relative; z-index: 1;
}
.stat-value .unit { font-size: 28px; color: var(--accent); margin-left: 4px; }

.energy-bar { margin-top: 20px; position: relative; z-index: 1; }
.energy-track { height: 10px; background: rgba(255,255,255,0.05); border-radius: 5px; overflow: hidden; }
.energy-fill {
  height: 100%; width: 78%; border-radius: 5px;
  background: linear-gradient(90deg, var(--accent), var(--electric), var(--purple));
  position: relative;
}
.energy-fill::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: sweep 1.5s ease-in-out infinite;
}
@keyframes sweep { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; position: relative; z-index: 1; }
.tag {
  font-family: 'Space Mono'; font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 14px; border-radius: 6px;
  background: rgba(255,107,53,0.1); border: 1px solid rgba(255,107,53,0.2); color: var(--accent);
}

.info-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px;
}
.info-card h3 { font-family: 'Space Mono'; font-size: 10px; letter-spacing: 2px; color: var(--electric); margin: 0 0 12px; }
.info-card p { margin: 0; color: #a1a1aa; font-size: 15px; line-height: 1.8; }

/* CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 32px; transition: all 0.4s; position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,107,53,0.08), transparent 50%);
  opacity: 0; transition: opacity 0.4s;
}
.card:hover {
  border-color: rgba(255,107,53,0.3); transform: translateY(-6px);
  box-shadow: 0 20px 50px -20px rgba(255,107,53,0.3);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(168,85,247,0.15));
  border: 1px solid rgba(255,107,53,0.2);
  display: grid; place-items: center; margin-bottom: 20px; font-size: 24px;
  transition: all 0.3s; position: relative; z-index: 1;
}
.card:hover .card-icon { transform: scale(1.1) rotate(-5deg); box-shadow: 0 0 25px rgba(255,107,53,0.4); }
.card h4 { font-family: 'Syne'; font-weight: 700; font-size: 18px; margin: 0 0 10px; position: relative; z-index: 1; }
.card p { margin: 0; color: #a1a1aa; font-size: 14px; line-height: 1.8; position: relative; z-index: 1; }

/* SECTION HEADERS */
.section-header { margin-bottom: 40px; }
.section-label {
  font-family: 'Space Mono'; font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px; display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 30px; height: 2px; background: var(--accent); }
.section-title {
  font-family: 'Bebas Neue'; font-size: clamp(40px, 6vw, 64px); letter-spacing: 2px; margin: 0 0 14px; line-height: 1;
  background: linear-gradient(90deg, var(--text), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-desc { color: #a1a1aa; font-size: 16px; max-width: 600px; line-height: 1.8; }

/* PANEL */
.panel {
  background: var(--card); border: 1px solid var(--border); border-radius: 24px;
  padding: 40px; position: relative; overflow: hidden;
}
.panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--electric), var(--purple), transparent);
}

/* TABLE */
.data-table { width: 100%; border-collapse: separate; border-spacing: 0 10px; }
.data-table th {
  font-family: 'Space Mono'; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); text-align: left; padding: 12px 20px; font-weight: 400;
}
.data-table td {
  padding: 18px 20px; background: var(--elevated);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.data-table td:first-child { border-left: 1px solid var(--border); border-radius: 12px 0 0 12px; }
.data-table td:last-child { border-right: 1px solid var(--border); border-radius: 0 12px 12px 0; }
.data-table tr:hover td { background: rgba(255,107,53,0.05); border-color: rgba(255,107,53,0.2); }

/* FORM */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: 'Space Mono'; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.form-input {
  width: 100%; padding: 14px 18px; background: var(--elevated);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-family: 'Syne'; font-size: 15px; transition: all 0.3s;
}
.form-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,107,53,0.15); }
.form-input::placeholder { color: var(--muted); }
textarea.form-input { min-height: 140px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* CONTROLS */
.controls { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); }
.control-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 8px;
  font-family: 'Space Mono'; font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid var(--border); background: var(--elevated); color: #a1a1aa;
  cursor: pointer; transition: all 0.3s;
}
.control-btn:hover { color: var(--text); border-color: rgba(255,107,53,0.3); }
.control-btn.active {
  background: rgba(255,107,53,0.1); border-color: var(--accent); color: var(--accent);
  box-shadow: 0 0 15px rgba(255,107,53,0.2);
}
.control-btn .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.control-btn.active .dot { animation: blink 1s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* EMBED */
.embed-box {
  background: var(--elevated); border: 2px dashed var(--border); border-radius: 14px;
  padding: 50px 20px; text-align: center; color: var(--muted);
}
.embed-box:hover { border-color: var(--accent); }

/* FOOTER */
.footer {
  padding: 32px 24px; border-top: 1px solid var(--border); background: rgba(5,5,7,0.9);
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-brand {
  font-family: 'Bebas Neue'; font-size: 22px; letter-spacing: 3px;
  background: linear-gradient(90deg, var(--text), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-info { font-family: 'Space Mono'; font-size: 11px; color: var(--muted); }
.footer-info a { color: var(--accent); text-decoration: none; }

/* STROBE */
.strobe {
  position: fixed; inset: 0; background: white; opacity: 0;
  pointer-events: none; z-index: 60;
}
.strobe.active { animation: strobe 2.5s infinite; }
@keyframes strobe {
  0%,85%,100% { opacity: 0; }
  86% { opacity: 0.15; }
  87% { opacity: 0; }
  91% { opacity: 0.2; }
  92% { opacity: 0; }
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--accent), var(--purple)); border-radius: 4px; }

::selection { background: var(--accent); color: var(--bg); }

/* RESPONSIVE NAV */
@media (max-width: 768px) {
  .nav-inner { flex-direction: column; height: auto; padding: 14px 24px; gap: 12px; }
  .nav-links { width: 100%; justify-content: center; }
  .hero { text-align: center; }
  .hero-label { justify-content: center; }
  .hero-label::before { display: none; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .panel { padding: 28px 20px; }
}
