/* ============================================
   真人百家乐 - 全局样式表
   CSS前缀: bjl-
   配色: 午夜蓝 #0C0C1D | 鎏金 #B8860B | 酒红 #800020 | 米白 #E8DCC8
   ============================================ */

/* --- 干扰码隐藏 --- */
.dealer-jammer-block {
    display: none;
}

/* --- CSS Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Source Han Sans", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    background-color: #0C0C1D;
    color: #E8DCC8;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Source Han Serif", "Noto Serif SC", "STSong", "SimSun", serif;
    color: #E8DCC8;
    line-height: 1.4;
    font-weight: 700;
}

a {
    color: #B8860B;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d4a017;
}

a:focus-visible {
    outline: 2px solid #B8860B;
    outline-offset: 3px;
    border-radius: 2px;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #B8860B;
    outline-offset: 2px;
    border-radius: 2px;
}

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

ul, ol {
    list-style: none;
}

/* --- 容器 --- */
.bjl-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .bjl-container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .bjl-container {
        padding: 0 60px;
    }
}

/* --- 导航栏 --- */
.bjl-header {
    background-color: #0C0C1D;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    padding: 0;
    position: relative;
    z-index: 100;
}

.bjl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    max-width: 1440px;
    margin: 0 auto;
}

.bjl-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.bjl-logo-icon {
    width: 40px;
    height: 40px;
}

.bjl-logo-text {
    font-family: "Source Han Serif", "Noto Serif SC", serif;
    font-size: 1.25rem;
    color: #B8860B;
    font-weight: 700;
    letter-spacing: 2px;
}

.bjl-nav-list {
    display: none;
    gap: 0;
}

@media (min-width: 768px) {
    .bjl-nav-list {
        display: flex;
        gap: 8px;
    }
}

@media (min-width: 1024px) {
    .bjl-nav-list {
        gap: 16px;
    }
}

.bjl-nav-item {
    position: relative;
}

.bjl-nav-link {
    font-family: "Source Han Serif", "Noto Serif SC", serif;
    font-size: 0.9rem;
    color: #E8DCC8;
    padding: 8px 12px;
    display: block;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.bjl-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #B8860B;
    transition: width 0.3s ease;
}

.bjl-nav-link:hover,
.bjl-nav-link.bjl-active {
    color: #B8860B;
}

.bjl-nav-link:hover::after,
.bjl-nav-link.bjl-active::after {
    width: 80%;
}

/* --- 汉堡菜单 --- */
.bjl-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 200;
}

@media (min-width: 768px) {
    .bjl-hamburger {
        display: none;
    }
}

.bjl-hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #B8860B;
    transition: all 0.3s ease;
    display: block;
}

.bjl-hamburger.bjl-open .bjl-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.bjl-hamburger.bjl-open .bjl-hamburger-line:nth-child(2) {
    opacity: 0;
}

.bjl-hamburger.bjl-open .bjl-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- 移动端侧边菜单 --- */
.bjl-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #0a0a18;
    border-left: 1px solid rgba(184, 134, 11, 0.3);
    padding: 80px 30px 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 150;
    overflow-y: auto;
}

.bjl-mobile-menu.bjl-open {
    right: 0;
}

.bjl-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 140;
}

.bjl-mobile-overlay.bjl-open {
    opacity: 1;
    visibility: visible;
}

.bjl-mobile-nav-link {
    display: block;
    font-family: "Source Han Serif", "Noto Serif SC", serif;
    font-size: 1.1rem;
    color: #E8DCC8;
    padding: 14px 0;
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.bjl-mobile-nav-link:hover,
.bjl-mobile-nav-link.bjl-active {
    color: #B8860B;
    padding-left: 10px;
}

/* --- 通用按钮 --- */
.bjl-button {
    display: inline-block;
    font-family: "Source Han Serif", "Noto Serif SC", serif;
    font-size: 1rem;
    color: #0C0C1D;
    background: linear-gradient(135deg, #B8860B, #d4a017);
    padding: 14px 36px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.bjl-button:hover {
    background: linear-gradient(135deg, #d4a017, #e6b422);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.5);
    transform: translateY(-2px);
    color: #0C0C1D;
}

.bjl-button-outline {
    display: inline-block;
    font-family: "Source Han Serif", "Noto Serif SC", serif;
    font-size: 1rem;
    color: #B8860B;
    background: transparent;
    padding: 12px 34px;
    border: 1px solid #B8860B;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 1px;
}

.bjl-button-outline:hover {
    background-color: rgba(184, 134, 11, 0.1);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.2);
    color: #B8860B;
}

/* --- 首页: 至尊迎宾 --- */
.bjl-royal-welcome {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.bjl-royal-welcome::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 12, 29, 0.5) 0%, rgba(12, 12, 29, 0.85) 100%);
}

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

.bjl-welcome-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .bjl-welcome-content h1 {
        font-size: 2.8rem;
    }
    .bjl-royal-welcome {
        min-height: 80vh;
    }
}

