body {
    background-color: black;
    color: #fff;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

#Vid {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire background */
    opacity: 0.6;
}

.container {
    position: relative;
    z-index: 2; /* Keeps the buttons above the video */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full viewport height */
}

.btn {
    margin: 10px 0; /* Spacing between buttons */
    text-decoration: none;
    text-transform: uppercase;
    color: rgb(229, 229, 229);
    font-weight: 400;
    font-size: 15px;
    padding: 15px 30px; /* Add padding for a better look */
    border: solid 3px #ff1414; /* Border for buttons */
    position: relative;
    overflow: hidden; /* To clip the pseudo-elements */
    transition: background-color 0.3s ease; /* Smooth transitions */
    display: inline-block; /* To size correctly based on content */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1); /* Add shadow effect */
    font-weight: bold; /* Make it bold */
}

.btn:hover {
    background-color: rgba(183, 0, 0, 0.600);
}

.btn::before {
    content: attr(data-sm-link-text);
    position: absolute;
    top: 100%; /* Start hidden below the button */
    left: 50%;
    transform: translate(-50%, 0); /* Center the text horizontally */
    width: 100%;
    height: 100%;
    color: rgb(255, 255, 255);
    transition: all 0.3s ease; /* Smooth hover transition */
    text-align: center; /* Center text in the button */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1); /* Add shadow effect */
    font-weight: bold; /* Make it bold */
}

.btn:hover::before {
    top: +30%; /* Move the red text completely above the button */
}

.btn span {
    display: block;
    transition: transform 0.3s ease; /* Smooth transition */
    text-align: center; /* Center text in the button */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1); /* Add shadow effect */
    font-weight: bold; /* Make it bold */
}

.btn:hover span {
    transform: translateY(-250%); /* Move text out of the button */
}

.title {
    font-family: 'Montserrat', sans-serif; /* Use the Montserrat font */
    color: rgb(255, 0, 0); /* Matches button text color */
    font-size: 48px; /* Size of the title */
    font-weight: bold; /* Make it bold */
    margin-bottom: 20px; /* Spacing below the title */
    text-align: center; /* Center the title */
    z-index: 2; /* Ensure it’s above the video */
    position: relative; /* Positioning context */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow effect */
}

.unmute-btn {
    font-family: 'Montserrat', sans-serif; /* Ensure the font matches your existing design */
    font-size: 18px; /* Keep the font size similar or slightly smaller */
    padding: 3px 6px; /* Adjust padding to reduce the size of the button */
    border: none; /* Remove the border */
    background-color: transparent; /* Keep background transparent */
    color: red; /* Keep text color consistent */
    cursor: pointer; /* Change cursor to pointer on hover */
    z-index: 2; /* Ensure it appears above the video */
    margin-top: 20px; /* Add margin to position the button further down */
}

.unmute-btn:hover {
    background-color: transparent; /* Ensure no hover effect */
}

.star-icon {
    width: 45px; /* Adjust size as needed */
    height: 45px; /* Adjust size as needed */
    display: block; /* Make it a block element */
    margin-bottom: -15px; /* Space between the star and the title */
    text-align: center; /* Center the icon */
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.6)); /* Optional shadow */
}