* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif; /* Futuristic Font */
}

body {
    background: black;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Container */
.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Text Box with Glassmorphism */
.text-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(0, 247, 255, 0.8);
    box-shadow: 0 0 25px rgba(0, 247, 255, 0.6), 0 0 50px rgba(135, 69, 227, 0.6);
}

/* Buttons */
.btn, .btn1 {
    text-decoration: none;
    font-size: 40px;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 10px;
    border: 3px solid #00f7ff;
    background: linear-gradient(to right, rgba(0, 247, 255, 0.7), rgba(135, 69, 227, 0.7));
    color: white;
    text-align: center;
    transition: 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px #00f7ff;
}

/* Glowing Hover Effect */
.btn::before, .btn1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(10px);
    opacity: 0;
    transition: 0.4s;
}

.btn:hover::before, .btn1:hover::before {
    opacity: 1;
}

.btn:hover, .btn1:hover {
    border-color: #ff0077;
    box-shadow: 0 0 15px #ff0077, 0 0 30px #ff0077, 0 0 50px #ff0077;
}

/* Responsive Design */
@media only screen and (max-width: 600px) {
    .btn, .btn1 {
        font-size: 25px;
        padding: 10px 25px;
    }

    .text-box {
        padding: 20px;
    }
}
