/* Breeze Template - 简洁舒适风格，浅色配色 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --breeze-bg: #f8fafc;
    --breeze-surface: #ffffff;
    --breeze-surface-light: #f1f5f9;
    --breeze-text: #1e293b;
    --breeze-text-light: #64748b;
    --breeze-primary: #0ea5e9;
    --breeze-primary-light: #38bdf8;
    --breeze-primary-dark: #0284c7;
    --breeze-accent: #10b981;
    --breeze-border: #e2e8f0;
    --breeze-shadow: rgba(0, 0, 0, 0.08);
}

body.breeze-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: var(--breeze-bg);
    color: var(--breeze-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.breeze-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.breeze-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--breeze-border);
    transition: all 0.3s;
    box-shadow: 0 1px 3px var(--breeze-shadow);
}

.breeze-header .breeze-container {
    position: relative;
}

.breeze-header.scrolled {
    box-shadow: 0 2px 8px var(--breeze-shadow);
    background: rgba(255, 255, 255, 0.98);
}

.breeze-header-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(16, 185, 129, 0.05));
    opacity: 0;
    transition: opacity 0.3s;
}

.breeze-header:hover .breeze-header-bg {
    opacity: 1;
}

.breeze-header .breeze-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 60px;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.breeze-brand {
    flex-shrink: 0;
}

.breeze-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--breeze-text);
    transition: transform 0.3s;
}

.breeze-logo:hover {
    transform: scale(1.05);
}

.breeze-logo-icon {
    font-size: 32px;
}

.breeze-logo-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--breeze-primary);
}

.breeze-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

.breeze-nav-item {
    padding: 10px 20px;
    color: var(--breeze-text-light);
    text-decoration: none;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.breeze-nav-item:hover {
    color: var(--breeze-primary);
    background: rgba(14, 165, 233, 0.1);
}

.breeze-search {
    flex-shrink: 0;
}

.breeze-search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--breeze-surface-light);
    border: 1px solid var(--breeze-border);
    border-radius: 24px;
    padding: 10px 16px;
    transition: all 0.3s;
    min-width: 280px;
}

.breeze-search-box.focused {
    border-color: var(--breeze-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    background: var(--breeze-surface);
}

.breeze-search-icon {
    color: var(--breeze-text-light);
    flex-shrink: 0;
}

.breeze-search-input {
    background: transparent;
    border: none;
    color: var(--breeze-text);
    font-size: 14px;
    flex: 1;
    outline: none;
}

.breeze-search-input::placeholder {
    color: var(--breeze-text-light);
}

.breeze-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.breeze-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--breeze-text);
    transition: all 0.3s;
    border-radius: 2px;
}

.breeze-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.breeze-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.breeze-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Main */
.breeze-main {
    padding-bottom: 60px;
}

/* Hero Section */
.breeze-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    overflow: hidden;
}

.breeze-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.breeze-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--breeze-bg) 0%, transparent 50%);
}

.breeze-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 0 60px;
}

.breeze-hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.breeze-hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.breeze-hero-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: var(--breeze-text-light);
}

.breeze-hero-stat-icon {
    font-size: 18px;
}

.breeze-hero-stat-value {
    font-weight: 600;
    color: var(--breeze-text);
}

.breeze-hero-description {
    font-size: 18px;
    color: var(--breeze-text-light);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
}

.breeze-hero-actions {
    display: flex;
    gap: 16px;
}

.breeze-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.breeze-btn-primary {
    background: var(--breeze-primary);
    color: white;
}

.breeze-btn-primary:hover {
    background: var(--breeze-primary-dark);
    transform: scale(1.05);
}

.breeze-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.breeze-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Row Section - 横向滚动 */
.breeze-row {
    margin-bottom: 50px;
}

.breeze-row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 60px;
}

.breeze-row-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--breeze-text);
}

.breeze-row-more {
    color: var(--breeze-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.breeze-row-more:hover {
    color: var(--breeze-primary);
}

.breeze-row-content {
    position: relative;
    padding: 0 60px;
}

.breeze-row-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.breeze-row-scroll::-webkit-scrollbar {
    display: none;
}

/* Card */
.breeze-card {
    flex-shrink: 0;
    width: 240px;
    transition: transform 0.3s;
}

.breeze-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.breeze-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.breeze-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background: var(--breeze-surface);
    margin-bottom: 12px;
}

.breeze-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.breeze-card:hover .breeze-card-image img {
    transform: scale(1.1);
}

.breeze-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.breeze-card:hover .breeze-card-overlay {
    opacity: 1;
}

.breeze-play-btn {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.breeze-card:hover .breeze-play-btn {
    transform: scale(1.1);
}

.breeze-play-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    transition: transform 0.3s;
}

.breeze-card:hover .breeze-play-icon {
    transform: scale(1.1);
}

.breeze-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--breeze-accent);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.breeze-card-time {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.breeze-card-info {
    padding: 0 4px;
}

.breeze-card-content {
    padding: 12px 4px 0;
}

.breeze-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--breeze-text);
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.4;
}

