@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;800&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f0faff;
    overflow: hidden;
    padding: 20px;
}

.button {
    padding: 12px 28px;
    background-color: #7d2ae8;
    border-radius: 6px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 15px rgba(125, 42, 232, 0.4);
    transition: transform 0.2s;
}

.button:active {
    transform: scale(0.95);
}

#prankText {
    display: none; 
    color: #7d2ae8;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: shake 0.5s ease infinite;
}

#videoContainer {
    display: none;
    width: 100%;
    max-width: 560px;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

#unmuteOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: none;
    transition: opacity 0.6s ease;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

