/* 抖荫短视频 汽车改装视频社区 - 原创主题CSS */
:root {
    --primary: #2e7d32; /* 森林绿 */
    --primary-dark: #1b5e20;
    --secondary: #ff9800; /* 亮橙色 */
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    --border: #333333;
    --radius: 12px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}
.nav-container-qyoonvn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo-wrap-9ufizww {
    display: flex;
    align-items: center;
    gap: 10px;
}
.site-logo-ostnin5 { height: 40px; }
.brand-name-oekr1db {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary);
}
.nav-links-zbpaq {
    display: flex;
    gap: 30px;
}
.nav-links-zbpaq a {
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}
.nav-links-zbpaq a:hover, .nav-links-zbpaq a.active {
    color: var(--secondary);
}

/* Search Bar */
.search-bar-section-qoi92 {
    background: var(--bg-card);
    padding: 15px 0;
    margin-top: 70px;
    border-bottom: 1px solid var(--border);
}
.search-form-yvwc5zj {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
}
.search-input-rv1u4 {
    flex: 1;
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: var(--text-main);
    outline: none;
}
.search-btn-6uhxuf6 {
    padding: 0 25px;
    border-radius: 30px;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}
.search-btn-6uhxuf6:hover { background: var(--primary-dark); }

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.banner-bg-l5eh5 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}
.banner-overlay-t13lag {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(18,18,18,0.3), rgba(18,18,18,1));
    z-index: -1;
}
.hero-content-vicw2m2 h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.text-gradient {
    background: linear-gradient(45deg, var(--secondary), #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-desc {
    font-size: 20px;
    color: #ddd;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Section */
.section { padding: 80px 0; }
.section-header-adspfcw {
    text-align: center;
    margin-bottom: 50px;
}
.section-header-adspfcw h2 {
    font-size: 36px;
    margin-bottom: 15px;
}
.divider-18ghhet {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Video Grid */
.video-grid-tz7w0c {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.video-card-k148qgf4 {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.video-card-k148qgf4:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-color: var(--secondary);
}
.video-thumb-mcmdrdr {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.video-thumb-mcmdrdr img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.video-card-k148qgf4:hover .video-thumb-mcmdrdr img { transform: scale(1.05); }
.hover-video-so7srzm0 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s;
}
.video-card-k148qgf4:hover .hover-video-so7srzm0 { opacity: 1; }
.video-play-btn-e3u9hq {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    background: rgba(255, 152, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.video-card-k148qgf4:hover .video-play-btn-e3u9hq { opacity: 1; }
.play-icon-tkx8dqbl {
    width: 0; height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid white;
    margin-left: 4px;
}
.video-info-yac5a { padding: 20px; }
.video-title-5a8bu {
    font-size: 18px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-meta-16wfml3 {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 14px;
}

/* FAQ */
.faq-list-kpqlvqyq { max-width: 800px; margin: 0 auto; }
.faq-item-lw8fn3 {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}
.faq-q-dmg2l9 {
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-a-jkekipk3 {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
}
.faq-item-lw8fn3.active .faq-a-jkekipk3 {
    padding: 0 20px 20px;
    max-height: 200px;
}

/* Reviews */
.review-grid-ddvjzi2k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.review-card-ha7m45j {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.stars-aii9s { color: var(--secondary); margin-bottom: 15px; }
.review-text-mobdxn { font-style: italic; margin-bottom: 20px; }
.reviewer-h8lyf { font-weight: bold; color: var(--primary); }

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border);
}
.footer-grid-p2kt2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col-4sbaf h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 18px;
}
.footer-links-snkes1u li { margin-bottom: 10px; }
.footer-links-snkes1u a { color: var(--text-muted); transition: var(--transition); }
.footer-links-snkes1u a:hover { color: var(--secondary); }
.footer-qr-6nlklc11 {
    display: flex;
    gap: 20px;
}
.qr-box-vbvlax { text-align: center; }
.qr-box-vbvlax img {
    width: 100px; height: 100px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.footer-bottom-9x1p9y6o {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

/* Modal */
.modal-overlay-dc6yffwu {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal-overlay-dc6yffwu.active { display: flex; }
.modal-box-m6nfodt {
    width: 90%; max-width: 800px;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
}
.modal-header-7lxern {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}
.modal-close-o6b9ja8 {
    background: none; border: none;
    color: white; font-size: 24px;
    cursor: pointer;
}
.modal-video-kfc39z {
    width: 100%; aspect-ratio: 16/9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

/* Breadcrumb */
.breadcrumb-88bi1kr1 {
    padding: 20px 0;
    color: var(--text-muted);
    font-size: 14px;
}
.breadcrumb-88bi1kr1 a { color: var(--primary); }
.breadcrumb-88bi1kr1 a:hover { text-decoration: underline; }

/* Page Header */
.page-header-hcnpp {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(to bottom, #1a2e1a, var(--bg-dark));
}
.page-header-hcnpp h1 { font-size: 40px; margin-bottom: 15px; }

/* Share */
.share-box-m850gxp {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.share-btn-htjj3xy {
    padding: 8px 15px;
    border-radius: 20px;
    background: var(--border);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.share-btn-htjj3xy:hover { background: var(--secondary); }

@media (max-width: 768px) {
    .nav-links-zbpaq { display: none; }
    .hero-content-vicw2m2 h1 { font-size: 32px; }
    .hero-desc { font-size: 16px; }
    .section { padding: 50px 0; }
}
