.magic-wrapper {
                    text-align: center !important;
                    display: block;
                    padding: 20px 15px !important;
                    position: relative;
                    z-index: 10;
                }
                
                /* Button Base */
                .magic-btn {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: 12px;
                    text-decoration: none !important;
                    color: white !important;
                    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
                    font-weight: 700;
                    border-radius: 60px;
                    line-height: 1.2 !important;
                    position: relative;
                    overflow: hidden;
                    cursor: pointer;
                    border: none;
                    
                    /* Gradient Background */
                    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f64f59 100%);
                    background-size: 200% 200%;
                    animation: gradientShift 3s ease infinite, float 2s ease-in-out infinite;
                    
                    /* Shadow */
                    box-shadow: 
                        0 10px 30px rgba(102, 126, 234, 0.4),
                        0 5px 15px rgba(118, 75, 162, 0.3),
                        inset 0 -3px 10px rgba(0, 0, 0, 0.1);
                    
                    /* PC Size */
                    font-size: 22px !important;
                    padding: 18px 45px !important;
                    letter-spacing: 0.5px;
                    
                    transition: all 0.3s ease;
                }
                
                /* Shine Effect */
                .magic-btn::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: -100%;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(
                        90deg,
                        transparent,
                        rgba(255, 255, 255, 0.3),
                        transparent
                    );
                    animation: shine 2.5s infinite;
                }
                
                /* Glow Ring */
                .magic-btn::after {
                    content: '';
                    position: absolute;
                    inset: -3px;
                    border-radius: 60px;
                    background: linear-gradient(135deg, #667eea, #764ba2, #f64f59, #667eea);
                    background-size: 400% 400%;
                    animation: borderGlow 4s linear infinite;
                    z-index: -1;
                    opacity: 0.7;
                    filter: blur(8px);
                }
                
                /* Hover State */
                .magic-btn:hover {
                    transform: translateY(-5px) scale(1.02);
                    box-shadow: 
                        0 15px 40px rgba(102, 126, 234, 0.5),
                        0 8px 20px rgba(118, 75, 162, 0.4);
                }
                
                /* Play Icon */
                .magic-btn .play-icon {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    width: 36px;
                    height: 36px;
                    background: rgba(255, 255, 255, 0.25);
                    border-radius: 50%;
                    font-size: 16px;
                    animation: pulse 1.5s ease-in-out infinite;
                    backdrop-filter: blur(5px);
                }
                
                /* Text */
                .magic-btn .btn-text {
                    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
                }
                
                /* Animations */
                @keyframes gradientShift {
                    0% { background-position: 0% 50%; }
                    50% { background-position: 100% 50%; }
                    100% { background-position: 0% 50%; }
                }
                
                @keyframes float {
                    0%, 100% { transform: translateY(0); }
                    50% { transform: translateY(-6px); }
                }
                
                @keyframes shine {
                    0% { left: -100%; }
                    50%, 100% { left: 100%; }
                }
                
                @keyframes borderGlow {
                    0% { background-position: 0% 50%; }
                    100% { background-position: 400% 50%; }
                }
                
                @keyframes pulse {
                    0%, 100% { transform: scale(1); opacity: 1; }
                    50% { transform: scale(1.1); opacity: 0.8; }
                }
                
                /* Mobile Responsive */
                @media only screen and (max-width: 600px) {
                    .magic-wrapper {
                        padding: 15px 10px !important;
                    }
                    
                    .magic-btn {
                        font-size: 18px !important;
                        padding: 14px 32px !important;
                        gap: 10px;
                    }
                    
                    .magic-btn .play-icon {
                        width: 30px;
                        height: 30px;
                        font-size: 14px;
                    }
                }
                
                /* Tablet */
                @media only screen and (min-width: 601px) and (max-width: 1024px) {
                    .magic-btn {
                        font-size: 20px !important;
                        padding: 16px 38px !important;
                    }
                }
                
                
                
                
                
                
                
          .featured-image {
                 position: relative;
               }
               
               .featured-image img {
                 width: 100%;
                 height: 100%;
                 object-fit: cover;
                 display: block;
               }
               
               /* Center overlay */
               .overlay {
                 position: absolute;
                 inset: 0;
                 display: flex;
                 align-items: center;
                 justify-content: center;
                 background: rgb(0 0 0 / 57%);
               }
               
               /* Spinner */
               .spinner {
                 width: 50px;
                 height: 50px;
                 border: 5px solid rgba(255,255,255,0.3);
                 border-top: 5px solid white;
                 border-radius: 50%;
                 animation: spin 1s linear infinite;
               }
               
               @keyframes spin {
                 to { transform: rotate(360deg); }
               }
               
               /* Play Icon */
               .play-btn {
                 display: none;
                 width: 70px;
                 height: 70px;
                 background: rgba(0,0,0,0.6);
                 border-radius: 50%;
                 align-items: center;
                 justify-content: center;
                 cursor: pointer;
               }
               
               .play-btn::before {
                 content: "";
                 margin-left: 5px;
                 border-style: solid;
                 border-width: 12px 0 12px 20px;
                 border-color: transparent transparent transparent white;
               }
               
               /* Bottom Controls */
.video-controls {
    position: absolute;
    bottom: -5px;
    width: 100%;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress {
    width: 0%;
    height: 100%;
    background: red;
}

/* Time */
.time {
    color: #fff;
    font-size: 12px;
    text-align: left;
}
.controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 14px;
}

.left-controls,
.right-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.speaker,
.fullscreen,
.menu {
    cursor: pointer;
    font-size: 16px;
    opacity: 0.9;
}

.speaker:hover,
.fullscreen:hover,
.menu:hover {
    opacity: 1;
}

/* Icons spacing */
.time {
    font-size: 12px;
}

/* Fullscreen style */
.featured-image:fullscreen {
    width: 100%;
    height: 100%;
}
.icon svg {
    width: 20px;
    height: 20px;
    fill: white;
    cursor: pointer;
    opacity: 0.85;
    transition: 0.2s;
}

.icon svg:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Menu items */
.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: white;
    cursor: pointer;
}

.menu-icon {
    width: 18px;
    height: 18px;
    fill: white;
}  .menu-wrapper {
    position: relative;
}

.menu-dropdown {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: rgba(20,20,20,0.95);
    border-radius: 8px;
    display: none;
    min-width: 120px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    overflow: hidden;
}

.menu-item {
    padding: 10px;
    color: white;
    font-size: 13px;
    cursor: pointer;
}

.menu-item:hover {
    background: rgba(255,255,255,0.1);
}              
                
                
.menu-dropdown {
    display: none;
}

.menu-dropdown.active {
    display: block;
}                
                
.svg-icon path,
.svg-icon line {
    fill: white !important;
    stroke: white !important;
}                
  .progress-bar {
    cursor: pointer;
}              
                
                