:root {
    --bg-color: #050505;
    --text-color: #00ff41;
    --accent: #ff003c;
    --accent-blue: #00e5ff;
    --font-mono: 'Courier New', Courier, monospace;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-mono);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.noise {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    background: url('assets/images/hero.png') center/cover;
    opacity: 0.15;
    z-index: -1;
    mix-blend-mode: overlay;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid var(--text-color);
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    text-shadow: 0 0 5px var(--accent);
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 5px var(--accent-blue);
}

.hero {
    min-height: 70vh;
    padding: 120px 20px 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid var(--text-color);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(5,5,5,1) 100%);
    box-sizing: border-box;
}

.glitch-text {
    font-size: 4rem;
    font-weight: bold;
    position: relative;
    color: var(--text-color);
    text-shadow: 0 0 10px var(--text-color);
}

.glitch-text::before, .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent);
    clip: rect(24px, 950px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent-blue);
    clip: rect(85px, 950px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 30px, 0); }
    20% { clip: rect(50px, 9999px, 80px, 0); }
    40% { clip: rect(15px, 9999px, 60px, 0); }
    60% { clip: rect(80px, 9999px, 100px, 0); }
    80% { clip: rect(5px, 9999px, 20px, 0); }
    100% { clip: rect(40px, 9999px, 70px, 0); }
}

.subtitle {
    margin-top: 20px;
    font-size: 1.2rem;
    color: var(--accent-blue);
}

.deleuze-quote {
    margin-top: 40px;
    max-width: 800px;
    padding: 20px 30px;
    border-left: 4px solid var(--accent);
    background: rgba(17, 17, 17, 0.7);
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    position: relative;
    backdrop-filter: blur(5px);
}

.deleuze-quote p {
    margin: 0 0 15px 0;
    font-style: italic;
    font-family: var(--font-mono);
}

.deleuze-quote footer {
    color: var(--accent-blue);
    font-size: 0.9rem;
    text-align: right;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

main {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 60px;
}

h2 {
    color: var(--accent);
    border-left: 4px solid var(--accent);
    padding-left: 15px;
    margin-bottom: 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #111;
    border: 1px solid #333;
    padding: 15px;
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.card img, .card video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #333;
    margin-bottom: 15px;
    filter: grayscale(80%) contrast(120%);
    transition: filter 0.3s;
}

.card:hover img, .card:hover video {
    filter: grayscale(0%) contrast(120%);
}

.card h3 {
    margin: 0 0 10px 0;
    color: var(--text-color);
}

.card p {
    font-size: 0.9rem;
    color: #888;
}

.card .date {
    font-size: 0.8rem;
    color: var(--accent-blue);
    display: block;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid var(--text-color);
    background: #050505;
}

.email {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
}

.email:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 5px var(--accent-blue);
}

.empty-state {
    color: #666;
    font-style: italic;
    grid-column: 1 / -1;
}