@media (min-width: 1024px) {
    .bjl-welcome-content h1 {
        font-size: 3.2rem;
    }
}

.bjl-welcome-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

/* --- 通用区块 --- */
.bjl-section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .bjl-section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .bjl-section {
        padding: 100px 0;
    }
}

.bjl-section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 16px;
    position: relative;
}

@media (min-width: 768px) {
    .bjl-section-title {
        font-size: 2.2rem;
    }
}

.bjl-section-subtitle {
    text-align: center;
    font-size: 1rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.bjl-gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #B8860B, transparent);
    margin: 16px auto 24px;
}

/* --- 真人殿堂 (卡片) --- */
.bjl-live-hall {
    background-color: #0e0e22;
}

.bjl-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .bjl-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bjl-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bjl-game-card {
    background: linear-gradient(145deg, #12122a, #0e0e22);
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bjl-game-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 134, 11, 0.4);
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.15);
}

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

.bjl-game-card-body {
    padding: 20px;
}

.bjl-game-card-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #B8860B;
}

.bjl-game-card-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 16px;
}

.bjl-game-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

.bjl-status-live {
    color: #4caf50;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bjl-status-dot {
    width: 8px;
    height: 8px;
    background-color: #4caf50;
    border-radius: 50%;
    animation: bjl-pulse 2s infinite;
}

@keyframes bjl-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* --- 品牌故事 --- */
.bjl-brand-story {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.bjl-brand-story::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 12, 29, 0.92) 0%, rgba(12, 12, 29, 0.7) 100%);
}

.bjl-brand-story-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .bjl-brand-story-inner {
        grid-template-columns: 1fr 1fr;
    }
}

.bjl-brand-story-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .bjl-brand-story-text h2 {
        font-size: 2.2rem;
    }
}

.bjl-brand-story-text p {
    margin-bottom: 16px;
    opacity: 0.85;
    line-height: 2;
}

.bjl-brand-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.bjl-brand-value-item {
    text-align: center;
    padding: 20px 10px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 6px;
    background: rgba(12, 12, 29, 0.5);
}

.bjl-brand-value-item span {
    display: block;
    font-family: "Source Han Serif", "Noto Serif SC", serif;
    font-size: 1rem;
    color: #B8860B;
    margin-top: 8px;
}

/* --- 优选荷官 --- */
.bjl-featured-dealers {
    background-color: #0C0C1D;
}

.bjl-dealer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .bjl-dealer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bjl-dealer-card {
    text-align: center;
    background: linear-gradient(145deg, #12122a, #0e0e22);
    border: 1px solid rgba(184, 134, 11, 0.12);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bjl-dealer-card:hover {
    border-color: rgba(184, 134, 11, 0.35);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.12);
}

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

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

.bjl-dealer-name {
    font-size: 1.2rem;
    color: #B8860B;
    margin-bottom: 6px;
}

.bjl-dealer-title {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* --- 至尊包厢入口 --- */
.bjl-vip-lounge {
    position: relative;
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
}

.bjl-vip-lounge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 12, 29, 0.7), rgba(12, 12, 29, 0.9));
}

.bjl-vip-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.bjl-vip-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.bjl-vip-content p {
    margin-bottom: 30px;
    opacity: 0.85;
    line-height: 1.9;
}

.bjl-vip-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .bjl-vip-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bjl-vip-feature {
    padding: 16px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 6px;
    background: rgba(12, 12, 29, 0.5);
}

.bjl-vip-feature-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #B8860B;
}

.bjl-vip-feature span {
    display: block;
    font-size: 0.85rem;
}

/* --- 优胜者榜 --- */
.bjl-winners-gallery {
    background-color: #0e0e22;
}

.bjl-winners-list {
    max-height: 400px;
    overflow: hidden;
    position: relative;
}

.bjl-winners-scroll {
    animation: bjl-scroll 20s linear infinite;
}

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

.bjl-winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    transition: background 0.3s ease;
}

.bjl-winner-item:hover {
    background: rgba(184, 134, 11, 0.05);
}

.bjl-winner-name {
    font-size: 0.95rem;
    color: #E8DCC8;
}

