/* ===================================
   CSS Variables & Theme
   =================================== */
:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

[data-theme="dark"] {
    --bg: #000000;
    --bg-elevated: #0f0f0f;
    --bg-card: #1a1a1a;
    --bg-hover: #252525;
    --text: #e8e8f0;
    --text-muted: #9999aa;
    --accent: #ff1744;
    --accent-hover: #ff4569;
    --border: #2a2a2a;
    --shadow: rgba(0, 0, 0, 0.5);
    --overlay: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] {
    --bg: #f5f5f7;
    --bg-elevated: #ffffff;
    --bg-card: #ffffff;
    --bg-hover: #f0f0f2;
    --text: #1a1a1f;
    --text-muted: #666677;
    --accent: #ff1744;
    --accent-hover: #ff4569;
    --border: #e0e0e8;
    --shadow: rgba(0, 0, 0, 0.1);
    --overlay: rgba(0, 0, 0, 0.5);
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    flex: 1;
    padding-top: 80px;
}

/* ===================================
   Header
   =================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.site-header .container {
    max-width: 1320px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
    padding: 0;
    max-width: 1320px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.logo i {
    font-size: 28px;
}

.header-nav {
    display: flex;
    gap: 5px;
    margin: 0 auto;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: var(--bg-hover);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.search-form:focus-within {
    border-color: var(--accent);
}

.search-form input {
    padding: 8px 15px;
    border: none;
    background: transparent;
    color: var(--text);
    outline: none;
    width: 200px;
}

.search-form button {
    padding: 8px 15px;
    color: var(--text-muted);
    transition: color 0.2s;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-muted);
}

.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text);
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 50px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, #9c27b0 100%);
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px var(--shadow);
}

.hero-description {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 25px;
    max-width: 600px;
    text-shadow: 0 1px 5px var(--shadow);
}

.hero-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--text-muted);
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.2s;
    width: fit-content;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 23, 68, 0.3);
}

/* ===================================
   Section
   =================================== */
.section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--accent);
}

.view-all-link {
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.view-all-link:hover {
    gap: 10px;
}

/* ===================================
   Video Grid
   =================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.video-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--accent);
}

.video-thumbnail {
    position: relative;
    padding-top: 56.25%;
    background: var(--bg-hover);
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.video-quality {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--accent);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.video-info {
    padding: 15px;
}

.video-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===================================
   Watch Page
   =================================== */
.watch-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-bottom: 30px;
}

.watch-main {
    min-width: 0;
}

.video-player {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-header {
    margin-bottom: 20px;
}

.video-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.video-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}

.video-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
}

