/* ============================================
   尊龙凯时 - 龙纹祥云东方风高端娱乐城
   主样式表 zl-style.css
   CSS前缀: zl-
   ============================================ */

/* === 基础变量 === */
:root {
    --zl-primary: #C09E6F;
    --zl-secondary: #8B0000;
    --zl-accent: #FFD700;
    --zl-dark: #1A1A1A;
    --zl-bg: #0A0A0A;
    --zl-text: #E8D8C3;
    --zl-text-sub: #A8937A;
    --zl-radius: 4px;
    --zl-shadow: 0 4px 20px rgba(255,215,0,0.25);
    --zl-gold-gradient: linear-gradient(135deg, #C09E6F, #FFD700, #C09E6F);
    --zl-red-gradient: linear-gradient(135deg, #8B0000, #B22222);
}

/* === 全局重置 === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    background-color: var(--zl-bg);
    color: var(--zl-text);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: var(--zl-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--zl-accent);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--zl-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--zl-text-sub);
}

/* === 容器 === */
.zl-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.zl-section {
    padding: 80px 0;
    position: relative;
}

.zl-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.zl-section-title h2 {
    font-size: 2.2rem;
    background: var(--zl-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.zl-section-title p {
    color: var(--zl-text-sub);
    max-width: 600px;
    margin: 10px auto 0;
}

.zl-divider {
    width: 80px;
    height: 2px;
    background: var(--zl-gold-gradient);
    margin: 15px auto;
}

/* === 导航栏 === */
.zl-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid rgba(192, 158, 111, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.zl-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1280px;
    margin: 0 auto;
    height: 70px;
}

.zl-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zl-logo img {
    height: 45px;
    width: auto;
}

.zl-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--zl-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.zl-nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.zl-nav-links li a {
    color: var(--zl-text);
    padding: 8px 15px;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.zl-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--zl-accent);
    transition: width 0.3s ease;
}

.zl-nav-links li a:hover,
.zl-nav-links li a.zl-active {
    color: var(--zl-accent);
}

.zl-nav-links li a:hover::after,
.zl-nav-links li a.zl-active::after {
    width: 80%;
}

.zl-btn-cta {
    display: inline-block;
    padding: 10px 24px;
    background: var(--zl-gold-gradient);
    color: #1A1A1A;
    font-weight: 700;
    border-radius: var(--zl-radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-align: center;
}

.zl-btn-cta:hover {
    box-shadow: var(--zl-shadow);
    transform: translateY(-2px);
    color: #1A1A1A;
}

.zl-btn-outline {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    color: var(--zl-primary);
    font-weight: 700;
    border-radius: var(--zl-radius);
    border: 2px solid var(--zl-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-align: center;
}

.zl-btn-outline:hover {
    background: rgba(192, 158, 111, 0.1);
    border-color: var(--zl-accent);
    color: var(--zl-accent);
    box-shadow: var(--zl-shadow);
}

/* 汉堡菜单 */
.zl-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.zl-hamburger span {
    width: 25px;
    height: 2px;
    background: var(--zl-primary);
    transition: all 0.3s ease;
}

/* === Hero横幅 === */
.zl-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 70px;
}

.zl-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.zl-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zl-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(139,0,0,0.4) 0%, rgba(10,10,10,0.85) 100%);
    z-index: 1;
}

.zl-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
}

.zl-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(192, 158, 111, 0.15);
    border: 1px solid var(--zl-primary);
    border-radius: 50px;
    color: var(--zl-primary);
    font-size: 0.85rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.zl-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.zl-hero h1 .zl-text-gold {
    background: var(--zl-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zl-hero-subtitle {
    color: var(--zl-text-sub);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.zl-hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.zl-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.zl-stat-item {
    text-align: center;
}

.zl-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--zl-accent);
    display: block;
}

.zl-stat-label {
    font-size: 0.85rem;
    color: var(--zl-text-sub);
}

/* === 卡片通用 === */
.zl-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(192, 158, 111, 0.2);
    border-radius: var(--zl-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.zl-card:hover {
    border-color: var(--zl-primary);
    box-shadow: var(--zl-shadow);
    transform: translateY(-5px);
}

.zl-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.zl-card-body {
    padding: 20px;
}

.zl-card-body h3 {
    color: var(--zl-primary);
    margin-bottom: 8px;
}

.zl-card-body p {
    font-size: 0.9rem;
    color: var(--zl-text-sub);
}

/* === 网格系统 === */
.zl-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.zl-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.zl-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* === 真人视讯殿堂 === */
.zl-live-casino {
    background: linear-gradient(180deg, rgba(139,0,0,0.1) 0%, transparent 100%);
}

.zl-dealer-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(192, 158, 111, 0.2);
    border-radius: var(--zl-radius);
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

.zl-dealer-card:hover {
    border-color: var(--zl-accent);
    box-shadow: var(--zl-shadow);
    transform: translateY(-8px);
}

.zl-dealer-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
}

.zl-dealer-info {
    padding: 20px;
}

.zl-dealer-name {
    font-size: 1.2rem;
    color: var(--zl-accent);
    margin-bottom: 5px;
}

.zl-dealer-game {
    color: var(--zl-text-sub);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.zl-dealer-desc {
    color: var(--zl-text-sub);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 15px;
}

/* === 电子游艺 === */
.zl-slots {
    background: linear-gradient(180deg, transparent 0%, rgba(139,0,0,0.08) 100%);
}

.zl-video-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(192, 158, 111, 0.2);
    border-radius: var(--zl-radius);
    overflow: hidden;
    position: relative;
}

.zl-video-card video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #000;
}

.zl-rtp-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(139, 0, 0, 0.9);
    color: var(--zl-accent);
    padding: 4px 12px;
    border-radius: var(--zl-radius);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 5;
}

