* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Video Player Page Styles */
.video-player-container {
    padding: 3rem 5%;
    background-color: #f9f9f9;
    min-height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
}

.video-player {
    max-width: 1000px;
    width: 100%;
}

.iframe-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.share-section {
    background: #edeeeb;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 20px 20px rgba(0, 0, 8, 0.2);
    text-align: center;
}

.share-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.social-share {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-share i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.facebook { background: #3b5998; }
.twitter { background: #000000; }
.linkedin { background: #0077b5; }
.whatsapp { background: #25d366; }

/* Responsive Design */
@media (max-width: 768px) {
    .video-title {
        font-size: 1.5rem;
    }
    
    .social-share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-share {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .video-title {
        font-size: 1.2rem;
    }
    
    .social-share {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}