
    /* --- UNIQUE & ISOLATED CSS --- */

    /* 1. MAIN WRAPPER */
    .Oto_Reel_Section_Z500 {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding: 60px 0; 
        background: #ffffff;
        background-image: linear-gradient(180deg, #FFFFFF 0%, #eef6f6 100%);
        overflow: hidden;
        box-sizing: border-box;
        font-family: system-ui, -apple-system, sans-serif;
    }

    .Oto_Reel_Container_Z500 {
        max-width: 1250px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
        padding: 0 20px;
    }

    /* 2. LEFT TEXT */
    .Oto_Reel_Text_Col_Z500 {
        flex: 0 0 35%; 
        min-width: 300px;
    }

    .Oto_Reel_Label_Z500 {
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #6C3EF3;
        background: #F0Fdfa;
        padding: 8px 16px;
        border-radius: 50px;
        display: inline-block;
        margin-bottom: 20px;
        border: 1px solid #ccfbf1;
    }

    .Oto_Reel_Heading_Z500 {
        font-size: 42px;
        font-weight: 900;
        color: #111;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .Oto_Reel_Desc_Z500 {
        font-size: 16px;
        color: #1d1d1d;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    /* Navigation Buttons */
    .Oto_Reel_Nav_Row_Z500 {
        display: flex;
        gap: 15px;
    }

    .Oto_Reel_Btn_Z500 {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #111;
        font-size: 20px;
    }

    .Oto_Reel_Btn_Z500:hover {
        border-color: #6C3EF3;
        background: #6C3EF3;
        color: #fff;
        box-shadow: 0 5px 15px rgba(108, 62, 243, 0.3);
    }

    /* 3. SLIDER AREA */
    .Oto_Reel_Slider_Col_Z500 {
        flex: 1;
        width: 100%;
        min-width: 0;
    }

    /* CARD DESIGN */
    .Oto_Reel_Card_Z500 {
        background: #fff;
        padding: 8px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border: 1px solid #f3f4f6;
        transition: transform 0.3s ease;
        position: relative;
    }

    .Oto_Reel_Card_Z500:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(108, 62, 243, 0.15);
    }

    /* MEDIA BOX */
    .Oto_Reel_Media_Wrap_Z500 {
        width: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 16px;
        background: #000;
        height: 350px; 
        cursor: pointer;
    }

    .Oto_Reel_Img_Z500 {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
        opacity: 0.95;
    }

    .Oto_Reel_Card_Z500:hover .Oto_Reel_Img_Z500 {
        transform: scale(1.08);
        opacity: 1;
    }

    /* Play Button */
    .Oto_Reel_Play_Z500 {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 60px; height: 60px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.5);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: #fff;
        font-size: 24px;
        z-index: 5;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .Oto_Reel_Card_Z500:hover .Oto_Reel_Play_Z500 {
        background: #6C3EF3;
        border-color: #6C3EF3;
        transform: translate(-50%, -50%) scale(1.1);
    }

    /* Caption Overlay */
    .Oto_Reel_Caption_Z500 {
        padding: 12px 5px 5px 5px;
        text-align: center;
    }
    
    .Oto_Reel_Title_Z500 {
        font-size: 15px;
        font-weight: 700;
        color: #111;
        display: block;
    }
    
    .Oto_Reel_Sub_Z500 {
        font-size: 13px;
        color: #666;
    }

    /* Video Specifics */
    .Oto_Reel_Video_Z500 {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        display: block;
    }

    /* Playing State */
    .Oto_Reel_Media_Wrap_Z500.playing .Oto_Reel_Play_Z500 {
        opacity: 0;
        pointer-events: none;
    }

    /* --- FULL SCREEN MODAL CSS (NEW) --- */
    #Oto_Image_Modal {
        display: none;
        position: fixed;
        z-index: 999999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.95);
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(5px);
    }

    #Oto_Full_Image {
        max-width: 90%;
        max-height: 90vh;
        border-radius: 12px;
        box-shadow: 0 0 30px rgba(255,255,255,0.1);
        user-select: none;
    }

    .Oto_Close_Btn {
        position: absolute;
        top: 20px;
        right: 30px;
        color: #fff;
        font-size: 45px;
        font-weight: bold;
        cursor: pointer;
        z-index: 100000;
    }

    /* MOBILE OVERRIDES */
    @media (max-width: 768px) {
        .Oto_Reel_Container_Z500 {
            flex-direction: column;
            align-items: flex-start;
            padding: 0 15px;
        }
        .Oto_Reel_Text_Col_Z500 {
            width: 100%;
            margin-bottom: 20px;
            text-align: center;
        }
        .Oto_Reel_Nav_Row_Z500 { justify-content: center; }
        .Oto_Reel_Heading_Z500 { font-size: 32px; }
        .Oto_Reel_Slider_Col_Z500 { width: 100%; padding-left: 0; }
        .Oto_Reel_Media_Wrap_Z500 {
            height: auto !important;
            aspect-ratio: 9 / 16 !important;
            border-radius: 12px;
        }
        .Oto_Reel_Card_Z500 { padding: 4px; border-radius: 14px; }
    }

    /* Section Layout */
    #OT_X99_Section {
      
		 width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        
        padding: 60px 0; /* Reduced padding for mobile feel */
        background: #ffffff;
        /* Premium Subtle Light Gradient */
        background: #eef6f6;
        overflow: hidden;
        box-sizing: border-box;
       
    }
    
    .OT_X99_Container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* Heading Styling */
    .OT_X99_Header {
        text-align: center;
        margin-bottom: 30px;
    }
    .OT_X99_Title {
        font-size: 28px;
        font-weight: 800;
        color: #111;
        margin: 0;
    }
    .OT_X99_Subtitle {
        font-size: 16px;
        color: #1d1d1d;
        margin-top: 8px;
    }

    /* REEL CARD STYLING */
    .OT_X99_Card {
        position: relative;
        width: 100%;
        /* 9:16 Aspect Ratio Look */
        height: 500px; 
        border-radius: 16px;
        overflow: hidden;
        background: #000;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        cursor: pointer;
    }

    /* Floating Logo */
    .OT_X99_Float_Logo {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 5;
        width: 80px; /* Logo Size */
        height: auto;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
        pointer-events: none; /* Click through to video */
    }

    /* Video Styling */
    .OT_X99_Video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    /* Play Button */
    .OT_X99_Play_Btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(4px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 24px;
        border: 1px solid rgba(255,255,255,0.5);
        z-index: 4;
        transition: all 0.3s ease;
    }

    /* Bottom Gradient Overlay */
    .OT_X99_Overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 60px 15px 15px 15px;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        z-index: 3;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    /* Text Info */
    .OT_X99_Info {
        flex: 1;
    }
    .OT_X99_Name {
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 4px;
        display: block;
    }
    .OT_X99_Result {
        color: #ddd;
        font-size: 13px;
        line-height: 1.3;
        display: block;
    }

    /* LIKE BUTTON STYLING */
    .OT_X99_Like_Wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 10px;
        cursor: pointer;
        z-index: 10; /* Ensure clickable */
    }
    .OT_X99_Heart {
        font-size: 28px;
        color: rgba(255,255,255,0.8);
        transition: transform 0.2s, color 0.2s;
    }
    .OT_X99_Like_Count {
        color: #fff;
        font-size: 11px;
        font-weight: 600;
        margin-top: 2px;
    }

    /* Like Active State */
    .OT_X99_Like_Wrap.liked .OT_X99_Heart {
        color: #ff4040;
        transform: scale(1.2);
    }

    /* Playing State (Hide Play Button) */
    .OT_X99_Card.playing .OT_X99_Play_Btn {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    /* Hide Download Controls */
    .OT_X99_Video::-webkit-media-controls-enclosure { display:none !important; }
    .OT_X99_Video::-webkit-media-controls { display:none !important; }

    /* Nav Buttons */
    .OT_X99_Nav_Row {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin-bottom: 15px;
    }
    .OT_X99_Nav_Btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-weight: bold;
        transition: 0.3s;
		border: 2px solid #5b21b6;
    }
    .OT_X99_Nav_Btn:hover {
        background: #000;
        color: #fff;
    }

