@charset "utf-8";
/*
    Theme Name: libvio
    Theme URI: 
    Author: 阿叶
    Author URI: 
    Description:
    Version: 0.0.1
*/

/* 全局样式 */
:root {
    --primary: #ffb612; /* 主黄色 */
    --secondary: #ff2a14; /* 主红色 */
    --dark: #1a1a1a;
    --light: #f8f8f8;
    --gray-900: #111111;
    --gray-800: #222222;
    --gray-400: #999999;
    --gray-300: #cccccc;
    --gray-500: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    color: var(--light);
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* 容器样式 */
.lb_container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 自定义工具类 */
.lb_text_shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.lb_bg_gradient_libvio {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.lb_card_hover {
    transition: all 0.3s ease;
}

.lb_card_hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.lb_content_auto {
    content-visibility: auto;
}

/* 响应式工具类 - 移动端默认样式 */
.lb_hidden_pc {
    display: block;
}

.lb_hidden_mobile {
    display: none;
}

/* 导航栏样式 */
#lb_navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 1rem 0;
}

.lb_navbar_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lb_logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lb_logo img {
    height: 2.5rem;
    width: auto;
}

.lb_logo_text {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
}

.lb_nav_links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.lb_nav_links a {
    color: var(--light);
    transition: color 0.3s ease;
}

.lb_nav_links a:hover {
    color: var(--primary);
}

.lb_menu_btn {
    color: var(--light);
    font-size: 1.5rem;
}

/* 移动端菜单 */
#lb_mobileMenu {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    padding: 1rem 0;
}

#lb_mobileMenu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.lb_mobile_menu_container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lb_mobile_menu_container a {
    color: var(--light);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-800);
    transition: color 0.3s ease;
}

.lb_mobile_menu_container a:last-child {
    border-bottom: none;
}

.lb_mobile_menu_container a:hover {
    color: var(--primary);
}
heder,
footer,
section {
    position: relative;
    overflow: hidden;
    z-index: 10;
}
/* 首屏区域样式 (原英雄区) */
.lb_hero_banner {
    padding: 8rem 0 4rem 0;
    position: relative;
    overflow: hidden;
    overflow: hidden;
}
.lb_hero_banner .bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    opacity: .1;
    filter: blur(6px);
}
.lb_hero_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.7));
}

.lb_hero_decoration_1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 182, 18, 0.05);
    filter: blur(72px);
    transform: translateX(-25%);
}

.lb_hero_decoration_2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 33.333%;
    height: 50%;
    background-color: rgba(255, 42, 20, 0.05);
    filter: blur(72px);
    transform: translateX(25%);
}

.lb_hero_content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
}

.lb_hero_badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 182, 18, 0.1);
    border: 1px solid rgba(255, 182, 18, 0.2);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.lb_hero_badge_text {
    color: var(--primary);
    font-weight: 500;
}

.lb_hero_title {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.lb_hero_title_highlight {
    color: var(--primary);
    position: relative;
}

.lb_hero_title_highlight::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background-color: rgba(255, 182, 18, 0.3);
    border-radius: 9999px;
}

.lb_hero_description {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
}
.lb_hero_description p {
    line-height: 2;
}

.lb_hero_break {
    display: none;
}

.lb_hero_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.lb_btn_primary {
    width: 100%;
    padding: 1rem 2.5rem;
    background-color: var(--primary);
    color: var(--dark);
    font-weight: bold;
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: inline-block;
}

.lb_btn_primary:hover {
    background-color: rgba(255, 182, 18, 0.9);
    box-shadow: 0 20px 25px -5px rgba(255, 182, 18, 0.2), 0 8px 10px -6px rgba(255, 182, 18, 0.2);
    transform: translateY(-0.25rem);
}

