/* Video Player Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', ' ', 'Helvetica Neue', Arial, sans-serif;
    /* overflow: hidden; */
    /* height: 100vh;
    width: 100vw; */
}

.video-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    outline: none;
}

.resume-button {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 30%;
    height: 30%;
    cursor: pointer;
    display: none;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

        .resume-button.show {
            display: block;
        }


/* Hide video controls */
video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-panel {
    display: none !important;
}

video::-webkit-media-controls-play-button {
    display: none !important;
}

video::-webkit-media-controls-timeline {
    display: none !important;
}

video::-webkit-media-controls-current-time-display {
    display: none !important;
}

video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

video::-webkit-media-controls-mute-button {
    display: none !important;
}

video::-webkit-media-controls-volume-slider {
    display: none !important;
}

video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

/* Cutdown Page Styles */
.intro-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}

.finish-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.finish-page.show {
    display: flex;
}

.qr-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.clickable-image {
    cursor: pointer;
}

.qr-text {
    color: white;
    font-size: 16px;
    margin-top: 15px;
    font-weight: 500;
}

.button-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.test-button, .reply-button {
    background: #1a1a2e;
    color: white;
    border: 2px solid #ffbf00;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 191, 0, 0.6), 0 0 40px rgba(255, 191, 0, 0.3);
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.test-button::before, .reply-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 191, 0, 0.2), transparent);
    transition: left 0.5s;
}

.test-button:hover, .reply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 191, 0, 0.8), 0 0 60px rgba(255, 191, 0, 0.4);
    border-color: #ffd700;
}

.test-button:hover::before, .reply-button:hover::before {
    left: 100%;
}

.reply-button {
    background: #1a1a2e;
    border-color: #ff6b6b;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.6), 0 0 40px rgba(255, 107, 107, 0.3);
}

.reply-button:hover {
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.8), 0 0 60px rgba(255, 107, 107, 0.4);
    border-color: #ff5252;
}