:root {
    --bg: #030303;
    --text: #f4f4f5;
    --text-muted: #8a8a93;
    --house: #ff4500;
    --techno: #e60000;
    --house-tint: rgba(255, 69, 0, 0.25);
    --techno-tint: rgba(230, 0, 0, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; overflow-x: hidden; line-height: 1.6; }
h1, h2, h3 { font-family: 'Syne', sans-serif; text-transform: uppercase; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container { width: 90%; max-width: 1400px; margin: 0 auto; padding: 100px 0; }
.text-center { text-align: center; }
.eyebrow { display: block; font-family: 'Syncopate', sans-serif; font-size: 0.75rem; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 20px; text-transform: uppercase; }

a:focus-visible, .card:focus-visible, .split:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
    border-radius: 2px;
}


.navbar { position: fixed; top: 0; width: 100%; padding: 25px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 100; mix-blend-mode: difference; }
.logo { font-family: 'Syncopate', sans-serif; font-weight: 700; font-size: 1.2rem; letter-spacing: 2px; }
.contact-btn, .back-btn, .switch-btn { border: 1px solid #fff; padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; transition: 0.3s; }
.contact-btn:hover, .back-btn:hover, .switch-btn:hover { background: #fff; color: #000; }

.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 0.85rem; letter-spacing: 0.5px; opacity: 0.8; transition: 0.3s; }
.nav-link:hover { opacity: 1; }


.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; filter: grayscale(30%); transform: scale(1.05); }
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.05);
    object-fit: cover;
    filter: grayscale(30%);
}
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(3,3,3,0.3) 0%, rgba(3,3,3,1) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; }
.glitch { font-size: clamp(3rem, 8vw, 8rem); font-weight: 800; line-height: 1; margin: 0; letter-spacing: -2px; }
.outline { color: transparent; -webkit-text-stroke: 2px #fff; }

.scroll-down { position: absolute; bottom: -15vh; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 15px; }
.scroll-down span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }
.line { width: 1px; height: 60px; background: linear-gradient(to bottom, #8a8a93 50%, transparent 50%); background-size: 100% 200%; animation: scroll 2s infinite linear; }
@keyframes scroll { 100% { background-position: 0 -100%; } }


.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-zone h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 30px; line-height: 1.1; }
.lead { font-size: 1.25rem; font-weight: 500; color: #fff; margin-bottom: 20px; }
.text-zone p { color: var(--text-muted); font-size: 1.05rem; }
.img-zone img { width: 100%; border-radius: 8px; filter: grayscale(20%); }


.massive-text { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 60px; -webkit-text-stroke: 1px #333; color: transparent; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card { position: relative; height: 400px; border-radius: 12px; overflow: hidden; border: 1px solid #1a1a1a; cursor: crosshair; }
.card-bg { position: absolute; top:0; left:0; width:100%; height:100%; background-size: cover; background-position: center; filter: grayscale(80%) brightness(0.4); transition: 0.5s; }
.card:hover .card-bg, .card:focus-visible .card-bg { filter: grayscale(0%) brightness(0.7); transform: scale(1.05); }
.card-content { position: absolute; bottom: 0; padding: 30px; z-index: 2; }
.card-content h3 { font-size: 1.2rem; margin-bottom: 10px; letter-spacing: 1px; }
.card-content p { font-size: 0.9rem; color: #ccc; }


.split-wrapper { display: flex; height: 70vh; border-radius: 12px; overflow: hidden; margin-top: 40px; }
.split { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1); cursor: pointer; }
.split:hover, .split:focus-visible { flex: 1.4; }
.panel-bg { position: absolute; top:0; left:0; width:100%; height:100%; background-size: cover; background-position: center; z-index: 1; transition: 0.5s; }
.house-panel .panel-bg { filter: brightness(0.4) sepia(0.3) hue-rotate(340deg); }
.techno-panel .panel-bg { filter: brightness(0.4) grayscale(0.8); }
.split:hover .panel-bg, .split:focus-visible .panel-bg { transform: scale(1.05); }
.house-panel:hover .panel-bg, .house-panel:focus-visible .panel-bg { filter: brightness(0.6) sepia(0.3) hue-rotate(340deg); }
.techno-panel:hover .panel-bg, .techno-panel:focus-visible .panel-bg { filter: brightness(0.6) grayscale(0.8); }

.panel-content { position: relative; z-index: 2; padding: 20px; }
.panel-content h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 10px; }
.panel-content p { color: #ddd; margin-bottom: 20px; }
.action-btn { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; border-bottom: 1px solid transparent; transition: 0.3s; }
.house-panel:hover .action-btn, .house-panel:focus-visible .action-btn { border-color: var(--house); color: var(--house); }
.techno-panel:hover .action-btn, .techno-panel:focus-visible .action-btn { border-color: var(--techno); color: var(--techno); }


footer { border-top: 1px solid #111; padding: 60px 0; }
.footer-content { padding: 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.brand h2 { font-size: 1.5rem; }
.brand p { color: var(--text-muted); font-size: 0.85rem; }
.socials a { display: block; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 5px; transition: 0.3s; }
.socials a:hover { color: #fff; }


.universe-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.overlay-color { position: absolute; inset: 0; z-index: 1; }
.house-theme .overlay-color { background: linear-gradient(180deg, var(--house-tint) 0%, rgba(3,3,3,0.55) 45%, rgba(3,3,3,0.98) 100%); }
.techno-theme .overlay-color { background: linear-gradient(180deg, var(--techno-tint) 0%, rgba(3,3,3,0.55) 45%, rgba(3,3,3,0.98) 100%); }

.universe-hero .content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }
.universe-tag { display: block; font-family: 'Syncopate', sans-serif; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.universe-hero h1 { font-size: clamp(3.5rem, 10vw, 7rem); font-weight: 800; letter-spacing: -2px; margin-bottom: 15px; }
.universe-hero p { font-size: 1.1rem; color: #ddd; margin-bottom: 35px; }

.genre-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }
.genre-pills span { border: 1px solid rgba(255,255,255,0.25); padding: 7px 18px; border-radius: 50px; font-size: 0.8rem; color: #ccc; }
.house-theme .genre-pills span { border-color: rgba(255,69,0,0.45); }
.techno-theme .genre-pills span { border-color: rgba(230,0,0,0.45); }

.btn { display: inline-block; padding: 15px 34px; border-radius: 50px; font-family: 'Syne', sans-serif; font-weight: 700; letter-spacing: 0.5px; transition: 0.3s; font-size: 0.95rem; }
.btn-house { background: var(--house); color: #fff; }
.btn-house:hover, .btn-house:focus-visible { background: #fff; color: var(--house); }
.btn-techno { background: var(--techno); color: #fff; }
.btn-techno:hover, .btn-techno:focus-visible { background: #fff; color: var(--techno); }

.universe-about, .universe-events { max-width: 700px; }
.universe-about .lead { font-size: 1.2rem; }
.universe-about p:not(.lead) { color: var(--text-muted); margin-bottom: 16px; }

.universe-events { border-top: 1px solid #151515; }
.empty-state { border: 1px dashed #222; border-radius: 12px; padding: 50px 30px; text-align: center; }
.empty-state p { color: var(--text-muted); margin-bottom: 14px; }
.empty-state a { color: var(--text); border-bottom: 1px solid currentColor; font-size: 0.9rem; padding-bottom: 2px; transition: 0.3s; }
.house-theme .empty-state a:hover { color: var(--house); border-color: var(--house); }
.techno-theme .empty-state a:hover { color: var(--techno); border-color: var(--techno); }

.reveal { opacity: 0; transform: translateY(50px); transition: all 1s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .line { animation: none; }
    .reveal { transition: none; opacity: 1; transform: none; }
    .split, .card-bg, .panel-bg, .contact-btn, .back-btn, .switch-btn, .btn { transition: none; }
}

@media (max-width: 900px) {
    .dual-grid, .grid-3 { grid-template-columns: 1fr; gap: 40px; }
    .split-wrapper { flex-direction: column; height: 80vh; }
    .footer-content { flex-direction: column; text-align: center; gap: 30px; }
}

@media (max-width: 700px) {
    .nav-link { display: none; }
}
