/* Deep Dark Theme */
body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hero-section {
    background: radial-gradient(circle at top, #1a1a1a 0%, #050505 100%);
}

.player-container {
    max-width: 800px;
    position: relative;
    cursor: pointer;
}

.video-preview-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
    border-radius: 12px;
}

.play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

#play-button {
    font-size: 90px;
    color: #daa300;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.player-container:hover #play-button {
    transform: scale(1.15);
}

.mock-controls {
    position: absolute;
    bottom: 0; width: 100%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 14px;
}

/* Modal Styling */
.custom-modal-overlay {
    display: none; position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95); z-index: 2000;
    justify-content: center; align-items: center;
}

.custom-modal-content {
    background: #fff; border-radius: 20px;
    width: 90%; max-width: 450px; position: relative;
}

.close-modal {
    position: absolute; top: 10px; right: 20px;
    font-size: 30px; background: none; border: none; cursor: pointer;
}

.op-5 { opacity: 0.5; }