.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: #000;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.7)
    );
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.launch-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 32px;
    border-radius: 9999px;
    font-size: 14px;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-top: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.logo {
    width: 500px;
    display: block;
    margin: 0;
    padding: 0;
}

.tagline {
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: block;
    font-family: 'Crimson Pro', serif;
    font-weight: 600; /* Changed from 700 to 600 for semi-bold */
}

body {
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 0;
}