/*
Theme Name: Cliplub Theme
Theme URI: https://คลิปลับ.com
Description: Clean video theme with embed support
Version: 1.71
Author: Joom
Author URI: https://คลิปลับ.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cliplubtheme
*/

/* ========================================
   Reset & Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --vt-bg-primary: #0a0a0a;        
    --vt-bg-secondary: #141414;     
    --vt-bg-hover: #1f1f1f;        
    --vt-accent: #ff8c00;           
    --vt-accent-light: #ffa500;     
    --vt-accent-dark: #ff6500;     
    --vt-text-primary: #ffffff;
    --vt-text-secondary: #b3b3b3;
    --vt-border: #2a2a2a;
    --vt-gradient: linear-gradient(135deg, #ff8c00 0%, #ff6500 100%);
    --vt-spacing-xs: 8px;
    --vt-spacing-sm: 12px;
    --vt-spacing-md: 16px;
    --vt-spacing-lg: 24px;
    --vt-spacing-xl: 32px;
    --vt-radius-sm: 4px;
    --vt-radius-md: 8px;
    --vt-radius-lg: 12px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--vt-bg-primary);
    color: var(--vt-text-primary);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--vt-text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--vt-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Layout
======================================== */
.vt-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--vt-spacing-md);
}

.vt-main {
    min-height: calc(100vh - 200px);
    padding: var(--vt-spacing-lg) 0;
}

/* ========================================
   Header
======================================== */
.vt-header {
    background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
    border-bottom: 2px solid var(--vt-accent);
    box-shadow: 0 2px 20px rgba(255, 140, 0, 0.1);
    padding: var(--vt-spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.vt-header .vt-container {
    position: relative;
}

.vt-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--vt-spacing-md);
}

.vt-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--vt-accent);
    background: var(--vt-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

@supports not (background-clip: text) {
    .vt-logo {
        color: var(--vt-accent);
    }
}

.vt-logo a {
    display: flex;
    align-items: center;
}

.vt-logo img {
    max-height: 40px;
    width: auto;
}

/* Navigation Menu - Desktop */
.vt-nav {
    display: flex;
    justify-content: center;
    flex: 1;
}

.vt-nav-menu {
    display: block;
}

.vt-menu {
    display: flex;
    list-style: none;
    gap: var(--vt-spacing-md);
    margin: 0;
    padding: 0;
}

.vt-menu li {
    margin: 0;
}

.vt-menu a {
    font-weight: 500;
    padding: var(--vt-spacing-xs) var(--vt-spacing-sm);
    border-radius: var(--vt-radius-sm);
    display: block;
    white-space: nowrap;
}

.vt-menu a:hover {
    background-color: var(--vt-bg-hover);
    color: var(--vt-accent);
}

/* Search Bar - Desktop */
.vt-search {
    min-width: 250px;
}

.vt-search-form {
    display: flex;
    gap: var(--vt-spacing-xs);
    background-color: var(--vt-bg-primary);
    border: 1px solid var(--vt-border);
    border-radius: var(--vt-radius-md);
    padding: 4px;
}

.vt-search-form input[type="search"] {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    color: var(--vt-text-primary);
    padding: var(--vt-spacing-xs) var(--vt-spacing-sm);
    font-size: 14px;
}

.vt-search-form input[type="search"]:focus {
    outline: none;
}

.vt-search-form button {
    background: var(--vt-gradient);
    border: none;
    border-radius: var(--vt-radius-sm);
    color: #fff;
    padding: var(--vt-spacing-xs);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.vt-search-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

/* Mobile Menu Toggle */
.vt-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 4px;
}

.vt-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--vt-text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.vt-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.vt-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.vt-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Search Toggle Button */
.vt-search-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--vt-text-primary);
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s ease;
}

.vt-search-toggle:hover {
    color: var(--vt-accent);
}

/* ========================================
   Loop Header
======================================== */
.vt-loop-header {
    margin-bottom: var(--vt-spacing-xl);
    padding-bottom: var(--vt-spacing-md);
    border-bottom: 2px solid var(--vt-border);
}

.vt-loop-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--vt-spacing-xs);
    text-align: center;
}

.vt-loop-description {
    color: var(--vt-text-secondary);
    font-size: 16px;
    text-align: center;
}

/* ========================================
   Video Grid
======================================== */
.vt-video-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--vt-spacing-lg);
}

@media (max-width: 1200px) {
    .vt-video-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   Video Card
======================================== */
.vt-video-card {
    background-color: var(--vt-bg-secondary);
    border-radius: var(--vt-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.vt-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.25);
    border-color: var(--vt-accent);
}

.vt-video-card:hover .vt-video-thumbnail img {
    transform: scale(1.1);
}

.vt-video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: var(--vt-bg-hover);
    overflow: hidden;
}