.breeze-card-meta {
    font-size: 14px;
    color: var(--breeze-text-light);
    margin-top: 4px;
}

.breeze-meta-tag {
    font-size: 12px;
    color: var(--breeze-text-light);
    padding: 2px 8px;
    background: var(--breeze-surface);
    border-radius: 4px;
}

/* List Page */
.breeze-list-page {
    padding: 40px 0;
}

.breeze-page-header {
    margin-bottom: 40px;
    padding: 0 60px;
}

.breeze-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--breeze-text-light);
}

.breeze-breadcrumb a {
    color: var(--breeze-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.breeze-breadcrumb a:hover {
    color: var(--breeze-primary);
}

.breeze-breadcrumb-sep {
    color: var(--breeze-text-light);
}

.breeze-breadcrumb-current {
    color: var(--breeze-text);
}

.breeze-page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.breeze-page-count {
    font-size: 16px;
    color: var(--breeze-text-light);
}

/* Section - 首页分类区块 */
.breeze-section {
    margin-bottom: 60px;
    padding: 40px 0;
}

.breeze-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0 60px;
}

.breeze-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--breeze-text);
}

.breeze-section-more {
    color: var(--breeze-text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.breeze-section-more:hover {
    color: var(--breeze-primary);
    gap: 8px;
}

.breeze-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    padding: 0 60px;
}

.breeze-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--breeze-text-light);
}

/* Pagination */
.breeze-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
    padding: 0 60px;
}

.breeze-page-btn {
    padding: 10px 20px;
    background: var(--breeze-surface);
    color: var(--breeze-text);
    border: 1px solid var(--breeze-border);
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.breeze-page-btn:hover {
    background: var(--breeze-primary);
    border-color: var(--breeze-primary);
    color: white;
}

.breeze-page-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

.breeze-page-num {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--breeze-surface);
    color: var(--breeze-text);
    border: 1px solid var(--breeze-border);
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.breeze-page-num:hover {
    background: var(--breeze-surface-light);
    border-color: var(--breeze-primary);
}

.breeze-page-num.active {
    background: var(--breeze-primary);
    border-color: var(--breeze-primary);
    color: white;
}

.breeze-page-ellipsis {
    color: var(--breeze-text-light);
    padding: 0 8px;
}

/* Detail Page */
.breeze-detail-page {
    padding: 40px 0;
}

.breeze-detail-content {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.breeze-detail-poster {
    flex-shrink: 0;
    width: 280px;
    max-width: 100%;
    aspect-ratio: 2/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--breeze-shadow);
    background: var(--breeze-surface-light);
}

.breeze-detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.breeze-detail-info {
    flex: 1;
    min-width: 0;
}

.breeze-detail-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.breeze-detail-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.breeze-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.breeze-stat-icon {
    font-size: 20px;
}

.breeze-stat-value {
    font-weight: 600;
}

.breeze-stat-label {
    font-size: 14px;
    color: var(--breeze-text-light);
    margin-left: 4px;
}

.breeze-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.breeze-detail-meta-item {
    display: flex;
    gap: 12px;
    font-size: 16px;
}

.breeze-meta-label {
    color: var(--breeze-text-light);
    min-width: 60px;
}

.breeze-meta-value {
    color: var(--breeze-text);
}

.breeze-detail-desc {
    margin-top: 24px;
}

.breeze-desc-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--breeze-text);
}

.breeze-desc-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--breeze-text-light);
}

.breeze-detail-player-section {
    padding: 40px 0;
}

/* Player */
.breeze-player {
    margin-top: 40px;
}

.breeze-player-wrapper {
    margin-bottom: 30px;
}

.breeze-player-controls {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.breeze-player-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breeze-player-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--breeze-text);
}

.breeze-source-list,
.breeze-episode-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.breeze-source-btn,
.breeze-episode-btn {
    padding: 10px 20px;
    background: var(--breeze-surface);
    color: var(--breeze-text);
    border: 1px solid var(--breeze-border);
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.breeze-source-btn:hover,
.breeze-episode-btn:hover {
    background: var(--breeze-surface-light);
    border-color: var(--breeze-primary);
}

.breeze-source-btn.active,
.breeze-episode-btn.active {
    background: var(--breeze-primary);
    border-color: var(--breeze-primary);
    color: white;
}

.breeze-episode-link {
    padding: 10px 20px;
    background: var(--breeze-surface);
    color: var(--breeze-text);
    border: 1px solid var(--breeze-border);
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.breeze-episode-link:hover {
    background: var(--breeze-surface-light);
    border-color: var(--breeze-primary);
}

.breeze-episode-link.active {
    background: var(--breeze-primary);
    border-color: var(--breeze-primary);
    color: white;
}

/* Footer */
.breeze-footer {
    background: var(--breeze-surface);
    border-top: 1px solid var(--breeze-border);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.breeze-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 60px;
}

.breeze-footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.breeze-footer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--breeze-text);
}

