body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Jost', sans-serif;
    color: #fff;
    overflow: hidden;
}

/* Background video */
.video-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Faded overlay */
.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: -1;
}

/* Center content */
.center-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
}
.title small {
    font-size: 2rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer links */
.footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
}

.footer a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
