
        :root {
            --bg-color: #000000;
            --text-color: #FFFFFF;
            --accent-red: #DC143C;
            --grey-card: #666363;
        }

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

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            cursor: crosshair;
        }

        h1, h2, h3, .space-font {
            font-family: 'Space Grotesk', sans-serif;
            text-transform: uppercase;
            line-height: 0.9;
            letter-spacing: -1px;
        }

        a {
            color: inherit;
            text-decoration: none;
            cursor: pointer;
        }

        /* --- UI Elements --- */
        .btn-brutal {
            display: inline-block;
            background-color: var(--accent-red);
            color: var(--text-color);
            border: 2px solid var(--accent-red);
            padding: 20px 40px;
            font-size: 24px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0s !important;
            cursor: pointer;
            text-align: center;
        }

        .btn-brutal:hover {
            background-color: var(--text-color);
            color: var(--accent-red);
            border-color: var(--text-color);
        }

        /* --- Header --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            border-bottom: 2px solid var(--text-color);
            position: sticky;
            top: 0;
            background-color: var(--bg-color);
            z-index: 100;
        }

        header h2 {
            font-size: 48px;
            color: var(--accent-red);
        }

        nav a {
            margin-left: 30px;
            font-size: 18px;
            font-weight: 600;
            padding: 5px 10px;
            transition: 0s;
        }

        nav a:hover {
            background-color: var(--text-color);
            color: var(--bg-color);
        }

        /* --- Hero --- */
        .hero {
            padding: 80px 40px;
            border-bottom: 2px solid var(--text-color);
            position: relative;
        }

        .hero h1 {
            font-size: clamp(60px, 10vw, 150px);
            margin-bottom: 40px;
            max-width: 1400px;
        }

        /* --- Ticker --- */
        .ticker-wrapper {
            overflow: hidden;
            white-space: nowrap;
            border-bottom: 2px solid var(--text-color);
            padding: 15px 0;
            background: var(--bg-color);
        }

        .ticker-text {
            display: inline-block;
            padding-left: 100%;
            animation: ticker 20s linear infinite;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--accent-red);
            text-transform: uppercase;
        }

        @keyframes ticker {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-100%, 0, 0); }
        }

        /* --- Services / Value Prop --- */
        .grid-3 {
            display: flex;
            border-bottom: 2px solid var(--text-color);
        }

        .grid-col {
            flex: 1;
            padding: 40px;
            border-right: 2px solid var(--text-color);
        }

        .grid-col:last-child {
            border-right: none;
        }

        .grid-col h3 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--accent-red);
        }

        .grid-col p {
            font-size: 18px;
            line-height: 1.5;
        }

        /* --- Value Proposition --- */
        .value-prop {
            background-color: var(--grey-card);
            padding: 80px 40px;
            text-align: center;
            border-bottom: 2px solid var(--text-color);
        }

        .value-prop h2 {
            font-size: clamp(40px, 6vw, 80px);
            max-width: 1200px;
            margin: 0 auto;
            color: var(--text-color);
        }

        /* --- Events List --- */
        .events-section {
            padding: 0;
        }
        
        .event-row {
            display: flex;
            border-bottom: 2px solid var(--text-color);
        }

        .event-cell {
            padding: 30px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 2px solid var(--text-color);
        }

        .event-cell.date { width: 20%; color: var(--accent-red); font-size: 32px; font-weight: bold; }
        .event-cell.title { width: 40%; }
        .event-cell.title h3 { font-size: 48px; }
        .event-cell.location { width: 20%; font-size: 18px; }
        .event-cell.cta { width: 20%; border-right: none; padding: 0; }
        .event-cell.cta a { 
            width: 100%; 
            height: 100%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            border: none;
        }

        /* --- Footer --- */
        footer {
            padding: 80px 40px;
        }

        footer h2 {
            font-size: 120px;
            margin-bottom: 40px;
        }

        .footer-links {
            display: flex;
            gap: 40px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 24px;
            text-transform: uppercase;
        }

        .lofi-img {
            position: relative;
            filter: contrast(130%) grayscale(20%);
        }
        .lofi-img::before {
            content: "";
            position: absolute;
            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.2;
            mix-blend-mode: overlay;
            pointer-events: none;
        }

        @media (max-width: 900px) {
            .grid-3 { flex-direction: column; }
            .grid-col { border-right: none; border-bottom: 2px solid var(--text-color); }
            .grid-col:last-child { border-bottom: none; }
            .event-row { flex-direction: column; }
            .event-cell { width: 100% !important; border-right: none; border-bottom: 2px solid var(--text-color); }
            .event-cell.cta { border-bottom: none; }
            .event-cell.cta a { padding: 30px; }
            header { flex-direction: column; gap: 20px; }
            nav a { margin: 0 10px; }
        }
    