.bjl-winner-game {
    font-size: 0.85rem;
    opacity: 0.6;
}

.bjl-winner-amount {
    font-family: "Source Han Serif", "Noto Serif SC", serif;
    font-size: 1.1rem;
    color: #B8860B;
    font-weight: 700;
}

/* --- 游戏指南 --- */
.bjl-baccarat-guide {
    background-color: #0C0C1D;
}

.bjl-guide-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .bjl-guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bjl-guide-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bjl-guide-item {
    padding: 30px;
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 8px;
    background: linear-gradient(145deg, #12122a, #0e0e22);
    transition: all 0.3s ease;
}

.bjl-guide-item:hover {
    border-color: rgba(184, 134, 11, 0.35);
}

.bjl-guide-item h3 {
    font-size: 1.15rem;
    color: #B8860B;
    margin-bottom: 12px;
}

.bjl-guide-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.8;
}

/* --- 公平认证 --- */
.bjl-fairness-cert {
    position: relative;
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
}

.bjl-fairness-cert::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 29, 0.88);
}

.bjl-fairness-content
 {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.bjl-fairness-content h2 {
    margin-bottom: 20px;
}

.bjl-fairness-content p {
    margin-bottom: 24px;
    opacity: 0.85;
    line-height: 1.9;
}

.bjl-cert-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.bjl-cert-badge {
    padding: 16px 24px;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 6px;
    background: rgba(12, 12, 29, 0.5);
    text-align: center;
}

.bjl-cert-badge span {
    display: block;
    font-size: 0.85rem;
    color: #B8860B;
    margin-top: 8px;
}

/* --- 移动体验 --- */
.bjl-mobile-exp {
    background-color: #0e0e22;
}

.bjl-mobile-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .bjl-mobile-inner {
        grid-template-columns: 1fr 1fr;
    }
}

.bjl-mobile-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.bjl-mobile-text p {
    margin-bottom: 16px;
    opacity: 0.85;
    line-height: 1.9;
}

.bjl-mobile-advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.bjl-advantage-item {
    padding: 16px;
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 6px;
    text-align: center;
    background: rgba(12, 12, 29, 0.5);
}

.bjl-advantage-item span {
    display: block;
    font-size: 0.85rem;
    margin-top: 6px;
}

.bjl-mobile-phone {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* --- 联系我们 --- */
.bjl-contact-support {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.bjl-contact-support::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 29, 0.9);
}

.bjl-contact-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .bjl-contact-inner {
        grid-template-columns: 1fr 1fr;
    }
}

.bjl-contact-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.bjl-contact-text p {
    margin-bottom: 16px;
    opacity: 0.85;
    line-height: 1.9;
}

.bjl-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.bjl-contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 6px;
    background: rgba(12, 12, 29, 0.5);
}

.bjl-contact-method-icon {
    color: #B8860B;
    font-size: 1.2rem;
    min-width: 24px;
}

.bjl-contact-method span {
    font-size: 0.95rem;
}

/* --- 页脚 --- */
.bjl-footer {
    background-color: #0C0C1D;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
    padding: 60px 0 0;
}

.bjl-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .bjl-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bjl-footer-col h3 {
    font-size: 1.1rem;
    color: #B8860B;
    margin-bottom: 20px;
    font-family: "Source Han Serif", "Noto Serif SC", serif;
}

.bjl-footer-link {
    display: block;
    color: #E8DCC8;
    font-size: 0.9rem;
    padding: 6px 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.bjl-footer-link:hover {
    opacity: 1;
    color: #B8860B;
    padding-left: 6px;
}

.bjl-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.bjl-footer-brand-text {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 16px;
}

.bjl-footer-cert {
    font-size: 0.8rem;
    color: #B8860B;
    opacity: 0.8;
    padding: 10px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 4px;
    text-align: center;
}

.bjl-footer-bottom {
    border-top: 1px solid rgba(184, 134, 11, 0.15);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

.bjl-footer-bottom a {
    color: #E8DCC8;
    opacity: 0.7;
    margin: 0 8px;
}

.bjl-footer-bottom a:hover {
    color: #B8860B;
    opacity: 1;
}

/* --- 内页通用 --- */
.bjl-page-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.bjl-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 12, 29, 0.6), rgba(12, 12, 29, 0.9));
}

.bjl-page-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.bjl-page-hero-content h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .bjl-page-hero-content h1 {
        font-size: 2.6rem;
    }
}

.bjl-page-hero-content p {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* --- 内页内容区 --- */
.bjl-content-section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .bjl-content-section {
        padding: 80px 0;
    }
}

