@font-face {
    font-family: 'Times Condensed Bold';
    src: url('../assets/fonts/TimesCondensedBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

body {
    background: #000;
    color: #fff;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.cutout {
    position: relative;
    width: min(90vw, 600px);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    isolation: isolate;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -40%);
    object-fit: cover;
}

.cutout-mask {
    position: absolute;
    inset: 0;
    background: #000;
    mix-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: center;
}

.name {
    font-family: 'Times Condensed Bold', 'Times New Roman', serif;
    font-size: clamp(4rem, 14vw, 10rem);
    font-weight: bold;
    line-height: 0.73;
    letter-spacing: -0.02em;
    transform: scaleX(0.6);
    text-align: center;
    color: #fff;
}

.status {
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.85rem, 1.5vw, 1.2rem);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
    opacity: 0.5;
}