.zl-video-info {
    padding: 20px;
}

.zl-video-info h3 {
    color: var(--zl-primary);
}

/* === 体育博彩 === */
.zl-sports {
    background: linear-gradient(180deg, rgba(139,0,0,0.08) 0%, transparent 100%);
}

.zl-sports-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.zl-sports-focus {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(192, 158, 111, 0.2);
    border-radius: var(--zl-radius);
    overflow: hidden;
}

.zl-sports-focus img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.zl-sports-focus-info {
    padding: 25px;
}

.zl-odds-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(192, 158, 111, 0.2);
    border-radius: var(--zl-radius);
    overflow: hidden;
}

.zl-odds-table th {
    background: rgba(139, 0, 0, 0.3);
    color: var(--zl-primary);
    padding: 12px 15px;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(192, 158, 111, 0.2);
}

.zl-odds-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(192, 158, 111, 0.1);
    color: var(--zl-text);
    font-size: 0.9rem;
}

.zl-odds-table tr:hover td {
    background: rgba(192, 158, 111, 0.05);
}

.zl-odds-value {
    color: var(--zl-accent);
    font-weight: 700;
    cursor: pointer;
    padding: 4px 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--zl-radius);
    transition: all 0.3s ease;
    display: inline-block;
}

.zl-odds-value:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--zl-accent);
}

/* === 棋牌对决 === */
.zl-chess {
    background: linear-gradient(180deg, transparent 0%, rgba(139,0,0,0.08) 100%);
}

.zl-chess-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(192, 158, 111, 0.2);
    border-radius: var(--zl-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.zl-chess-card:hover {
    border-color: var(--zl-accent);
    box-shadow: var(--zl-shadow);
    transform: translateY(-5px);
}

.zl-chess-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.zl-chess-card h3 {
    color: var(--zl-primary);
    margin-bottom: 8px;
}

.zl-online-count {
    color: var(--zl-accent);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

/* === VIP龙厅入口 === */
.zl-vip-entrance {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.zl-vip-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.zl-vip-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zl-vip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.5) 100%);
    z-index: 1;
}

.zl-vip-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 40px;
}

