body {
    margin: 0;
    padding: 0;
    overflow: hidden;
	font-family: Arial, sans-serif;
}

/* Background video container */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Content on top of video */
.content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

/* Top bar container */
.top-bar {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3;
}

/* Rust-style login button */
.login-btn {
    padding: 12px 26px;
    background: rgba(20, 20, 20, 0.75);
    color: #ff6a00; /* Rust orange */
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border: 2px solid #ff6a00;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(255, 106, 0, 0.4);
    transition: 0.25s ease;
}

/* Hover effect */
.login-btn:hover {
    background: #ff6a00;
    color: black;
    box-shadow: 0 0 18px rgba(255, 106, 0, 0.8);
    transform: scale(1.05);
}