@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Bai Jamjuree', sans-serif;
}

.video-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
    pointer-events: none;
}

.video-background iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.logo {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.logo img {
    max-width: 300px;
    height: auto;
}

.join-button {
    white-space: nowrap;
    text-align: center;

    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 1.2rem;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(255, 0, 0, 0.4);
}

.join-button:hover {
    background: #cc0000;
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.5);
}
