:root {
    --bg-color: #000;
    --text-color: #fff;
    --accent-color: #aaa;
    --font-main: "monotalic", sans-serif;
}

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

html, body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    scrollbar-width: none;
    -webkit-font-smoothing: antialiased;
    cursor: none; 
}

html, body {
    cursor: none;
}

/* Auch auf Links und Buttons den Pointer-Finger unterdrücken */
a, button, .interactive-el {
    cursor: none;
}

body::-webkit-scrollbar { display: none !important; }

header { 
    position: fixed; 
    top: 0; width: 100%; 
    padding: clamp(20px, 4vw, 40px) clamp(20px, 5vw, 60px); 
    display: flex; justify-content: center; 
    z-index: 100; pointer-events: none; 
    /* NEU: Weicher Übergang für das Ein- und Ausblenden */
    transition: transform 0.4s ease, opacity 0.4s ease; 
}

/* NEU: Diese Klasse wird per JavaScript hinzugefügt, wenn das Video erreicht ist */
header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

header nav { 
    display: flex; align-items: center;
    gap: clamp(20px, 6vw, 80px); 
    font-size: clamp(12px, 1.2vw, 14px); 
    letter-spacing: 1px; pointer-events: auto;
}

header nav a { color: var(--accent-color) !important; text-decoration: none; transition: color 0.3s ease; cursor: none; }
header nav a.active, header nav a:hover { color: #fff !important; }

.small-logo { font-weight: 700; white-space: nowrap; }

footer { 
    width: 100%; 
    padding: 80px clamp(20px, 5vw, 60px) 40px; 
    display: flex; justify-content: space-between; 
    align-items: center; 
}
footer p, footer a { color: #555 !important; font-size: clamp(10px, 1vw, 12px); text-decoration: none; cursor: none; transition: color 0.3s ease; }
footer a:hover { color: #fff !important; }

.showreel-main {
    padding: 160px clamp(20px, 8vw, 120px) 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.showreel-header {
    margin-bottom: 60px;
}

.showreel-header h1 {
    font-size: clamp(50px, 10vw, 140px);
    line-height: 0.9;
    font-weight: 700;
    letter-spacing: -4px;
    text-transform: uppercase;
}

.showreel-header .subtitle {
    font-size: clamp(16px, 2vw, 24px);
    color: var(--accent-color);
    letter-spacing: 4px;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: 400;
}

.video-section {
    width: 100%;
    max-width: 1600px; 
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #111;
    overflow: hidden;
}

/* Custom Cursor System */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 10000; }
.cursor-dot { width: 6px; height: 6px; background: #fff; }
.cursor-ring { width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.4); transition: width 0.3s, height 0.3s, background-color 0.3s; }

/* Animationen */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .showreel-main { padding-top: 120px; padding-left: 20px; padding-right: 20px; }
    .showreel-header h1 { font-size: clamp(40px, 12vw, 80px); }
}

@media (pointer: coarse), (hover: none), (max-width: 768px) {
    .cursor-dot, .cursor-ring {
        display: none !important;
    }
    
    /* System-Cursor auf Handys/Tablets wieder normalisieren, 
       damit der Browser sein Standard-Verhalten für Touch nutzt */
    html, body, a, button, .interactive-el {
        cursor: auto;
    }
}