* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.gateway-wrapper {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Styling */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Ensure this alpha value (0.7) is not 1.0 (solid) */
    background: rgba(15, 23, 42, 0.7); 
    z-index: -1; /* Must be higher than video z-index, but lower than text */
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2; /* Keeps the video at the very back */
}

/* Content Layout */
.content-box {
    text-align: center;
    color: white;
    padding: 20px;
    z-index: 10;
}

.main-logo {
    height: 100px; /* Large logo as requested */
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 800;
}

h1 span {
    color: #035e88; /* Teal/Green accent like your reference */
}

p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

/* Buttons Styling */
.button-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.gate-btn {
    text-decoration: none;
    padding: 20px 40px;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.gate-btn:hover {
    transform: translateY(-10px);
    background: rgba(16, 111, 139, 0.2);
    border-color: #052952;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.btn-text {
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
}

.btn-subtext {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}