.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    padding-top: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6); 
}

.pre-loader, 
.main-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #111;
    z-index: 10;
    border-radius: 4px;
}

.main-player {
    display: none;
    z-index: 5;
}

.main-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.spinner {
    width: 46px;
    height: 46px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #e91e63;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 15px;
}

.loader-text {
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