.video-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.tab-btn {
    padding: 12px 20px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.video-description {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    padding: 6px 14px;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.tag:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.preview-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.preview-image {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

.preview-image:hover {
    transform: scale(1.05);
}

.preview-image img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

/* ===================================
   Sidebar
   =================================== */
.watch-sidebar {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sidebar-video-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-video-card {
    display: flex;
    gap: 12px;
    background: var(--bg-card);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.sidebar-video-card:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
}

.sidebar-video-thumbnail {
    position: relative;
    width: 120px;
    height: 68px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-video-info {
    flex: 1;
    min-width: 0;
}

.sidebar-video-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-video-meta {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===================================
   Comments
   =================================== */
.comments-section {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}

.comments-header {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.comment-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment {
    padding: 15px;
    background: var(--bg);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 600;
}

.comment-date {
    font-size: 13px;
    color: var(--text-muted);
}

.comment-text {
    line-height: 1.6;
}

.no-comments {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

/* ===================================
   Pagination
   =================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.page-link:hover,
.page-link.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.page-link.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* ===================================
   Footer
   =================================== */
.site-footer {
    background: var(--bg-elevated);
    border-top: 2px solid var(--border);
    margin-top: 80px;
    padding: 60px 0 40px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, #9c27b0 50%, var(--accent) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
    transition: opacity 0.2s;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo i {
    font-size: 30px;
}

.footer-column p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
    max-width: 400px;
    margin-bottom: 15px;
}

.footer-column p:last-of-type {
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--text-muted);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-weight: 500;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s;
    color: var(--accent);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.social-link:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 23, 68, 0.3);
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link:hover i {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
    background: var(--bg);
    margin: 0 -20px -40px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
}

.footer-bottom p {
    margin-bottom: 8px;
    font-weight: 500;
}

.disclaimer {
    font-size: 13px;
    opacity: 0.8;
    font-style: italic;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.disclaimer i {
    color: #ffa726;
}

.footer-stats {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.footer-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    padding: 8px 12px;
    background: var(--bg);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.footer-stats span:hover {
    border-color: var(--accent);
    color: var(--text);
}

.footer-stats i {
    color: var(--accent);
    font-size: 12px;
}

.footer-column h3 i {
    margin-right: 8px;
    color: var(--accent);
}

.footer-links a i {
    width: 16px;
    text-align: center;
    margin-right: 8px;
    color: var(--accent);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-links a:hover i {
    opacity: 1;
}

/* ===================================
   Legal Pages
   =================================== */
.legal-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.legal-page .last-updated {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-page li {
    margin-bottom: 8px;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .watch-container {
        grid-template-columns: 1fr;
    }

    .watch-sidebar {
        position: static;
        max-height: none;
    }

    .sidebar-video-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .search-form input {
        width: 150px;
    }

    .hero-section {
        height: 400px;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .section-title {
        font-size: 24px;
    }

}

.page-link:hover,
.page-link.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.page-link.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* ===================================
   Footer
   =================================== */
.site-footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    margin-top: 80px;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-column p {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.7;
}

/* ===================================
   Legal Pages
   =================================== */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.legal-page .last-updated {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-page li {
    margin-bottom: 8px;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .watch-container {
        grid-template-columns: 1fr;
    }

    .watch-sidebar {
        position: static;
        max-height: none;
    }

    .sidebar-video-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .search-form input {
        width: 150px;
    }

    .hero-section {
        height: 400px;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .video-header h1 {
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        gap: 10px;
    }

    .logo span {
        display: none;
    }

    .search-form {
        display: none;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .site-footer {
        background: var(--bg-elevated);
        border-top: 1px solid var(--border);
        margin-top: 80px;
        padding: 50px 0 30px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-column h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .footer-column p {
        color: var(--text-muted);
        line-height: 1.8;
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: var(--text-muted);
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: var(--accent);
    }

    .social-links {
        display: flex;
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-card);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.2s;
    }

    .social-link:hover {
        background: var(--accent);
        color: white;
        transform: translateY(-3px);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid var(--border);
        color: var(--text-muted);
        font-size: 14px;
    }

    .footer-bottom p {
        margin-bottom: 5px;
    }

    .disclaimer {
        font-size: 12px;
        opacity: 0.7;
    }

    /* ===================================
   Legal Pages
   =================================== */
    .legal-page {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .legal-page h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .legal-page .last-updated {
        color: var(--text-muted);
        margin-bottom: 30px;
    }

    .legal-page h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .legal-page p {
        margin-bottom: 15px;
        line-height: 1.8;
    }

    .legal-page ul {
        margin-left: 30px;
        margin-bottom: 15px;
    }

    .legal-page li {
        margin-bottom: 8px;
    }

    /* ===================================
   Responsive Design
   =================================== */
    @media (max-width: 1024px) {
        .watch-container {
            grid-template-columns: 1fr;
        }

        .watch-sidebar {
            position: static;
            max-height: none;
        }

        .sidebar-video-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .header-nav {
            display: none;
        }

        .mobile-menu-toggle {
            display: flex;
        }

        .search-form input {
            width: 150px;
        }

        .hero-section {
            height: 400px;
        }

        .hero-content {
            padding: 30px 20px;
        }

        .hero-title {
            font-size: 32px;
        }

        .hero-description {
            font-size: 16px;
        }

        .video-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .section-title {
            font-size: 24px;
        }

        .video-header h1 {
            font-size: 24px;
        }
    }

    @media (max-width: 480px) {
        .header-content {
            gap: 10px;
        }

        .logo span {
            display: none;
        }

        .search-form {
            display: none;
        }

        .hero-section {
            height: 300px;
        }

        .hero-title {
            font-size: 24px;
        }

        .video-grid {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

    /* ===================================
   Utility Classes
   =================================== */
    .text-center {
        text-align: center;
    }

    .mt-20 {
        margin-top: 20px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: var(--text-muted);
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: var(--accent);
    }

    .social-links {
        display: flex;
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-card);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.2s;
    }

    .social-link:hover {
        background: var(--accent);
        color: white;
        transform: translateY(-3px);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid var(--border);
        color: var(--text-muted);
        font-size: 14px;
    }

    .footer-bottom p {
        margin-bottom: 5px;
    }

    .disclaimer {
        font-size: 12px;
        opacity: 0.7;
    }

    /* ===================================
   Legal Pages
   =================================== */
    .legal-page {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .legal-page h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .legal-page .last-updated {
        color: var(--text-muted);
        margin-bottom: 30px;
    }

    .legal-page h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .legal-page p {
        margin-bottom: 15px;
        line-height: 1.8;
    }

    .legal-page ul {
        margin-left: 30px;
        margin-bottom: 15px;
    }

    .legal-page li {
        margin-bottom: 8px;
    }

    /* ===================================
   Responsive Design
   =================================== */
    @media (max-width: 1024px) {
        .watch-container {
            grid-template-columns: 1fr;
        }

        .watch-sidebar {
            position: static;
            max-height: none;
        }

        .sidebar-video-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .header-nav {
            display: none;
        }

        .mobile-menu-toggle {
            display: flex;
        }

        .search-form input {
            width: 150px;
        }

        .hero-section {
            height: 400px;
        }

        .hero-content {
            padding: 30px 20px;
        }

        .hero-title {
            font-size: 32px;
        }

        .hero-description {
            font-size: 16px;
        }

        .video-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .section-title {
            font-size: 24px;
        }

        .video-header h1 {
            font-size: 24px;
        }
    }

    @media (max-width: 480px) {
        .header-content {
            gap: 10px;
        }

        .logo span {
            display: none;
        }

        .search-form {
            display: none;
        }

        .hero-section {
            height: 300px;
        }

        .hero-title {
            font-size: 24px;
        }

        .video-grid {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

    /* ===================================
   Utility Classes
   =================================== */
    .text-center {
        text-align: center;
    }

    .mt-20 {
        margin-top: 20px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: var(--text-muted);
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: var(--accent);
    }

    .social-links {
        display: flex;
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-card);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.2s;
    }

    .social-link:hover {
        background: var(--accent);
        color: white;
        transform: translateY(-3px);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid var(--border);
        color: var(--text-muted);
        font-size: 14px;
    }

    .footer-bottom p {
        margin-bottom: 5px;
    }

    .disclaimer {
        font-size: 12px;
        opacity: 0.7;
    }

    /* ===================================
   Legal Pages
   =================================== */
    .legal-page {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .legal-page h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .legal-page .last-updated {
        color: var(--text-muted);
        margin-bottom: 30px;
    }

    .legal-page h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .legal-page p {
        margin-bottom: 15px;
        line-height: 1.8;
    }

    .legal-page ul {
        margin-left: 30px;
        margin-bottom: 15px;
    }

    .legal-page li {
        margin-bottom: 8px;
    }

    /* ===================================
   Responsive Design
   =================================== */
    @media (max-width: 1024px) {
        .watch-container {
            grid-template-columns: 1fr;
        }

        .watch-sidebar {
            position: static;
            max-height: none;
        }

        .sidebar-video-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .header-nav {
            display: none;
        }

        .mobile-menu-toggle {
            display: flex;
        }

        .search-form input {
            width: 150px;
        }

        .hero-section {
            height: 400px;
        }

        .hero-content {
            padding: 30px 20px;
        }

        .hero-title {
            font-size: 32px;
        }

        .hero-description {
            font-size: 16px;
        }

        .video-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .section-title {
            font-size: 24px;
        }

        .video-header h1 {
            font-size: 24px;
        }
    }

    @media (max-width: 480px) {
        .header-content {
            gap: 10px;
        }

        .logo span {
            display: none;
        }

        .search-form {
            display: none;
        }

        .hero-section {
            height: 300px;
        }

        .hero-title {
            font-size: 24px;
        }

        .video-grid {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

    /* ===================================
   Utility Classes
   =================================== */
    .text-center {
        text-align: center;
    }

    .mt-20 {
        margin-top: 20px;
    }

    .mb-20 {
        margin-bottom: 20px;
    }

    .footer-links a {
        color: var(--text-muted);
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: var(--accent);
    }

    .social-links {
        display: flex;
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-card);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.2s;
    }

    .social-link:hover {
        background: var(--accent);
        color: white;
        transform: translateY(-3px);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid var(--border);
        color: var(--text-muted);
        font-size: 14px;
    }

    .footer-bottom p {
        margin-bottom: 5px;
    }

    .disclaimer {
        font-size: 12px;
        opacity: 0.7;
    }

    /* ===================================
   Legal Pages
   =================================== */
    .legal-page {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .legal-page h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .legal-page .last-updated {
        color: var(--text-muted);
        margin-bottom: 30px;
    }

    .legal-page h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .legal-page p {
        margin-bottom: 15px;
        line-height: 1.8;
    }

    .legal-page ul {
        margin-left: 30px;
        margin-bottom: 15px;
    }

    .legal-page li {
        margin-bottom: 8px;
    }

    /* ===================================
   Responsive Design
   =================================== */
    @media (max-width: 1024px) {
        .watch-container {
            grid-template-columns: 1fr;
        }

        .watch-sidebar {
            position: static;
            max-height: none;
        }

        .sidebar-video-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .header-nav {
            display: none;
        }

        .mobile-menu-toggle {
            display: flex;
        }

        .search-form input {
            width: 150px;
        }

        .hero-section {
            height: 400px;
        }

        .hero-content {
            padding: 30px 20px;
        }

        .hero-title {
            font-size: 32px;
        }

        .hero-description {
            font-size: 16px;
        }

        .video-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .section-title {
            font-size: 24px;
        }

        .video-header h1 {
            font-size: 24px;
        }
    }

    @media (max-width: 480px) {
        .header-content {
            gap: 10px;
        }

        .logo span {
            display: none;
        }

        .search-form {
            display: none;
        }

        .hero-section {
            height: 300px;
        }

        .hero-title {
            font-size: 24px;
        }

        .video-grid {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

    /* ===================================
   Utility Classes
   =================================== */
    .text-center {
        text-align: center;
    }

    .mt-20 {
        margin-top: 20px;
    }

    .mb-20 {
        margin-bottom: 20px;
    }

    .footer-links a {
        color: var(--text-muted);
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: var(--accent);
    }

    .social-links {
        display: flex;
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-card);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.2s;
    }

    .social-link:hover {
        background: var(--accent);
        color: white;
        transform: translateY(-3px);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid var(--border);
        color: var(--text-muted);
        font-size: 14px;
    }

    .footer-bottom p {
        margin-bottom: 5px;
    }

    .disclaimer {
        font-size: 12px;
        opacity: 0.7;
    }

    /* ===================================
   Legal Pages
   =================================== */
    .legal-page {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .legal-page h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .legal-page .last-updated {
        color: var(--text-muted);
        margin-bottom: 30px;
    }

    .legal-page h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .legal-page p {
        margin-bottom: 15px;
        line-height: 1.8;
    }

    .legal-page ul {
        margin-left: 30px;
        margin-bottom: 15px;
    }

    .legal-page li {
        margin-bottom: 8px;
    }

    /* ===================================
   Responsive Design
   =================================== */
    @media (max-width: 1024px) {
        .watch-container {
            grid-template-columns: 1fr;
        }

        .watch-sidebar {
            position: static;
            max-height: none;
        }

        .sidebar-video-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .header-nav {
            display: none;
        }

        .mobile-menu-toggle {
            display: flex;
        }

        .search-form input {
            width: 150px;
        }

        .hero-section {
            height: 400px;
        }

        .hero-content {
            padding: 30px 20px;
        }

        .hero-title {
            font-size: 32px;
        }

        .hero-description {
            font-size: 16px;
        }

        .video-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .section-title {
            font-size: 24px;
        }

        .video-header h1 {
            font-size: 24px;
        }
    }

    @media (max-width: 480px) {
        .header-content {
            gap: 10px;
        }

        .logo span {
            display: none;
        }

        .search-form {
            display: none;
        }

        .hero-section {
            height: 300px;
        }

        .hero-title {
            font-size: 24px;
        }

        .video-grid {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

    /* ===================================
   Utility Classes
   =================================== */
    .text-center {
        text-align: center;
    }

    .mt-20 {
        margin-top: 20px;
    }

    .mb-20 {
        margin-bottom: 20px;
    }

    .footer-links a {
        color: var(--text-muted);
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: var(--accent);
    }

    .social-links {
        display: flex;
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-card);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.2s;
    }

    .social-link:hover {
        background: var(--accent);
        color: white;
        transform: translateY(-3px);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid var(--border);
        color: var(--text-muted);
        font-size: 14px;
    }

    .footer-bottom p {
        margin-bottom: 5px;
    }

    .disclaimer {
        font-size: 12px;
        opacity: 0.7;
    }

    /* ===================================
   Legal Pages
   =================================== */
    .legal-page {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .legal-page h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .legal-page .last-updated {
        color: var(--text-muted);
        margin-bottom: 30px;
    }

    .legal-page h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .legal-page p {
        margin-bottom: 15px;
        line-height: 1.8;
    }

    .legal-page ul {
        margin-left: 30px;
        margin-bottom: 15px;
    }

    .legal-page li {
        margin-bottom: 8px;
    }

    /* ===================================
   Responsive Design
   =================================== */
    @media (max-width: 1024px) {
        .watch-container {
            grid-template-columns: 1fr;
        }

        .watch-sidebar {
            position: static;
            max-height: none;
        }

        .sidebar-video-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .header-nav {
            display: none;
        }

        .mobile-menu-toggle {
            display: flex;
        }

        .search-form input {
            width: 150px;
        }

        .hero-section {
            height: 400px;
        }

        .hero-content {
            padding: 30px 20px;
        }

        .hero-title {
            font-size: 32px;
        }

        .hero-description {
            font-size: 16px;
        }

        .video-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .section-title {
            font-size: 24px;
        }

        .video-header h1 {
            font-size: 24px;
        }
    }

    @media (max-width: 480px) {
        .header-content {
            gap: 10px;
        }

        .logo span {
            display: none;
        }

        .search-form {
            display: none;
        }

        .hero-section {
            height: 300px;
        }

        .hero-title {
            font-size: 24px;
        }

        .video-grid {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

    /* ===================================
   Utility Classes
   =================================== */
    .text-center {
        text-align: center;
    }

    .mt-20 {
        margin-top: 20px;
    }

    .hidden {
        display: none;
    }
}