/* ===== RESET BODY ===== */
body {
    margin: 0;
    padding: 0;
}

/* ===== BUTTON GLOBAL ===== */
.btn {
    border-radius: 0.625pc;
}

/* ===== HEADER & VIDEO ===== */
header {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 25rem;
    overflow: hidden;
    background-size: cover;
}

header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
}

header .container {
    position: relative;
    z-index: 2;
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: 1;
}

/* ===== JUDUL ===== */
h1 {
    color: #f00;
    font-size: 52.5pt;
}

/* ===== EFEK TOMBOL (WIN) ===== */
.win,
.win:hover {
    border: 1px solid #000;
    box-shadow: 0.3125pc 0.3125pc 3.75pt rgba(0, 0, 0, 0.4);
}

/* ===== TOMBOL YES (BIRU DEFAULT) ===== */
.btn-yes {
    background-color: #0d6efd;
    color: #fff;
}

.btn-yes:hover {
    background-color: #0b5ed7;
}

/* ===== TOMBOL NO (MERAH) ===== */
.btn-no {
    background-color: #f00;
    color: #fff;
}

.btn-no:hover {
    background-color: #cc0000;
}
