/* Nexus Template - 干净利落 现代风格 功能多样化 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nexus-primary: #6366f1;
    --nexus-primary-dark: #4f46e5;
    --nexus-primary-light: #818cf8;
    --nexus-secondary: #8b5cf6;
    --nexus-accent: #ec4899;
    --nexus-bg: #f8fafc;
    --nexus-surface: #ffffff;
    --nexus-text: #1e293b;
    --nexus-text-secondary: #64748b;
    --nexus-text-light: #94a3b8;
    --nexus-border: #e2e8f0;
    --nexus-border-light: #f1f5f9;
    --nexus-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --nexus-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --nexus-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --nexus-shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --nexus-radius: 12px;
    --nexus-radius-sm: 8px;
    --nexus-radius-lg: 16px;
    --nexus-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.nexus-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--nexus-bg);
    color: var(--nexus-text);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.nexus-header {
    background: var(--nexus-surface);
    box-shadow: var(--nexus-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(135deg, var(--nexus-primary) 0%, var(--nexus-secondary) 100%);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.info-item {
    opacity: 0.9;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.action-link {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: var(--nexus-transition);
}

.action-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.divider {
    opacity: 0.5;
}

.header-main {
    padding: 1rem 0;
}

.header-main-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--nexus-text);
    transition: var(--nexus-transition);
    flex-shrink: 0;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--nexus-primary) 0%, var(--nexus-secondary) 100%);
    border-radius: var(--nexus-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--nexus-shadow-md);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nexus-text);
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--nexus-text-secondary);
}

.main-nav {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    flex-wrap: wrap;
    min-width: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    text-decoration: none;
    color: var(--nexus-text-secondary);
    border-radius: var(--nexus-radius-sm);
    transition: var(--nexus-transition);
    font-weight: 500;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background: var(--nexus-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--nexus-shadow-md);
}

.nav-icon {
    font-size: 1.1rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.search-form {
    position: relative;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: var(--nexus-bg);
    border: 2px solid var(--nexus-border);
    border-radius: var(--nexus-radius);
    padding: 0.5rem 1rem;
    transition: var(--nexus-transition);
    min-width: 280px;
}

.search-form.focused .search-wrapper {
    border-color: var(--nexus-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--nexus-text);
    font-size: 0.9rem;
    outline: none;
    min-width: 0;
}

.search-input::placeholder {
    color: var(--nexus-text-light);
}

.search-btn {
    background: transparent;
    border: none;
    color: var(--nexus-primary);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    transition: var(--nexus-transition);
}

.search-btn:hover {
    color: var(--nexus-primary-dark);
    transform: scale(1.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--nexus-text);
    border-radius: 2px;
    transition: var(--nexus-transition);
}

/* Hero Slider */
.nexus-hero {
    margin-bottom: 3rem;
    position: relative;
}

.hero-slider {
    position: relative;
    height: 500px;
    border-radius: var(--nexus-radius-lg);
    overflow: hidden;
    box-shadow: var(--nexus-shadow-xl);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
    position: relative;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--nexus-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--nexus-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
}

.hero-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-btn {
    background: var(--nexus-primary);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: var(--nexus-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--nexus-transition);
    box-shadow: var(--nexus-shadow-lg);
}

.hero-btn:hover {
    background: var(--nexus-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--nexus-shadow-xl);
}

.hero-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.hero-prev,
.hero-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--nexus-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-dots {
    display: flex;
    gap: 0.5rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--nexus-transition);
    padding: 0;
}

.hero-dot.active {
    background: white;
    width: 24px;
    border-radius: 5px;
}

/* Categories */
.nexus-categories {
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--nexus-surface);
    border: 2px solid var(--nexus-border);
    border-radius: var(--nexus-radius);
    text-decoration: none;
    color: var(--nexus-text);
    transition: var(--nexus-transition);
    box-shadow: var(--nexus-shadow);
}

.category-card:hover {
    border-color: var(--nexus-primary);
    transform: translateY(-4px);
    box-shadow: var(--nexus-shadow-lg);
}

