* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 116.5%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

.popup-content h2 {
    margin-bottom: 20px;
}

.enter-button {
    position: fixed;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.enter-site {
    padding: 10px 20px;
    background-color: purple;
    color: white;
    text-decoration: none;
    font-size: 20px;
    border-radius: 43px;
    transition: background-color 0.3s ease-out;
}

.enter-site:hover {
    background-color: #df0977ba;
}