.vt-video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vt-video-duration {
    position: absolute;
    bottom: var(--vt-spacing-xs);
    right: var(--vt-spacing-xs);
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--vt-text-primary);
    padding: 4px 8px;
    border-radius: var(--vt-radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.vt-video-content {
    padding: var(--vt-spacing-md);
}

.vt-video-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--vt-spacing-xs);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vt-video-meta {
    display: flex;
    align-items: center;
    gap: var(--vt-spacing-md);
    color: var(--vt-text-secondary);
    font-size: 14px;
}

.vt-video-views,
.vt-video-date {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ========================================
   Single Video Page
======================================== */
.vt-single-video {
    max-width: 1200px;
    margin: 0 auto;
}

.vt-single-header {
    margin-bottom: var(--vt-spacing-lg);
}

.vt-single-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--vt-spacing-md);
    line-height: 1.3;
}

.vt-single-meta {
    display: flex;
    align-items: center;
    gap: var(--vt-spacing-lg);
    color: var(--vt-text-secondary);
    font-size: 14px;
    padding-bottom: var(--vt-spacing-md);
    border-bottom: 1px solid var(--vt-border);
}

.vt-video-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: var(--vt-bg-secondary);
    border-radius: var(--vt-radius-lg);
    overflow: hidden;
    margin-bottom: var(--vt-spacing-lg);
}

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

.vt-single-content {
    background-color: var(--vt-bg-secondary);
    padding: var(--vt-spacing-lg);
    border-radius: var(--vt-radius-lg);
    margin-bottom: var(--vt-spacing-lg);
}

.vt-single-description {
    color: var(--vt-text-secondary);
    line-height: 1.8;
}

/* ========================================
   Pagination
======================================== */
.vt-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--vt-spacing-sm);
    margin-top: var(--vt-spacing-xl);
    padding: var(--vt-spacing-lg) 0;
    flex-wrap: wrap;
}

.vt-pagination a,
.vt-pagination span {
    padding: var(--vt-spacing-xs) var(--vt-spacing-md);
    background-color: var(--vt-bg-secondary);
    border-radius: var(--vt-radius-sm);
    min-width: 40px;
    text-align: center;
}

.vt-pagination .current {
    background-color: var(--vt-accent);
    font-weight: 600;
}

/* ========================================
   Footer
======================================== */
.vt-footer {
    background-color: var(--vt-bg-secondary);
    border-top: 1px solid var(--vt-border);
    padding: var(--vt-spacing-xl) 0;
    margin-top: var(--vt-spacing-xl);
}

.vt-footer-content {
    text-align: center;
    color: var(--vt-text-secondary);
}

.vt-footer-links {
    display: flex;
    justify-content: center;
    gap: var(--vt-spacing-lg);
    list-style: none;
    margin-bottom: var(--vt-spacing-md);
}

.vt-copyright {
    font-size: 14px;
}

/* ========================================
   Responsive - Tablet & Mobile
======================================== */
@media (max-width: 992px) {
    /* Video Grid */
    .vt-video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--vt-spacing-md);
    }
    
    /* Header Layout: [☰] [LOGO] [🔍] */
    .vt-header .vt-container {
        position: relative;
    }
    
    .vt-header-inner {
        position: relative;
        display: grid;
        grid-template-columns: 40px 1fr 40px;
        gap: var(--vt-spacing-sm);
        align-items: center;
    }
    
    /* Hamburger - ซ้าย */
    .vt-menu-toggle {
        display: flex !important;
        grid-column: 1;
        width: 40px;
        height: 40px;
        justify-self: start;
    }
    
    /* Logo - กลาง */
    .vt-logo {
        grid-column: 2;
        justify-self: center;
        text-align: center;
        color: var(--vt-accent);
        -webkit-text-fill-color: var(--vt-accent);
    }
    
    /* Search - ขวา */
    .vt-search {
        grid-column: 3;
        min-width: auto;
        width: auto;
        justify-self: end;
    }
    
    .vt-search-toggle {
        display: flex !important;
        width: 40px;
        height: 40px;
    }
    
    /* Navigation Dropdown */
    .vt-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 16px);
        background-color: var(--vt-bg-secondary);
        border: 1px solid var(--vt-border);
        border-radius: var(--vt-radius-md);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 100;
    }
    
    .vt-nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 500px;
    }
    
    .vt-nav-menu {
        padding: var(--vt-spacing-sm);
    }
    
    .vt-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .vt-menu li {
        border-bottom: 1px solid var(--vt-border);
    }
    
    .vt-menu li:last-child {
        border-bottom: none;
    }
    
    .vt-menu a {
        padding: var(--vt-spacing-md);
    }
    
    /* Search Dropdown */
    .vt-search-form {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 16px);
        background-color: var(--vt-bg-secondary);
        border: 1px solid var(--vt-border);
        border-radius: var(--vt-radius-md);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        padding: var(--vt-spacing-md);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 100;
    }
    
    .vt-search-form.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 150px;
        display: flex;
    }
    
    .vt-search-form input[type="search"] {
        font-size: 16px;
        padding: var(--vt-spacing-sm);
    }
    
    .vt-search-form button {
        padding: var(--vt-spacing-sm);
    }
}

