html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: white;
}
#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    z-index: -100;
    object-fit: cover;
}
body::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -99;
    pointer-events: none;
}
.container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    -webkit-transform: translateZ(0);
    will-change: transform;
    opacity: 0.99;
}
.hero {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
}
.hero-text {
    position: relative;
    z-index: 20;
    -webkit-transform: translateZ(0);
    will-change: transform;
    opacity: 0.99;
}
.logo {
    margin-bottom: 20px;
}
.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin: 0 0 10px;
    color: white;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}
.hero-text p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ffffff;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}
.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(1, 255, 94, 0.5);
}
footer {
    text-align: center;
    padding: 20px 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}
