    /**
 * Filmmaker Profile Widget
 * CSS File
 */
    /* Filmmaker Profile Widget Styles */
    
    .cinematic-filmmaker-profile {
        position: relative;
        overflow: hidden;
        background-color: var(--cinematic-background-color);
    }
    
    .cinematic-filmmaker-header {
        position: relative;
        padding: var(--cinematic-padding);
        color: var(--cinematic-secondary-color);
        display: flex;
        flex-direction: column;
        min-height: 300px;
        background-color: var(--cinematic-primary-color);
    }
    
    @media (max-width: 767px) {
        .cinematic-filmmaker-header {
            padding: unset !important;
        }
    }
    /* When text-align center is set, align items center */
    
    .cinematic-filmmaker-header[style*="text-align: center"] {
        align-items: center;
    }
    /* When text-align right is set, align items flex-end */
    
    .cinematic-filmmaker-header[style*="text-align: right"] {
        align-items: flex-end;
    }
    /* When text-align left is set, align items flex-start */
    
    .cinematic-filmmaker-header[style*="text-align: left"] {
        align-items: flex-start;
    }
    
    .cinematic-filmmaker-header.has-background {
        background-size: cover;
        background-position: center;
    }
    
    .cinematic-filmmaker-header.has-overlay::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }
    /* Header Video Background Styles */
    
    .cinematic-filmmaker-header-video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
    }
    
    .cinematic-filmmaker-header-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: 0;
    }
    
    .cinematic-filmmaker-header-video-thumbnail {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
        z-index: 0;
    }
    
    .cinematic-filmmaker-header-video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }
    /* Ensure header content is above video background */
    
    .cinematic-filmmaker-header .cinematic-filmmaker-container {
        position: relative;
        z-index: 2;
    }
    
    .cinematic-filmmaker-title {
        position: relative;
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        color: #fff;
        width: 100%;
    }
    
    .cinematic-filmmaker-subtitle {
        position: relative;
        font-size: 1.75rem !important;
        font-weight: 300 !important;
        margin-bottom: 1rem;
        color: #fff;
        width: 100%;
        max-width: 65rem;
        margin-bottom: 3rem;
    }
    
    .cinematic-filmmaker-contact {
        position: relative;
        display: flex;
        gap: 1rem;
        align-items: center;
        color: #fff;
        width: 100%;
        margin-bottom: 6rem;
    }
    
    .cinematic-filmmaker-contact a {
        color: #fff;
    }
    
    .cinematic-filmmaker-contact a:hover {
        color: #fff;
        text-decoration: underline;
    }
    /* Vertical contact layout */
    
    .cinematic-filmmaker-contact-vertical {
        flex-direction: column;
        align-items: flex-start;
    }
    /* Alignment for contact items */
    
    .cinematic-filmmaker-contact[style*="justify-content: center"] .cinematic-filmmaker-contact-vertical {
        align-items: center;
    }
    
    .cinematic-filmmaker-contact[style*="justify-content: flex-end"] .cinematic-filmmaker-contact-vertical {
        align-items: flex-end;
    }
    
    .cinematic-filmmaker-bio {
        padding: var(--cinematic-padding);
    }
    
    .cinematic-filmmaker-contact-item {
        color: var(--cinematic-secondary-color);
        text-decoration: none;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
    
    .cinematic-filmmaker-contact-item i {
        font-size: 1rem;
    }
    
    .cinematic-filmmaker-contact-item:hover {
        color: var(--cinematic-accent-color);
    }
    /* Video Styles */
    
    .cinematic-filmmaker-video-wrapper {
        margin: 2rem auto;
        width: 100%;
        max-width: 100%;
    }
    
    .cinematic-filmmaker-video-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        background-color: #000;
        aspect-ratio: 16/9;
    }
    
    .cinematic-filmmaker-video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: none;
        z-index: 2;
    }
    
    .cinematic-filmmaker-video-overlay::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
    }
    
    .cinematic-filmmaker-play-button {
        --rotation-duration: 15s;
        --x-position: 50%;
        --y-position: 50%;
        position: absolute;
        top: var(--y-position);
        left: var(--x-position);
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: rgba(41, 172, 207, 0.9);
        color: white;
        font-size: 24px;
        transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease;
        will-change: transform;
        z-index: 3;
        box-sizing: border-box;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .cinematic-filmmaker-play-button::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.5);
        animation: pulse-play-button 2s ease-out infinite;
        box-sizing: border-box;
    }
    
    .cinematic-filmmaker-play-button i {
        font-size: 30px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        color: white;
    }
    
    .cinematic-filmmaker-play-button::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 50%;
        z-index: 1;
    }
    /* Circular text around the play button */
    
    .cinematic-filmmaker-circular-text {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120%;
        height: 120%;
        transform-origin: center;
        animation: rotate-play-text var(--rotation-duration) linear infinite;
        z-index: 2;
        box-sizing: border-box;
        transform: translate(-50%, -50%);
    }
    
    .cinematic-filmmaker-circular-text span {
        position: absolute;
        left: 50%;
        font-size: 9px;
        font-weight: bold;
        text-transform: uppercase;
        transform-origin: 0 62px;
        display: inline-block;
        color: rgba(255, 255, 255, 0.8);
        letter-spacing: 0.5px;
    }
    /* Animation for the play text */
    
    @keyframes rotate-play-text {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }
    
    @keyframes pulse-play-button {
        0% {
            transform: scale(1);
            opacity: 1;
        }
        100% {
            transform: scale(1.3);
            opacity: 0;
        }
    }
    /* Modal Video Styles */
    
    .cinematic-filmmaker-video-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .cinematic-filmmaker-video-modal.active {
        display: flex;
        opacity: 1;
    }
    
    .cinematic-filmmaker-modal-content {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 0;
        overflow: hidden;
        transform: scale(0.95);
        transition: transform 0.3s ease;
    }
    
    .cinematic-filmmaker-video-modal.active .cinematic-filmmaker-modal-content {
        transform: scale(1);
    }
    
    .cinematic-filmmaker-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        color: #fff;
        cursor: pointer;
        z-index: 10;
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
        transition: all 0.2s ease;
        background: none;
        border: none;
        padding: 10px;
        line-height: 1;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .cinematic-filmmaker-modal-close:hover {
        color: #ff4d4d;
        transform: scale(1.2);
    }
    
    .cinematic-filmmaker-modal-video-container {
        position: relative;
        width: 100%;
        height: 100%;
        background-color: #000;
    }
    
    .cinematic-filmmaker-video-embed {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .cinematic-filmmaker-video-embed iframe,
    .cinematic-filmmaker-video-embed video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    /* Body class when modal is open to prevent scrolling */
    
    body.cinematic-modal-open {
        overflow: hidden;
    }
    /* Ensure modal is always centered */
    
    @media (max-height: 500px) {
        .cinematic-filmmaker-modal-content {
            width: 100%;
            height: 100%;
        }
        .cinematic-filmmaker-modal-close {
            top: 10px;
            right: 10px;
            font-size: 20px;
            width: 35px;
            height: 35px;
        }
    }
    /* Responsive Styles */
    
    @media (max-width: 767px) {
        .cinematic-filmmaker-title {
            font-size: 2rem;
        }
        .cinematic-filmmaker-subtitle {
            font-size: 1rem;
        }
        .cinematic-filmmaker-header {
            min-height: 250px;
        }
        .cinematic-filmmaker-play-button {
            width: 60px;
            height: 60px;
        }
        .cinematic-filmmaker-play-button i {
            font-size: 24px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .cinematic-filmmaker-play-button .cinematic-filmmaker-circular-text span {
            transform-origin: 0 -22px;
            font-size: 8px;
            letter-spacing: 0;
        }
    }
    
    @media (max-width: 479px) {
        .cinematic-filmmaker-title {
            font-size: 1.5rem;
        }
        .cinematic-filmmaker-header {
            min-height: 200px;
        }
        .cinematic-filmmaker-play-button {
            width: 50px;
            height: 50px;
        }
        .cinematic-filmmaker-play-button i {
            font-size: 20px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .cinematic-filmmaker-play-button .cinematic-filmmaker-circular-text span {
            transform-origin: 0 -20px;
            font-size: 7px;
            letter-spacing: 0;
        }
        .cinematic-filmmaker-modal-content {
            width: 100%;
            height: 100%;
        }
        .cinematic-filmmaker-modal-close {
            top: 15px;
            right: 15px;
            font-size: 24px;
            padding: 8px;
            width: 40px;
            height: 40px;
        }
        .cinematic-filmmaker-video-embed .mobile-play-button {
            width: 50px;
            height: 50px;
        }
        .cinematic-filmmaker-video-embed .mobile-play-button i {
            font-size: 20px;
        }
        .cinematic-filmmaker-video-embed .mobile-play-button .cinematic-filmmaker-circular-text span {
            transform-origin: 0 -20px;
            font-size: 6px;
            letter-spacing: 0;
        }
    }
    /* Mobile video play overlay */
    
    .cinematic-filmmaker-video-embed .mobile-play-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 5;
        cursor: none;
    }
    
    .cinematic-filmmaker-video-embed .mobile-play-button {
        position: relative;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: rgba(41, 172, 207, 0.9);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: transform 0.2s ease;
        box-sizing: border-box;
    }
    
    .cinematic-filmmaker-video-embed .mobile-play-button:active {
        transform: scale(0.95);
    }
    
    .cinematic-filmmaker-video-embed .mobile-play-button::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-sizing: border-box;
    }
    
    .cinematic-filmmaker-video-embed .mobile-play-button i {
        font-size: 24px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
    }
    
    .cinematic-filmmaker-video-embed .mobile-play-button .cinematic-filmmaker-circular-text {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120%;
        height: 120%;
        transform-origin: center;
        animation: rotate-play-text var(--rotation-duration) linear infinite;
        z-index: 2;
        box-sizing: border-box;
        transform: translate(-50%, -50%);
    }
    
    .cinematic-filmmaker-video-embed .mobile-play-button .cinematic-filmmaker-circular-text span {
        position: absolute;
        left: 50%;
        font-size: 8px;
        font-weight: bold;
        text-transform: uppercase;
        transform-origin: 0 50px;
        display: inline-block;
        color: rgba(255, 255, 255, 0.8);
        letter-spacing: 0.5px;
    }