@media (max-width: 768px) {
    .vt-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vt-logo {
        font-size: 18px;
    }
    
    .vt-loop-title {
        font-size: 1.4rem;
    }
    
    .vt-single-title {
        font-size: 22px;
    }
    
    .vt-footer-links {
        gap: var(--vt-spacing-sm);
    }
}

@media (max-width: 480px) {
    .vt-video-grid {
        grid-template-columns: 1fr;
    }
    
    .vt-logo {
        font-size: 16px;
    }
}

/* Popular Tags Styles */
.vt-popular-tags-wrapper {
    position: relative;
    margin-bottom: 30px;
    padding: 0 50px;
}

.vt-popular-tags-container {
    overflow: hidden;
    position: relative;
}

.vt-popular-tags {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px 0;
}

.vt-popular-tags::-webkit-scrollbar {
    display: none;
}

.vt-tag-btn {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.vt-tag-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.vt-tags-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.vt-tags-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
}

.vt-tags-nav-prev {
    left: 0;
}

.vt-tags-nav-next {
    right: 0;
}

.vt-tags-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .vt-popular-tags-wrapper {
        padding: 0 40px;
    }
    
    .vt-tags-nav {
        width: 35px;
        height: 35px;
    }
    
    .vt-tag-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
}

/* Popular Tags - ซ่อนปุ่มใน Mobile/Tablet */
@media (max-width: 1024px) {
    .vt-tags-nav {
        display: none !important;
    }
    
    .vt-popular-tags-wrapper {
        padding: 0;
    }
}


.vt-single-video {
    max-width: 1200px;
    margin: 0 auto;
}

/* Video Player */
.vt-video-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: var(--vt-bg-secondary);
    border-radius: var(--vt-radius-lg);
    overflow: hidden;
    margin-bottom: var(--vt-spacing-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.vt-video-player iframe,
.vt-video-player img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

/* Header */
.vt-single-header {
    margin-bottom: var(--vt-spacing-lg);
}

.vt-single-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--vt-text-primary);
}

/* Info Bar - Stats & Actions */
.vt-video-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--vt-spacing-md);
    background-color: var(--vt-bg-secondary);
    border-radius: var(--vt-radius-lg);
    margin-bottom: var(--vt-spacing-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Stats */
.vt-video-stats {
    display: flex;
    gap: var(--vt-spacing-lg);
    flex-wrap: wrap;
}

.vt-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--vt-text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.vt-stat-item svg {
    flex-shrink: 0;
}

/* Actions - Desktop */
.vt-video-actions-desktop {
    display: flex;
    gap: var(--vt-spacing-sm);
}

.vt-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--vt-bg-hover);
    border: 2px solid transparent;
    border-radius: var(--vt-radius-md);
    color: var(--vt-text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vt-action-btn:hover {
    background-color: var(--vt-bg-primary);
    border-color: var(--vt-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.2);
}

.vt-like-btn.liked {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 140, 0, 0.2));
    border-color: var(--vt-accent);
    color: var(--vt-accent);
}

/* Share Menu */
.vt-share-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vt-share-menu.active {
    display: flex;
    opacity: 1;
}

.vt-share-menu-content {
    background-color: var(--vt-bg-secondary);
    border-radius: var(--vt-radius-lg);
    padding: var(--vt-spacing-lg);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.vt-share-menu.active .vt-share-menu-content {
    transform: scale(1);
}

.vt-share-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--vt-spacing-lg);
    padding-bottom: var(--vt-spacing-md);
    border-bottom: 1px solid var(--vt-border);
}

.vt-share-menu-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--vt-text-primary);
}

.vt-share-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--vt-bg-hover);
    border: none;
    border-radius: 50%;
    color: var(--vt-text-primary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vt-share-close:hover {
    background-color: var(--vt-accent);
    transform: rotate(90deg);
}

.vt-share-menu-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--vt-spacing-md);
}

