:root {
    --black: #000000;
    --dark: #0a0a0a;
    --lila: #a855f7;
    --white: #ffffff;
    --grey: #444;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: crosshair; }

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.4;
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1000px; margin: 0 auto; }
a { text-decoration: none; color: inherit; transition: 0.2s; }

/* Header */
.pulse-header {
    padding: 30px 0; background: rgba(0,0,0,0.9); border-bottom: 1px solid var(--grey);
    position: fixed; top: 0; width: 100%; z-index: 1000;
}
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Syne', sans-serif; font-size: 2.5rem; letter-spacing: -2px; }
.dot { color: var(--lila); animation: blink 0.5s infinite; }
@keyframes blink { 50% { opacity: 0; } }

.pulse-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.pulse-nav a { font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }
.pulse-nav a:hover, .pulse-nav a.active { color: var(--lila); }

.btn-tickets { border: 2px solid var(--white); padding: 5px 20px; font-family: 'Syne', sans-serif; }
.btn-tickets:hover { background: var(--white); color: var(--black); }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: 1px solid var(--white); color: var(--white); padding: 5px 10px; }
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--black);
    z-index: 2000; display: flex; flex-direction: column; align-items: center; justify-content: center;
    transform: translateX(-100%); transition: 0.3s;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a { font-family: 'Syne', sans-serif; font-size: 3rem; margin: 15px 0; }

/* Hero */
.hero-strobe {
    height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center;
    background-image: url('https://images.pexels.com/photos/1190298/pexels-photo-1190298.jpeg?auto=compress&cs=tinysrgb&w=1200');
    background-size: cover; background-position: center; position: relative;
}
.hero-overlay { position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,0.6); }
.hero-strobe h1 { font-family: 'Syne', sans-serif; font-size: 6rem; position: relative; z-index: 10; letter-spacing: -5px; }

/* Event List */
.section-padding { padding: 100px 0; }
.top-space { padding-top: 150px; }
.event-list { display: flex; flex-direction: column; border: 1px solid var(--grey); }
.event-item {
    display: flex; align-items: center; padding: 40px; border-bottom: 1px solid var(--grey);
    transition: 0.3s;
}
.event-item:hover { background: #080808; }
.event-item.featured { background: var(--lila); color: var(--black); border-bottom-color: var(--black); }
.date { font-family: 'Syne', sans-serif; font-size: 1.5rem; width: 150px; }
.info { flex: 1; }
.info h3 { font-family: 'Syne', sans-serif; font-size: 2rem; margin-bottom: 5px; }
.btn-rsvp { border: 1px solid var(--white); padding: 10px 30px; font-weight: bold; }
.btn-rsvp.highlight { border-color: var(--black); opacity: 0.5; cursor: not-allowed; }

/* About Brutal */
.about-brutal { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.specs { list-style: none; margin-top: 30px; font-weight: bold; color: var(--lila); }
.img-block img { width: 100%; filter: grayscale(1); }

/* Feedback */
.review-stream { display: flex; flex-direction: column; gap: 30px; }
.review-post { border-left: 5px solid var(--lila); padding: 20px; background: #050505; }
.user { font-weight: bold; color: var(--lila); margin-bottom: 10px; }

/* Form */
.ticket-box { background: #0a0a0a; padding: 60px; border: 1px solid var(--grey); }
.club-form { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.club-form input, .club-form select, .club-form textarea {
    background: transparent; border: 1px solid var(--grey); color: var(--white);
    padding: 15px; font-family: inherit; font-size: 1.1rem;
}
.btn-glow {
    background: var(--white); color: var(--black); border: none; padding: 20px;
    font-family: 'Syne', sans-serif; font-size: 1.5rem; cursor: pointer;
}
.btn-glow:hover { background: var(--lila); box-shadow: 0 0 30px var(--lila); }

/* Footer */
.pulse-footer { padding: 80px 0; text-align: center; border-top: 1px solid var(--grey); }
.copy { font-size: 0.8rem; margin-top: 20px; color: var(--grey); }

@media (max-width: 900px) {
    .pulse-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-strobe h1 { font-size: 3rem; }
    .event-item { flex-direction: column; text-align: center; gap: 20px; }
    .about-brutal { grid-template-columns: 1fr; }
}