body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 12px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.click-text {
    display: inline-block;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    padding: 6px 10px;
}

.click-text:hover {
    color: #666;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    background-color: #000;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container {
    position: relative;
    width: 100%;
    background-color: #000;
}

video {
    width: 100%;
    height: auto;
    display: block;
}

.credits {
    position: fixed;
    bottom: 10px;
    right: 20px;
    color: #000;
    font-size: 10px;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 1002;
    display: none;
}

.credits.show {
    display: block;
}

/* Animation for modal */
.modal.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content.show {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { 
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to { 
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

/* Protection overlay */
.protection-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.youtube-link {
    color: #000;
    text-decoration: underline;
}

.youtube-link:hover {
    text-decoration: underline;
}