.vt-share-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: var(--vt-spacing-md);
    background-color: var(--vt-bg-hover);
    border: 2px solid transparent;
    border-radius: var(--vt-radius-md);
    color: var(--vt-text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vt-share-item:hover {
    border-color: currentColor;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.vt-share-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--vt-bg-secondary);
}

.vt-share-facebook { color: #1877f2; }
.vt-share-facebook:hover { background-color: rgba(24, 119, 242, 0.1); }

.vt-share-twitter { color: #1da1f2; }
.vt-share-twitter:hover { background-color: rgba(29, 161, 242, 0.1); }

.vt-share-telegram { color: #0088cc; }
.vt-share-telegram:hover { background-color: rgba(0, 136, 204, 0.1); }

.vt-share-line { color: #00b900; }
.vt-share-line:hover { background-color: rgba(0, 185, 0, 0.1); }

.vt-share-copy { color: var(--vt-accent); }
.vt-share-copy:hover { background-color: rgba(255, 140, 0, 0.1); }

/* Taxonomy */
.vt-video-taxonomy {
    padding: var(--vt-spacing-lg);
    background-color: var(--vt-bg-secondary);
    border-radius: var(--vt-radius-lg);
    margin-bottom: var(--vt-spacing-lg);
}

.vt-taxonomy-group {
    display: flex;
    align-items: flex-start;
    gap: var(--vt-spacing-md);
    margin-bottom: var(--vt-spacing-md);
}

.vt-taxonomy-group:last-child {
    margin-bottom: 0;
}

.vt-taxonomy-label {
    font-weight: 600;
    color: var(--vt-text-secondary);
    font-size: 14px;
    white-space: nowrap;
    padding-top: 6px;
}

.vt-taxonomy-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vt-taxonomy-tag {
    padding: 6px 12px;
    background-color: var(--vt-bg-hover);
    border: 1px solid var(--vt-border);
    border-radius: var(--vt-radius-sm);
    color: var(--vt-text-primary);
    font-size: 13px;
    transition: all 0.2s ease;
}

.vt-taxonomy-tag:hover {
    background-color: var(--vt-accent);
    border-color: var(--vt-accent);
    color: #000;
}

/* Description */
.vt-video-description {
    padding: var(--vt-spacing-lg);
    background-color: var(--vt-bg-secondary);
    border-radius: var(--vt-radius-lg);
    margin-bottom: var(--vt-spacing-xl);
}

.vt-video-description h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--vt-spacing-md);
    color: var(--vt-text-primary);
}

.vt-description-content {
    color: var(--vt-text-secondary);
    line-height: 1.8;
}

.vt-description-content p {
    margin-bottom: var(--vt-spacing-md);
}

/* Related Videos */
.vt-related-videos {
    margin-top: var(--vt-spacing-xl);
    padding-top: var(--vt-spacing-xl);
    border-top: 2px solid var(--vt-border);
}

.vt-section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--vt-spacing-lg);
    color: var(--vt-text-primary);
}

.vt-mobile-action-btn:active {
    transform: scale(0.95);
}

.vt-mobile-like-btn.liked {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 140, 0, 0.2));
    border-color: var(--vt-accent);
    color: var(--vt-accent);
}

/* ========================================
   Responsive
======================================== */