.bjl-article {
    max-width: 900px;
    margin: 0 auto;
}

.bjl-article h2 {
    font-size: 1.6rem;
    margin: 40px 0 16px;
    color: #B8860B;
}

.bjl-article h3 {
    font-size: 1.3rem;
    margin: 30px 0 12px;
    color: #E8DCC8;
}

.bjl-article p {
    margin-bottom: 20px;
    line-height: 2;
    opacity: 0.88;
}

.bjl-article-img {
    width: 100%;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid rgba(184, 134, 11, 0.15);
}

.bjl-article blockquote {
    border-left: 3px solid #B8860B;
    padding: 16px 24px;
    margin: 30px 0;
    background: rgba(184, 134, 11, 0.05);
    border-radius: 0 6px 6px 0;
    font-style: italic;
    opacity: 0.9;
}

.bjl-article ul,
.bjl-article ol {
    margin: 16px 0 24px 24px;
}

.bjl-article li {
    padding: 6px 0;
    line-height: 1.8;
    position: relative;
    padding-left: 16px;
}

.bjl-article li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background-color: #B8860B;
    border-radius: 50%;
}

.bjl-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.bjl-info-table th,
.bjl-info-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
    font-size: 0.9rem;
}

.bjl-info-table th {
    color: #B8860B;
    font-family: "Source Han Serif", "Noto Serif SC", serif;
    font-weight: 600;
    background: rgba(184, 134, 11, 0.05);
}

.bjl-info-table tr:hover td {
    background: rgba(184, 134, 11, 0.03);
}

/* --- VIP包厢页面 --- */
.bjl-vip-page-section {
    background-color: #0a0a18;
}

.bjl-vip-room-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .bjl-vip-room-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.bjl-vip-room-card {
    background: linear-gradient(145deg, #12122a, #0a0a18);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.4s ease;
}

.bjl-vip-room-card:hover {
    border-color: rgba(184, 134, 11, 0.5);
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.15);
}

.bjl-vip-room-card h3 {
    font-size: 1.3rem;
    color: #B8860B;
    margin-bottom: 12px;
}

.bjl-vip-room-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* --- 路单分析区 --- */
.bjl-roadmap-section {
    background-color: #0e0e22;
}

.bjl-roadmap-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .bjl-roadmap-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bjl-roadmap-card {
    background: linear-gradient(145deg, #12122a, #0a0a18);
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 8px;
    padding: 24px;
}

.bjl-roadmap-card h3 {
    font-size: 1.1rem;
    color: #B8860B;
    margin-bottom: 16px;
}

.bjl-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 3px;
}

.bjl-road-cell {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(184, 134, 11, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

.bjl-road-banker {
    background-color: rgba(128, 0, 32, 0.6);
    border-color: #800020;
}

.bjl-road-player {
    background-color: rgba(30, 60, 150, 0.6);
    border-color: #1e3c96;
}

.bjl-road-tie {
    background-color: rgba(76, 175, 80, 0.4);
    border-color: #4caf50;
}

/* --- APP下载页 --- */
.bjl-app-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.bjl-app-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 12, 29, 0.95) 0%, rgba(12, 12, 29, 0.6) 100%);
}

.bjl-app-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .bjl-app-hero-inner {
        grid-template-columns: 1fr 1fr;
    }
}

.bjl-app-text h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .bjl-app-text h1 {
        font-size: 2.4rem;
    }
}

.bjl-app-text p {
    margin-bottom: 16px;
    opacity: 0.85;
    line-height: 1.9;
}

.bjl-app-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.bjl-app-advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 1024px) {
    .bjl-app-advantages {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bjl-app-adv-item {
    text-align: center;
    padding: 24px 16px;
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 8px;
    background: rgba(12, 12, 29, 0.5);
    transition: all 0.3s ease;
}

.bjl-app-adv-item:hover {
    border-color: rgba(184, 134, 11, 0.35);
}

.bjl-app-adv-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
    color: #B8860B;
}

.bjl-app-adv-item h3 {
    font-size: 1rem;
    color: #B8860B;
    margin-bottom: 8px;
}

.bjl-app-adv-item p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* --- 微光粒子动画 --- */
.bjl-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bjl-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(184, 134, 11, 0.4);
    border-radius: 50%;
    animation: bjl-float linear infinite;
}

@keyframes bjl-float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* --- 淡入动画 --- */
.bjl-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bjl-fade-in.bjl-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- SVG Logo内联 --- */
.bjl-logo-svg {
    width: 40px;
    height: 40px;
}
