* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none; /* Disable text selection */
}

body {
    width: 100vw;
    height: 100vh;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Video Fullscreen */
.video-container {
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none; /* Prevent user interactions with video */
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Premium Button Styling */
.btn {
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: "Inter", sans-serif;
    background: rgba(212, 165, 55, 0.15);
    color: #e6b422;
    border: 2px solid #e6b422;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    pointer-events: all;
    display: inline-block;
    box-shadow: inset 0px 0px 15px rgba(212, 165, 55, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    backdrop-filter: blur(10px);
    width: auto;
    position: relative;
    overflow: hidden;
}


/* Hover Animation: Soft Glow & Scale */
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(0, 0, 0, 0) 80%);
    transition: all 0.6s ease-in-out;
    transform: translate(-50%, -50%) scale(0);
}

.btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 35px rgba(212, 165, 55, 0.5);
}

/* Click Effect */
.btn:active {
    transform: translateY(2px);
    box-shadow: 0px 3px 10px rgba(212, 165, 55, 0.5);
}

/* Perfect Button Placement */
.button-container {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 18%; /* Moves button up slightly */
    display: none;
}



/* Prevent Right-Click */
video::-webkit-media-controls {
    display: none !important;
}