/* Tablet */
@media (max-width: 992px) {
    .vt-video-info-bar {
        flex-direction: column;
        gap: var(--vt-spacing-md);
        align-items: stretch;
    }
    
    .vt-video-stats {
        width: 100%;
        justify-content: flex-start;
    }
    
    .vt-video-actions-desktop {
        width: 100%;
        justify-content: flex-start;
    }
    
    .vt-action-btn {
        flex: 0 1 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .vt-single-title {
        font-size: 22px;
    }
    
    .vt-video-info-bar {
        padding: var(--vt-spacing-sm);
    }
    
    .vt-video-stats {
        flex-wrap: wrap;
        gap: var(--vt-spacing-md);
    }
    
    .vt-stat-item {
        font-size: 13px;
    }
    
    .vt-video-actions-desktop {
        flex-direction: row;
        gap: var(--vt-spacing-sm);
    }
    
    .vt-action-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
    
    .vt-taxonomy-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .vt-share-menu-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .vt-single-title {
        font-size: 18px;
    }
    
    .vt-video-stats {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

.vt-breadcrumb {
    margin-bottom: var(--vt-spacing-lg);
    font-size: 14px;
}

.vt-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 12px 16px;
    background-color: var(--vt-bg-secondary);
    border-radius: var(--vt-radius-md);
    margin: 0;
}

.vt-breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vt-breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--vt-text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.vt-breadcrumb-link:hover {
    color: var(--vt-accent);
}

.vt-breadcrumb-link:hover .vt-breadcrumb-home-icon {
    transform: scale(1.1);
}

.vt-breadcrumb-home-icon {
    color: var(--vt-accent);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.vt-breadcrumb-separator {
    color: var(--vt-text-secondary);
    opacity: 0.5;
    user-select: none;
}

.vt-breadcrumb-current {
    color: var(--vt-text-primary);
    font-weight: 500;
}

.vt-breadcrumb-current span:last-child {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Breadcrumb - Mobile */
@media (max-width: 768px) {
    .vt-breadcrumb {
        font-size: 13px;
    }
    
    .vt-breadcrumb-list {
        padding: 10px 12px;
    }
    
    .vt-breadcrumb-home-icon {
        width: 16px;
        height: 16px;
    }
    
    .vt-breadcrumb-current span:last-child {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .vt-breadcrumb {
        font-size: 12px;
    }
    
    .vt-breadcrumb-list {
        padding: 8px 10px;
        gap: 6px;
    }
    
    .vt-breadcrumb-home-icon {
        width: 14px;
        height: 14px;
    }
    
    .vt-breadcrumb-current span:last-child {
        max-width: 100px;
    }
}

.footer-cliplub {
    border-top: 2px solid #ff8c00;
    padding: 4.5rem 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.footer-cliplub-content {
    margin: 0 auto;
}

.footer-cliplub-title {
    color: #ff8c00;
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-cliplub-text p {
    color: #c0c0c0;
    font-size: 14px;
    line-height: 1.9;
    text-align: center;
    font-weight: 400;
}

.footer-cliplub-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer-cliplub {
        padding: 3rem 0;
    }
    
    .footer-cliplub-content {
        padding: 0 1.5rem;
    }
    
    .footer-cliplub-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        letter-spacing: 0.5px;
    }
    
    .footer-cliplub-title::after {
        width: 60px;
        height: 3px;
    }
    
    .footer-cliplub-text p {
        font-size: 0.95rem;
        line-height: 1.75;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-cliplub {
        padding: 2.5rem 0;
    }
    
    .footer-cliplub-content {
        padding: 0 1rem;
    }
    
    .footer-cliplub-title {
        font-size: 1.4rem;
    }
    
    .footer-cliplub-text p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}


.vt-view-more-wrapper {
    margin-top: 2.5rem;
    text-align: center;
    padding: 1rem 0;
}

.vt-view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #ff8c00;
    color: #000;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.vt-view-more-btn:hover {
    background: #ff9e1a;
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.vt-view-more-btn svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
    stroke: #000;
}

.vt-view-more-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .vt-view-more-wrapper {
        margin-top: 2rem;
    }
    
    .vt-view-more-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .vt-view-more-btn svg {
        width: 18px;
        height: 18px;
    }
}

.vt-breadcrumb {
    background: var(--vt-bg-secondary);
    border-radius: 8px;
    padding: 0.875rem 1.25rem;
    margin-bottom: 1.5rem;
}

.vt-breadcrumb > span {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.vt-breadcrumb > span > span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.vt-breadcrumb a {
    color: var(--vt-text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.vt-breadcrumb a:hover {
    color: var(--vt-accent);
    background: rgba(255, 102, 0, 0.1);
}

.vt-breadcrumb .breadcrumb_last {
    color: var(--vt-accent);
    font-weight: 500;
    max-width: 550px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

.vt-breadcrumb > span > span + *:not(span) {
    color: var(--vt-text-secondary);
    margin: 0 0.25rem;
    user-select: none;
}

.vt-breadcrumb > span > span:first-child a::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b0b0b0' stroke-width='2'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin-right: 4px;
}

.vt-breadcrumb > span > span:first-child a:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff6600' stroke-width='2'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .vt-breadcrumb {
        padding: 0.75rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .vt-breadcrumb > span {
        font-size: 0.8125rem;
        gap: 0.375rem;
    }
    
    .vt-breadcrumb a {
        padding: 0.2rem 0.4rem;
    }
    
    .vt-breadcrumb .breadcrumb_last {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .vt-breadcrumb {
        padding: 0.625rem 0.875rem;
        border-radius: 6px;
    }
    
    .vt-breadcrumb > span {
        font-size: 0.75rem;
    }
    
    .vt-breadcrumb .breadcrumb_last {
        max-width: 140px;
    }
}

@media (max-width: 360px) {
    .vt-breadcrumb .breadcrumb_last {
        max-width: 100px;
    }
}