/* Video Container */
.wp-video-player-wrapper {
    width: 100%;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    background: #000;
    border-radius: 0.5rem;
    overflow: hidden;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Muted Indicator */
.muted-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    z-index: 10;
}

.muted-indicator i {
    width: 2rem;
    height: 2rem;
}

/* Play Controls */
.play-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.control-button {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.control-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.control-button i {
    width: 2rem;
    height: 2rem;
}

.button-label {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.875rem;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* States */
.video-container.paused .play-controls {
    opacity: 1;
}

.video-container.unmuted .muted-indicator,
.video-container.playing .muted-indicator {
    display: none;
}

/* Fullscreen Button */
.fullscreen-button {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease;
}

.fullscreen-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

.fullscreen-button i {
    width: 1.5rem;
    height: 1.5rem;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
}

/* Responsive Styles */
@media (max-width: 640px) {
    .control-button {
        width: 3rem;
        height: 3rem;
    }

    .control-button i {
        width: 1.5rem;
        height: 1.5rem;
    }

    .button-label {
        font-size: 0.75rem;
    }

    .muted-indicator {
        width: 3rem;
        height: 3rem;
    }

    .muted-indicator i {
        width: 1.5rem;
        height: 1.5rem;
    }
}