.category-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.category-info {
    flex: 1;
    min-width: 0;
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--nexus-text);
}

.category-desc {
    font-size: 0.875rem;
    color: var(--nexus-text-secondary);
}

.category-arrow {
    font-size: 1.25rem;
    color: var(--nexus-text-light);
    transition: var(--nexus-transition);
}

.category-card:hover .category-arrow {
    color: var(--nexus-primary);
    transform: translateX(4px);
}

/* Sections */
.nexus-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--nexus-text);
}

.title-icon {
    font-size: 1.5rem;
}

.section-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--nexus-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--nexus-transition);
}

.section-more:hover {
    color: var(--nexus-primary-dark);
    transform: translateX(4px);
}

.section-more span {
    transition: var(--nexus-transition);
}

.section-more:hover span {
    transform: translateX(4px);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.video-card {
    background: var(--nexus-surface);
    border-radius: var(--nexus-radius);
    overflow: hidden;
    transition: var(--nexus-transition);
    box-shadow: var(--nexus-shadow);
    border: 1px solid var(--nexus-border-light);
    opacity: 0;
    transform: translateY(20px);
}

.video-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--nexus-shadow-xl);
    border-color: var(--nexus-primary);
}

.card-thumb {
    position: relative;
    display: block;
    padding-top: 56.25%;
    overflow: hidden;
    background: var(--nexus-bg);
}

.card-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.video-card:hover .card-thumb img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--nexus-transition);
}

.video-card:hover .card-overlay {
    opacity: 1;
}

.play-icon {
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--nexus-primary);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--nexus-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--nexus-shadow-md);
}

.card-time {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--nexus-radius-sm);
    font-size: 0.75rem;
    z-index: 2;
}

.card-info {
    padding: 1.25rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.card-title a {
    color: var(--nexus-text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--nexus-transition);
}

.card-title a:hover {
    color: var(--nexus-primary);
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.meta-tag {
    background: var(--nexus-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--nexus-radius-sm);
    font-weight: 500;
}

.meta-year,
.meta-area {
    color: var(--nexus-text-secondary);
    padding: 0.25rem 0.5rem;
    background: var(--nexus-bg);
    border-radius: var(--nexus-radius-sm);
}

.card-desc {
    font-size: 0.875rem;
    color: var(--nexus-text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* Page Header */
.page-header {
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--nexus-text-secondary);
}

.breadcrumb a {
    color: var(--nexus-primary);
    text-decoration: none;
    transition: var(--nexus-transition);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.separator {
    color: var(--nexus-text-light);
}

.breadcrumb .current {
    color: var(--nexus-text);
}

.page-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--nexus-text);
}

.page-count {
    color: var(--nexus-text-secondary);
    font-size: 0.95rem;
}

/* Detail Page */
.detail-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.detail-header {
    margin-bottom: 2rem;
}

.detail-meta-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.detail-category {
    background: var(--nexus-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--nexus-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.detail-time {
    color: var(--nexus-text-secondary);
    font-size: 0.9rem;
}

.detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--nexus-text);
}

.detail-content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

.detail-image {
    border-radius: var(--nexus-radius);
    overflow: hidden;
    box-shadow: var(--nexus-shadow-lg);
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: var(--nexus-bg);
    border-radius: var(--nexus-radius);
    border: 1px solid var(--nexus-border);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.875rem;
    color: var(--nexus-text-secondary);
    font-weight: 500;
}

.info-value {
    font-size: 1rem;
    color: var(--nexus-text);
    font-weight: 600;
}

.detail-content {
    padding: 1.5rem;
    background: var(--nexus-surface);
    border-radius: var(--nexus-radius);
    border: 1px solid var(--nexus-border);
}

.content-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--nexus-text);
}

.content-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--nexus-text-secondary);
    white-space: pre-wrap;
}

.detail-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--nexus-surface);
    color: var(--nexus-text);
    border: 2px solid var(--nexus-border);
    border-radius: var(--nexus-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--nexus-transition);
    cursor: pointer;
}