.lb_btn_outline {
    width: 100%;
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: bold;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.lb_btn_outline:hover {
    background-color: rgba(255, 182, 18, 0.1);
    transform: translateY(-0.25rem);
}

.lb_hero_stats {
    display: none;
}

.lb_stat_item {
    margin-right: 80px;
}

.lb_stat_number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.lb_stat_label {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* 通用区块样式 */
.lb_section {
    padding: 4rem 0;
}

.lb_section_dark {
    background-color: var(--dark);
}

.lb_section_gray_900 {
    background-color: var(--gray-900);
}

.lb_section_header {
    text-align: center;
    margin-bottom: 3rem;
}

.lb_section_title {
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.lb_section_title_highlight {
    color: var(--primary);
}

.lb_section_description {
    color: var(--gray-400);
    max-width: 42rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 核心功能样式 */
.lb_features_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.lb_feature_card {
    background-color: var(--gray-900);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.lb_feature_icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 182, 18, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.lb_feature_icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.lb_feature_title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.lb_feature_description {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* 剧集分类样式 */
.lb_categories_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.lb_category_card {
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lb_category_image {
    width: 100%;
    height: 9rem;
    object-fit: cover;
}

.lb_category_name {
    background-color: var(--dark);
    padding: 0.75rem;
    text-align: center;
    font-weight: bold;
    font-size: 0.875rem;
}

/* 用户评价样式 */
.lb_reviews_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.lb_review_card {
    background-color: var(--gray-900);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.lb_review_header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lb_review_avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.lb_review_author {
    font-weight: bold;
    font-size: 0.875rem;
}

.lb_review_rating {
    color: var(--primary);
    font-size: 0.75rem;
}

.lb_review_text {
    color: var(--gray-300);
    font-style: italic;
    font-size: 0.875rem;
}

/* 下载区域样式 */
.lb_download_section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 4rem 0;
    text-align: center;
}

.lb_download_title {
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: bold;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.lb_download_description {
    color: rgba(26, 26, 26, 0.8);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.lb_download_buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.lb_download_btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--dark);
    color: var(--light);
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.lb_download_btn:hover {
    background-color: rgba(26, 26, 26, 0.9);
}

.lb_download_icon {
    font-size: 2rem;
}

.lb_download_text {
    text-align: left;
}

.lb_download_subtext {
    font-size: 0.75rem;
}

.lb_download_platform {
    font-weight: bold;
    font-size: 1rem;
}

.lb_download_note {
    color: rgba(26, 26, 0.7);
    font-size: 0.75rem;
    margin-top: 2rem;
}
.pl-time {
    font-size: 13px;
    display: block;
    margin-top: 15px;
    opacity: .4;
}

/* 简化的页脚样式 - 只保留footer-bottom */
footer {
    background-color: var(--dark);
    padding: 2rem 0;
    border-top: 1px solid var(--gray-800);
}

.lb_footer_bottom {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    padding: 0 1rem;
}

/* ======================
   集中的PC端样式 (760px+)
   ====================== */
@media (min-width: 760px) {
    /* 容器样式 */
    .lb_container {
        max-width: 1200px;
        padding: 0 1rem;
    }
	.lb_nav_links {
		display: flex;
	}
    
    /* 响应式工具类 */
    .lb_hidden_pc {
        display: none;
    }
    
    .lb_hidden_mobile {
        display: flex;
    }
    
    /* 首屏区域样式 (原英雄区) */
    .lb_hero_banner {
        padding: 12rem 0 9rem;
    }
    
    .lb_hero_content {
        max-width: 54rem;
    }
    
    .lb_hero_description {
        font-size: 1.5rem;
    }
    
    .lb_hero_break {
        display: block;
    }
    
    .lb_hero_buttons {
        margin-bottom: 4rem;
    }
    
    .lb_btn_primary {
        width: auto;
    }
    
    .lb_btn_outline {
        width: auto;
    }
    
    .lb_hero_stats {
        display: flex;
        
    }
    
    .lb_stat_number {
        font-size: 3.5rem;
    }
    
    /* 通用区块样式 */
    .lb_section {
        padding: 5rem 0;
    }
    
    .lb_section_header {
        margin-bottom: 4rem;
    }
    
    .lb_hero_description p {
        line-height: 3;
    }
    /* 核心功能样式 */
    .lb_features_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .lb_feature_card {
        padding: 2rem;
    }
    
    .lb_feature_icon {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1.5rem;
    }
    
    .lb_feature_icon i {
        font-size: 2rem;
    }
    
    .lb_feature_title {
        font-size: 1.25rem;
    }
    
    .lb_feature_description {
        font-size: 1rem;
    }
    
    /* 剧集分类样式 */
    .lb_categories_grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .lb_category_image {
        height: 17.5rem;
    }
    
    .lb_category_name {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* 用户评价样式 */
    .lb_reviews_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .lb_review_card {
        padding: 2rem;
    }
    
    .lb_review_avatar {
        width: 3rem;
        height: 3rem;
    }
    
    .lb_review_author {
        font-size: 1rem;
    }
    
    .lb_review_rating {
        font-size: 1rem;
    }
    
    .lb_review_text {
        font-size: 1rem;
    }
    
    /* 下载区域样式 */
    .lb_download_section {
        padding: 5rem 0;
    }
    
    .lb_download_description {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .lb_download_buttons {
        gap: 2rem;
    }
    
    .lb_download_btn {
        padding: 1rem 2rem;
    }
    
    .lb_download_icon {
        font-size: 2.5rem;
    }
    
    .lb_download_platform {
        font-size: 1.125rem;
    }
    
    .lb_download_note {
        font-size: 0.875rem;
    }
}