body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

/* Video Background */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Dark Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
}

h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #90ee90;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
}

footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    font-size: 14px;
    z-index: 1;
}

@media(max-width: 600px) {
    h1 {
        font-size: 32px;
    }
}

.links {
    margin-top: 30px;
}

.links a {
    display: inline-block;
    margin: 10px;
    padding: 12px 20px;
    text-decoration: none;
    background: #4CAF50;
    color: #fff;
    border-radius: 6px;
    transition: 0.3s;
}

.links a:hover {
    background: #2e7d32;
}