.action-btn:hover {
    border-color: var(--nexus-primary);
    color: var(--nexus-primary);
    transform: translateY(-2px);
    box-shadow: var(--nexus-shadow-md);
}

.action-btn.primary {
    background: var(--nexus-primary);
    color: white;
    border-color: var(--nexus-primary);
}

.action-btn.primary:hover {
    background: var(--nexus-primary-dark);
    border-color: var(--nexus-primary-dark);
    color: white;
}

/* Player */
.nexus-player {
    background: var(--nexus-surface);
    border-radius: var(--nexus-radius-lg);
    padding: 2rem;
    box-shadow: var(--nexus-shadow-lg);
    border: 1px solid var(--nexus-border);
}

.player-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.player-screen {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: var(--nexus-radius);
    overflow: hidden;
}

.player-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.control-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--nexus-text);
    font-size: 0.95rem;
}

.control-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.control-btn {
    padding: 0.625rem 1.25rem;
    background: var(--nexus-bg);
    color: var(--nexus-text);
    border: 2px solid var(--nexus-border);
    border-radius: var(--nexus-radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--nexus-transition);
    font-family: inherit;
}

.control-btn:hover {
    border-color: var(--nexus-primary);
    color: var(--nexus-primary);
    transform: translateY(-2px);
}

.control-btn.active {
    background: var(--nexus-primary);
    color: white;
    border-color: var(--nexus-primary);
    box-shadow: var(--nexus-shadow-md);
}

.episode-list {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.episode-list::-webkit-scrollbar {
    width: 6px;
}

.episode-list::-webkit-scrollbar-track {
    background: var(--nexus-bg);
    border-radius: 3px;
}

.episode-list::-webkit-scrollbar-thumb {
    background: var(--nexus-border);
    border-radius: 3px;
}

.episode-list::-webkit-scrollbar-thumb:hover {
    background: var(--nexus-text-light);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--nexus-surface);
    border-radius: var(--nexus-radius);
    box-shadow: var(--nexus-shadow);
    border: 1px solid var(--nexus-border);
    flex-wrap: wrap;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--nexus-bg);
    color: var(--nexus-text);
    border: 2px solid var(--nexus-border);
    text-decoration: none;
    border-radius: var(--nexus-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--nexus-transition);
}

.pagination-btn:hover:not(.disabled) {
    border-color: var(--nexus-primary);
    color: var(--nexus-primary);
    transform: translateY(-2px);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-pages {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.pagination-page {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nexus-bg);
    color: var(--nexus-text);
    border: 2px solid var(--nexus-border);
    text-decoration: none;
    border-radius: var(--nexus-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--nexus-transition);
}

.pagination-page:hover {
    border-color: var(--nexus-primary);
    color: var(--nexus-primary);
    transform: translateY(-2px);
}

.pagination-page.active {
    background: var(--nexus-primary);
    color: white;
    border-color: var(--nexus-primary);
    box-shadow: var(--nexus-shadow-md);
}

.pagination-ellipsis {
    padding: 0 0.5rem;
    color: var(--nexus-text-light);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--nexus-surface);
    border-radius: var(--nexus-radius);
    border: 1px solid var(--nexus-border);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--nexus-text-secondary);
    font-size: 1.1rem;
}

/* Footer */
.nexus-footer {
    background: var(--nexus-text);
    color: white;
    margin-top: 4rem;
}

.footer-top {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.25rem;
    transition: var(--nexus-transition);
}

.social-link:hover {
    background: var(--nexus-primary);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--nexus-transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.footer-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .detail-content-wrapper {
        grid-template-columns: 1fr;
    }

    .detail-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .header-main-content {
        flex-wrap: wrap;
    }

    .search-wrapper {
        min-width: 200px;
        flex: 1;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: var(--nexus-surface);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: var(--nexus-shadow-xl);
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav[data-open="true"] {
        transform: translateX(0);
    }

    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .hero-slider {
        height: 400px;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .detail-title {
        font-size: 1.75rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

