.video-main-content {
    overflow: hidden;
}

/* Video Logo Overlay - NEW */
.video-logo-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-logo-overlay img {
    max-height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.video-logo-overlay .site-logo-text {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    padding: 5px 10px;
    background: rgba(0,0,0,0.5);
    border-radius: 4px;
    display: inline-block;
}

.video-container:hover .video-logo-overlay {
    opacity: 1;
}

/* Main Related Videos Section - NEW */
.main-related-videos-section {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}

.main-related-videos-section .section-header {
    color: var(--rednaija-text);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.main-related-videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.main-related-video-card {
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.main-related-video-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.main-related-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1a1a1a;
}

.main-related-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-related-video-card:hover .main-related-thumb {
    transform: scale(1.05);
}

.main-related-info {
    padding: 12px;
}

.main-related-title {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.main-related-title a {
    color: var(--rednaija-text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.main-related-title a:hover {
    color: var(--rednaija-primary);
}

.main-related-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* Breadcrumb Styles */
.breadcrumb-section {
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--rednaija-primary);
}

.breadcrumb-separator {
    color: rgba(255,255,255,0.4);
}

.breadcrumb .current {
    color: var(--rednaija-text);
    font-weight: 500;
}

/* Inline Performers Styles */
.performers-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0 16px 0;
}

.performer-count {
    background: var(--rednaija-bg);
    color: var(--rednaija-text);
    font-size: 0.8em;
    padding: 2px 6px;
    margin-left: 5px;
    font-weight: bold;
}

.performer-tag-small {
    background: var(--rednaija-primary);
    color: var(--rednaija-text)!important;
    text-decoration: none;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(var(--rednaija-primary-rgb, 231, 76, 60), 0.3);
    transition: all 0.3s ease;
}

.performer-tag-small:hover {
    background: rgba(var(--rednaija-primary-rgb, 231, 76, 60), 0.15);
    color: var(--rednaija-primary);
}

/* Updated Interaction Buttons */
.like-btn.liked {
    background: var(--rednaija-primary);
    color: #fff;
}

.favorite-btn.favorited {
    background: #e74c3c;
    color: #fff;
}

/* Updated Terms Wrapper */
.terms-wrapper {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Collapsible Sections */
.video-description.collapsed .description-content,
.comments-section.collapsed .comments-wrapper {
    display: none;
}

.video-description.expanded .expand-description svg,
.comments-section.expanded .expand-comments svg {
    transform: rotate(180deg);
}

.description-header,
.comments-header {
    cursor: pointer;
    user-select: none;
}

.description-header:hover,
.comments-header:hover {
    background: rgba(255,255,255,0.02);
}

.expand-description,
.expand-comments {
    transition: transform 0.3s ease;
}

/* Updated Description Content */
.description-content {
    padding: 20px 24px;
    animation: fadeIn 0.3s ease;
}

.comments-wrapper {
    padding: 20px 24px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--rednaija-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10001;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification.success {
    background: #27ae60;
}

.toast-notification.error {
    background: #e74c3c;
}

.toast-notification.info {
    background: #3498db;
}

/* Login Prompt Modal */
.login-prompt-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-prompt-modal.active {
    opacity: 1;
    visibility: visible;
}

.login-prompt-content {
    background: var(--rednaija-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
}

.login-prompt-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.btn-prompt-login,
.btn-prompt-cancel {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-prompt-login {
    background: var(--rednaija-primary);
    color: white;
}

.btn-prompt-cancel {
    background: #666;
    color: white;
}

.single-video-page {
    background: var(--rednaija-bg);
    min-height: 100vh;
    padding: 20px 0;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

/* Video Player Section */
.video-player-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.responsive-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh;
    background: #000;
}

.video-placeholder {
    position: relative;
    background: #1a1a1a;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.no-video-message {
    text-align: center;
    color: #fff;
}

.video-quality-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
}

.quality-tag {
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.quality-tag.4k { background: #ff6b35; }
.quality-tag.1080p { background: #e74c3c; }
.quality-tag.720p { background: #f39c12; }

/* Video Overlay Controls */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 60%, rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-overlay-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    pointer-events: auto;
}

.fullscreen-btn, .theater-mode-btn {
    background: rgba(0,0,0,0.8);
    border: none;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.fullscreen-btn:hover, .theater-mode-btn:hover {
    background: var(--rednaija-primary);
}

/* Video Information */
.video-info-section {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}

.video-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--rednaija-text);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.meta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.meta-left svg {
    width: 16px;
    height: 16px;
}

.interaction-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.like-btn, .favorite-btn, .share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--rednaija-text);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.like-btn:hover {
    background: var(--rednaija-primary);
    color: #fff;
}

.favorite-btn:hover {
    background: #e74c3c;
    color: #fff;
}

.share-btn:hover {
    background: var(--rednaija-secondary);
    color: #fff;
}

/* Performers Section */
.performers-section {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.section-title {
    color: var(--rednaija-text);
    font-size: 18px;
    margin-bottom: 12px;
}

.performers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.performer-tag {
    background: var(--rednaija-primary);
    border-radius: 20px;
    overflow: hidden;
}

.performer-tag a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.performer-tag:hover {
    background: var(--rednaija-secondary);
}

/* Taxonomy Section */
.taxonomy-section {
}

.categories-wrapper, .tags-wrapper {
    margin-bottom: 15px;
}

.categories-wrapper h4, .tags-wrapper h4 {
    color: var(--rednaija-text);
    font-size: 16px;
    margin-bottom: 8px;
}

.term-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.term-tag {
    background: none;
    color: var(--rednaija-text);
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    transition: background 0.3s ease;
}

.term-tag:hover {
    background: rgba(255,255,255,0.2);
}

/* Description Section */
.video-description {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.description-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}

.description-header h3 {
    color: var(--rednaija-text);
    margin: 0;
    font-size: 18px;
}

.expand-description {
    background: none;
    border: none;
    color: var(--rednaija-text);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.description-content {
    padding: 0 24px 24px;
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.video-description.expanded .description-content {
    max-height: none;
}

.video-description.expanded .expand-description {
    transform: rotate(180deg);
}

.description-text {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-size: 15px;
}

/* Sidebar Styles */
.video-sidebar {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.sidebar-content {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 24px;
}

.sidebar-title {
    color: var(--rednaija-text);
    font-size: 20px;
    margin: 0 0 20px 0;
    font-weight: 600;
}

/* Related Videos Grid */
.related-videos-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-video-item {
    display: flex;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.related-video-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-video-thumbnail {
    position: relative;
    flex-shrink: 0;
    width: 160px;
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
    background: #1a1a1a;
}

.related-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-video-thumbnail:hover .related-thumb {
    transform: scale(1.05);
}

.no-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    color: #666;
}

.duration-overlay {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 500;
}

.related-video-info {
    flex: 1;
    min-width: 0;
}

.related-video-title {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.related-video-title a {
    color: var(--rednaija-text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.related-video-title a:hover {
    color: var(--rednaija-primary);
}

.related-video-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.related-video-meta span {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

.related-performers {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.mini-performer {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 8px;
}

/* Popular Videos Section */
.popular-videos-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.section-subtitle {
    color: var(--rednaija-text);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.popular-videos-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popular-video-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popular-thumb {
    width: 80px;
    aspect-ratio: 16/9;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-info h5 {
    margin: 0 0 4px 0;
    font-size: 13px;
    line-height: 1.3;
}

.popular-info h5 a {
    color: var(--rednaija-text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-info h5 a:hover {
    color: var(--rednaija-primary);
}

.popular-views {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
}

/* Comments Section */
.comments-section {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}

.comments-header h3 {
    color: var(--rednaija-text);
    font-size: 18px;
    margin: 0 0 20px 0;
}

/* Share Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--rednaija-bg);
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal-header h3 {
    color: var(--rednaija-text);
    margin: 0;
    font-size: 18px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--rednaija-text);
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.modal-close:hover {
    background: rgba(255,255,255,0.1);
}

.modal-body {
    padding: 24px;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.share-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: var(--rednaija-text);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.share-option:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--rednaija-primary);
}

.share-url {
    margin-top: 15px;
}

#share-url-input {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    color: var(--rednaija-text);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-related-videos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .video-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-sidebar {
        position: static;
        max-height: none;
    }
    
    .main-related-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-videos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }
    
    .related-video-item {
        flex-direction: column;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 8px;
        padding: 12px;
        background: rgba(255,255,255,0.02);
    }
    
    .related-video-thumbnail {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 0 15px;
    }
    
    .video-info-section,
    .video-description,
    .comments-section,
    .sidebar-content,
    .main-related-videos-section {
        padding: 16px;
    }
    
    .video-title {
        font-size: 22px;
    }
    
    .video-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .meta-left {
        order: 2;
    }
    
    .interaction-buttons {
        order: 1;
        align-self: stretch;
        justify-content: space-between;
    }
    
    .like-btn, .favorite-btn, .share-btn {
        flex: 1;
        justify-content: center;
        max-width: none;
    }
    
    .performers-list {
        justify-content: center;
    }
    
    .main-related-videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .related-videos-grid {
        grid-template-columns: 1fr;
    }
    
    .popular-videos-section {
        display: none;
    }
}

@media (max-width: 480px) {
    .single-video-page {
        padding: 10px 0;
    }
    
    .video-layout {
        gap: 15px;
    }
    
    .video-title {
        font-size: 18px;
    }
    
    .meta-left {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .meta-left span {
        font-size: 12px;
    }
    
    .interaction-buttons {
        gap: 8px;
    }
    
    .like-btn, .favorite-btn, .share-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .main-related-videos-section .section-header {
        font-size: 18px;
    }
    
    .main-related-videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .main-related-info {
        padding: 8px;
    }
    
    .main-related-title {
        font-size: 13px;
    }
    
    .main-related-meta {
        font-size: 11px;
    }
    
    .related-video-thumbnail {
        aspect-ratio: 16/9;
    }
    
    .modal-content {
        margin: 10px;
        width: calc(100% - 20px);
    }
    
    .share-options {
        grid-template-columns: 1fr;
    }
    
    .video-logo-overlay img {
        max-height: 30px;
    }
    
    .video-logo-overlay .site-logo-text {
        font-size: 14px;
        padding: 4px 8px;
    }
}

/* Theater Mode */
body.theater-mode .video-layout {
    grid-template-columns: 1fr;
    max-width: none;
}

body.theater-mode .video-sidebar {
    display: none;
}

body.theater-mode .video-container {
    max-height: 85vh;
}

/* Print Styles */
@media print {
    .video-sidebar,
    .interaction-buttons,
    .video-overlay,
    .comments-section,
    .main-related-videos-section {
        display: none !important;
    }
    
    .single-video-page {
        background: white !important;
        color: black !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .video-info-section,
    .video-description,
    .sidebar-content,
    .main-related-videos-section {
        border: 2px solid var(--rednaija-primary);
    }
    
    .term-tag,
    .performer-tag {
        border: 1px solid currentColor;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Video Preview Overlay */
.video-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 6px;
}

.related-video-thumbnail:hover .video-preview-overlay,
.main-related-thumbnail:hover .video-preview-overlay {
    opacity: 1;
}

.preview-play-btn {
    background: rgba(231, 76, 60, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.related-video-thumbnail:hover .preview-play-btn,
.main-related-thumbnail:hover .preview-play-btn {
    transform: scale(1);
}

/* Enhanced Video Preview */
.responsive-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh;
    background: #000;
    object-fit: cover;
}

.responsive-video[poster] {
    background-image: url(attr(poster));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Video container hover effect */
.video-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(231, 76, 60, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.video-container:hover::before {
    opacity: 1;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 11;
    pointer-events: none;
}

.video-container:hover::after {
    opacity: 1;
}

/* Hide play button when video is playing */
.video-container.playing::before,
.video-container.playing::after {
    opacity: 0;
}