html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100vw;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #000;
    color: #fff;
}

.landing-bg {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20, 20, 30, 0.65);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    max-width: 600px;
    padding: 2rem;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.7rem;
    letter-spacing: 1px;
    margin-bottom: 2.2rem;
}
.logo .icon {
    font-size: 2.1rem;
    margin-right: 0.7rem;
}
.brand {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #000a;
}
.desc {
    font-size: 1.15rem;
    color: #f0f0f0;
    margin-bottom: 2.2rem;
    max-width: 500px;
    text-shadow: 0 1px 4px #000a;
}
.cta-btn {
    display: inline-block;
    background: #fff;
    color: #222;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    box-shadow: 0 2px 8px #0003;
    transition: background 0.2s, color 0.2s;
    margin-top: 0.5rem;
    border: none;
}
.cta-btn:hover {
    background: #e50914;
    color: #fff;
}
@media (max-width: 700px) {
    .content {
        max-width: 95vw;
        padding: 1.2rem;
    }
    .title {
        font-size: 1.3rem;
    }
    .desc {
        font-size: 1rem;
    }
    .cta-btn {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }
    .logo {
        font-size: 1.1rem;
    }
    .logo .icon {
        font-size: 1.3rem;
    }
}
