/* style.css */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace; /* Terminal/Hacker vibe */
    background-color: #050505; /* Pitch black */
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Aggressive Navigation */
header {
    margin-top: 50px;
    margin-bottom: 50px;
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    font-family: 'Arial Black', Impact, sans-serif;
    background-color: #111;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    border: 3px solid #bf94ff; /* Neon Twitch Purple */
    box-shadow: 8px 8px 0px #bf94ff; /* Solid offset shadow */
    transition: all 0.1s ease-in-out;
}

/* The click/hover "push" effect */
nav a:hover {
    transform: translate(8px, 8px);
    box-shadow: 0px 0px 0px #bf94ff;
    background-color: #bf94ff;
    color: #000;
}

/* The Twitch Button overrides for maximum attention */
nav a.twitch-btn {
    border-color: #ccff00; /* Electric Lime Green */
    box-shadow: 8px 8px 0px #ccff00;
    color: #ccff00;
}

nav a.twitch-btn:hover {
    background-color: #ccff00;
    color: #000;
    transform: translate(8px, 8px);
    box-shadow: 0px 0px 0px #ccff00;
}

/* The Main Content Block */
main {
    background-color: #111;
    border: 4px solid #fff;
    box-shadow: 12px 12px 0px #222;
    padding: 50px;
}

h1, h2 {
    font-family: 'Arial Black', Impact, sans-serif;
    color: #fff;
    text-transform: uppercase;
    margin-top: 0;
    text-shadow: 4px 4px 0px #bf94ff; /* 3D text effect */
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; margin-bottom: 10px;}

/* Harsh Event Cards */
.event-card {
    background-color: #000;
    border: 3px solid #bf94ff;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 6px 6px 0px #bf94ff;
}

.event-card h2 {
    font-size: 1.5rem;
    text-shadow: none;
    color: #ccff00;
}

ul li {
    margin-bottom: 10px;
    font-weight: bold;
}