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

:root {
    --black: #0a0a0a;
    --crimson: #8b1a1a;
    --crimson-light: #b22222;
    --text: #e8e0d8;
    --gold: #c9a84c;
}

body {
    background-color: var(--black);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

::selection {
    background: var(--crimson);
    color: var(--text);
}

/* Ambient glow */
.ambient-glow {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(139, 26, 26, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Brand */
.nav-brand {
    position: fixed;
    top: 1.2rem;
    left: 2rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.15em;
    z-index: 10;
}
.nav-logo {
    position: fixed;
    top: 1.2rem;
    right: 2rem;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    z-index: 10;
}

/* Page layout */
.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Video */
.video-container {
    width: 100%;
    max-width: 900px;
    border: 1px solid rgba(139, 26, 26, 0.2);
    box-shadow: 0 0 80px rgba(139, 26, 26, 0.06);
    background: #000;
}

.video-container video {
    width: 100%;
    display: block;
}