.zl-vip-content h2 {
    font-size: 2.5rem;
    background: var(--zl-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.zl-vip-privileges {
    list-style: none;
    margin: 20px 0 30px;
}

.zl-vip-privileges li {
    padding: 8px 0;
    color: var(--zl-text);
    font-size: 0.95rem;
}

.zl-vip-privileges li::before {
    content: '◆';
    color: var(--zl-accent);
    margin-right: 10px;
}

/* === 凯旋玩家榜 === */
.zl-winners {
    background: rgba(26, 26, 26, 0.5);
}

.zl-winners-scroll {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(192, 158, 111, 0.2);
    border-radius: var(--zl-radius);
    max-height: 400px;
    overflow: hidden;
    position: relative;
}

.zl-winners-list {
    animation: zl-scroll-up 20s linear infinite;
}

.zl-winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(192, 158, 111, 0.1);
}

.zl-winner-name {
    color: var(--zl-text);
    font-weight: 600;
    min-width: 120px;
}

.zl-winner-game {
    color: var(--zl-text-sub);
    font-size: 0.9rem;
}

.zl-winner-amount {
    color: var(--zl-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.zl-winner-time {
    color: var(--zl-text-sub);
    font-size: 0.8rem;
}

@keyframes zl-scroll-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* === 优惠活动 === */
.zl-promos {
    background: linear-gradient(180deg, transparent 0%, rgba(139,0,0,0.08) 100%);
}

.zl-promo-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(192, 158, 111, 0.2);
    border-radius: var(--zl-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.zl-promo-card:hover {
    border-color: var(--zl-accent);
    box-shadow: var(--zl-shadow);
    transform: translateY(-5px);
}

.zl-promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.zl-promo-body {
    padding: 20px;
}

.zl-promo-body h3 {
    color: var(--zl-accent);
    margin-bottom: 10px;
}

/* === APP展示 === */
.zl-app-section {
    background: linear-gradient(180deg, rgba(139,0,0,0.08) 0%, transparent 100%);
}

.zl-app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zl-app-mockup {
    text-align: center;
}

.zl-app-mockup img {
    max-height: 500px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.zl-app-features {
    list-style: none;
}

.zl-app-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.zl-app-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(192, 158, 111, 0.15);
    border: 1px solid var(--zl-primary);
    border-radius: var(--zl-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.zl-app-feature-text h4 {
    color: var(--zl-primary);
    margin-bottom: 5px;
}

.zl-app-feature-text p {
    font-size: 0.9rem;
    color: var(--zl-text-sub);
    margin: 0;
}

.zl-app-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* === 支付与认证墙 === */
.zl-trust-wall {
    background: rgba(26, 26, 26, 0.5);
    border-top: 1px solid rgba(192, 158, 111, 0.2);
}

.zl-trust-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.zl-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.zl-payment-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(192, 158, 111, 0.15);
    border-radius: var(--zl-radius);
    padding: 10px 20px;
    color: var(--zl-text-sub);
    font-size: 0.85rem;
    font-weight: 600;
}

.zl-cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.zl-cert-item {
    background: rgba(192, 158, 111, 0.1);
    border: 1px solid rgba(192, 158, 111, 0.3);
    border-radius: var(--zl-radius);
    padding: 12px 20px;
    color: var(--zl-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* === 页脚 === */
.zl-footer {
    background: var(--zl-bg);
    border-top: 1px solid rgba(192, 158, 111, 0.2);
    padding-top: 60px;
}

.zl-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.zl-footer-col h4 {
    color: var(--zl-primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.zl-footer-col p {
    font-size: 0.9rem;
    color: var(--zl-text-sub);
    line-height: 1.8;
}

.zl-footer-links {
    list-style: none;
}

.zl-footer-links li {
    margin-bottom: 10px;
}

.zl-footer-links li a {
    color: var(--zl-text-sub);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.zl-footer-links li a:hover {
    color: var(--zl-accent);
}

.zl-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.zl-footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(192, 158, 111, 0.15);
    border: 1px solid var(--zl-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zl-primary);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.zl-footer-social a:hover {
    background: var(--zl-primary);
    color: var(--zl-dark);
}

.zl-footer-seo {
    padding: 20px 0;
    border-top: 1px solid rgba(192, 158, 111, 0.1);
    font-size: 0.75rem;
    color: var(--zl-text-sub);
    line-height: 1.8;
    text-align: center;
}

.zl-footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(192, 158, 111, 0.1);
    text-align: center;
    font-size: 0.8rem;
    color: var(--zl-text-sub);
}

.zl-footer-bottom p {
    margin-bottom: 5px;
    font-size: 0.8rem;
}

/* === 面包屑 === */
.zl-breadcrumb {
    padding: 100px 0 20px;
    font-size: 0.85rem;
}

.zl-breadcrumb a {
    color: var(--zl-text-sub);
}

.zl-breadcrumb a:hover {
    color: var(--zl-accent);
}

.zl-breadcrumb span {
    color: var(--zl-primary);
}

.zl-breadcrumb-sep {
    color: var(--zl-text-sub);
    margin: 0 8px;
}

/* === 内页通用 === */
.zl-page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.zl-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.zl-page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zl-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.9) 100%);
}

.zl-page-hero-content {
    position: relative;
    z-index: 2;
}

.zl-page-hero h1 {
    font-size: 2.8rem;
    background: var(--zl-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zl-page-content {
    padding: 60px 0;
}

.zl-page-content h2 {
    color: var(--zl-primary);
    margin: 40px 0 15px;
    font-size: 1.6rem;
}

.zl-page-content h3 {
    color: var(--zl-accent);
    margin: 30px 0 10px;
    font-size: 1.3rem;
}

.zl-page-content p {
    margin-bottom: 15px;
    line-height: 1.9;
    font-size: 0.95rem;
}

.zl-page-content ul, .zl-page-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.zl-page-content li {
    margin-bottom: 8px;
    color: var(--zl-text-sub);
    line-height: 1.8;
}

/* === 内页图片画廊 === */
.zl-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.zl-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--zl-radius);
    border: 1px solid rgba(192, 158, 111, 0.2);
    transition: all 0.3s ease;
}

.zl-gallery img:hover {
    border-color: var(--zl-accent);
    box-shadow: var(--zl-shadow);
}

/* === 视频区域 === */
.zl-video-section {
    margin: 30px 0;
}

.zl-video-wrapper {
    position: relative;
    border: 1px solid rgba(192, 158, 111, 0.2);
    border-radius: var(--zl-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.zl-video-wrapper video {
    width: 100%;
    display: block;
}

/* === FAQ区域 === */
.zl-faq-item {
    border: 1px solid rgba(192, 158, 111, 0.2);
    border-radius: var(--zl-radius);
    margin-bottom: 10px;
    overflow: hidden;
}

.zl-faq-question {
    padding: 15px 20px;
    background: rgba(26, 26, 26, 0.8);
    color: var(--zl-primary);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.zl-faq-question:hover {
    background: rgba(192, 158, 111, 0.1);
}

.zl-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--zl-text-sub);
    line-height: 1.8;
}

.zl-faq-item.zl-active .zl-faq-answer {
    padding: 15px 20px;
    max-height: 500px;
}

/* === 表格 === */
.zl-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.zl-table th {
    background: rgba(139, 0, 0, 0.3);
    color: var(--zl-primary);
    padding: 12px 15px;
    text-align: left;
    font-size: 0.9rem;
}

.zl-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(192, 158, 111, 0.1);
    color: var(--zl-text);
    font-size: 0.9rem;
}

/* === 表单 === */
.zl-form-group {
    margin-bottom: 20px;
}

.zl-form-label {
    display: block;
    color: var(--zl-primary);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.zl-form-input,
.zl-form-select,
.zl-form-textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(192, 158, 111, 0.3);
    border-radius: var(--zl-radius);
    color: var(--zl-text);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.zl-form-input:focus,
.zl-form-select:focus,
.zl-form-textarea:focus {
    outline: none;
    border-color: var(--zl-accent);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
}

.zl-form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* === 工具类 === */
.zl-text-gold {
    color: var(--zl-accent);
}

.zl-text-center {
    text-align: center;
}

.zl-mt-20 {
    margin-top: 20px;
}

.zl-mb-20 {
    margin-bottom: 20px;
}

.zl-gold-border {
    border: 1px solid var(--zl-primary);
}

.zl-glow {
    box-shadow: var(--zl-shadow);
}