.breeze-footer-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--breeze-text);
    margin-bottom: 8px;
}

.breeze-footer-text {
    font-size: 14px;
    color: var(--breeze-text-light);
    line-height: 1.6;
}

.breeze-footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.breeze-footer-links a {
    color: var(--breeze-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.breeze-footer-links a:hover {
    color: var(--breeze-primary);
}

.breeze-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--breeze-border);
    color: var(--breeze-text-light);
    font-size: 14px;
    padding: 0 60px;
}

/* Vodplay Page */
.breeze-vodplay-page {
    padding: 40px 0;
}

.breeze-vodplay-header {
    margin-bottom: 30px;
}

.breeze-vodplay-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--breeze-text);
}

.breeze-vodplay-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.breeze-vodplay-tag {
    padding: 6px 12px;
    background: var(--breeze-surface);
    color: var(--breeze-text-light);
    border-radius: 6px;
    font-size: 14px;
}

.breeze-vodplay-player {
    margin-bottom: 40px;
}

.breeze-vodplay-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--breeze-text-light);
    font-size: 18px;
}

.breeze-vodplay-actions {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.breeze-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--breeze-surface);
    color: var(--breeze-text);
    border: 1px solid var(--breeze-border);
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.breeze-back-btn:hover {
    background: var(--breeze-primary);
    border-color: var(--breeze-primary);
    color: white;
}

.d-none {
    display: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .breeze-container {
        padding: 0 40px;
    }

    .breeze-row-header,
    .breeze-row-content,
    .breeze-page-header,
    .breeze-grid,
    .breeze-pagination {
        padding-left: 40px;
        padding-right: 40px;
    }

    .breeze-hero-content,
    .breeze-detail-hero-content {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .breeze-container {
        padding: 0 20px;
    }

    .breeze-header .breeze-container {
        padding: 16px 20px;
    }

    .breeze-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        background: var(--breeze-surface);
        border-top: 1px solid var(--breeze-border);
        padding: 20px;
        gap: 12px;
        box-shadow: 0 4px 20px var(--breeze-shadow);
        z-index: 1001;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .breeze-nav.active {
        display: flex;
    }

    .breeze-nav-item {
        padding: 12px 16px;
        border-radius: 8px;
        text-align: center;
        display: block;
        pointer-events: auto;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(14, 165, 233, 0.15);
    }

    .breeze-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .breeze-search {
        display: none;
    }

    .breeze-detail-content {
        flex-direction: column;
        gap: 24px;
        margin-top: 20px;
    }

    .breeze-detail-poster {
        width: 200px;
        margin: 0 auto;
    }

    .breeze-detail-title {
        font-size: 28px;
    }

    .breeze-detail-stats {
        gap: 16px;
    }

    .breeze-stat-item {
        font-size: 14px;
    }

    .breeze-section {
        padding: 30px 0;
        margin-bottom: 40px;
    }

    .breeze-section-header {
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .breeze-section-title {
        font-size: 22px;
    }

    .breeze-row-header,
    .breeze-row-content,
    .breeze-page-header,
    .breeze-grid,
    .breeze-pagination {
        padding-left: 20px;
        padding-right: 20px;
    }

    .breeze-card {
        width: 100%;
    }

    .breeze-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0;
    }

    .breeze-card-image {
        aspect-ratio: 16/9;
    }

    .breeze-card-title {
        font-size: 14px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 6px;
    }

    .breeze-card-meta {
        font-size: 12px;
    }

    .breeze-card-content {
        padding: 8px 0 0;
    }

    .breeze-page-header {
        padding: 20px 0;
    }

    .breeze-page-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .breeze-page-count {
        font-size: 14px;
    }

    .breeze-breadcrumb {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .breeze-pagination {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 40px;
        padding: 0;
    }

    .breeze-page-btn {
        padding: 8px 16px;
        font-size: 13px;
        min-height: 36px;
    }

    .breeze-page-numbers {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .breeze-page-num {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .breeze-page-ellipsis {
        padding: 0 4px;
    }

    .breeze-section {
        padding: 30px 0;
        margin-bottom: 30px;
    }

    .breeze-footer-content {
        padding: 0 20px;
    }

    .breeze-footer-bottom {
        padding: 0 20px;
    }
}


