/* ============================================
   问鼎娱乐 - 青铜鼎纹上古风主题样式
   CSS前缀: wd-
   平台备案编号: SPORTS-WD-2026-0701
   ============================================ */

/* --- Google Fonts Import (本地化替代) --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&family=Noto+Serif+SC:wght@400;600;700;900&display=swap');

/* --- CSS Variables --- */
:root {
    --wd-primary: #4A4031;
    --wd-secondary: #8C7853;
    --wd-accent: #E84D4D;
    --wd-jade: #A4C8A1;
    --wd-bg: #1A1A1A;
    --wd-text: #E0D8C7;
    --wd-text-sub: #9A8F7B;
    --wd-shadow: 0 4px 15px rgba(232, 77, 77, 0.2);
    --wd-radius: 4px;
    --wd-font-title: 'Noto Serif SC', serif;
    --wd-font-body: 'Noto Sans SC', sans-serif;
    --wd-bronze-gradient: linear-gradient(135deg, #8C7853 0%, #4A4031 50%, #8C7853 100%);
    --wd-accent-gradient: linear-gradient(135deg, #E84D4D 0%, #c43333 100%);
}

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

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

body {
    font-family: var(--wd-font-body);
    background-color: var(--wd-bg);
    color: var(--wd-text);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--wd-text);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--wd-font-title);
    font-weight: 700;
    line-height: 1.4;
    color: var(--wd-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(--wd-text-sub);
}

/* --- Container --- */
.wd-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Base --- */
.wd-section {
    padding: 80px 0;
    position: relative;
}

.wd-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.wd-section-title h2 {
    font-size: 2.2rem;
    color: var(--wd-text);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.wd-section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--wd-accent);
    border-radius: 2px;
}

.wd-section-title p {
    margin-top: 15px;
    font-size: 1.05rem;
    color: var(--wd-text-sub);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Navigation --- */
.wd-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--wd-accent);
    transition: all 0.3s ease;
}

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

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

.wd-logo img {
    width: 45px;
    height: 45px;
    border-radius: 4px;
}

.wd-logo-text {
    font-family: var(--wd-font-title);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--wd-text);
    letter-spacing: 2px;
}

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

.wd-nav-links li a {
    display: block;
    padding: 8px 14px;
    color: var(--wd-text-sub);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

.wd-nav-actions {
    display: flex;
    gap: 10px;
}

.wd-btn-login {
    padding: 8px 20px;
    border: 1px solid var(--wd-secondary);
    border-radius: var(--wd-radius);
    color: var(--wd-secondary);
    font-size: 0.9rem;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--wd-font-body);
}

.wd-btn-login:hover {
    background: var(--wd-secondary);
    color: var(--wd-bg);
}

.wd-btn-register {
    padding: 8px 20px;
    border: 1px solid var(--wd-accent);
    border-radius: var(--wd-radius);
    color: #fff;
    font-size: 0.9rem;
    background: var(--wd-accent);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--wd-font-body);
}

.wd-btn-register:hover {
    background: #c43333;
    box-shadow: var(--wd-shadow);
}

/* Mobile Menu Toggle */
.wd-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.wd-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--wd-text);
    transition: all 0.3s ease;
}

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

.wd-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.wd-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.85) 100%);
}

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

.wd-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.wd-hero-content h1 .wd-keyword-highlight {
    color: var(--wd-accent);
    text-shadow: 0 0 20px rgba(232, 77, 77, 0.4);
}

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

.wd-hero-countdown {
    margin: 30px 0;
    padding: 20px;
    background: rgba(74, 64, 49, 0.4);
    border: 1px solid var(--wd-secondary);
    border-radius: var(--wd-radius);
    display: inline-block;
}

.wd-countdown-label {
    font-size: 0.9rem;
    color: var(--wd-text-sub);
    margin-bottom: 10px;
}

.wd-countdown-timer {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.wd-countdown-item {
    text-align: center;
}

.wd-countdown-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--wd-accent);
    font-family: var(--wd-font-title);
}

.wd-countdown-unit {
    font-size: 0.75rem;
    color: var(--wd-text-sub);
}

.wd-hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.wd-btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--wd-accent-gradient);
    color: #fff;
    border: none;
    border-radius: var(--wd-radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--wd-font-body);
    position: relative;
    overflow: hidden;
}

.wd-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(140,120,83,0.3), transparent);
    transition: left 0.5s ease;
}

.wd-btn-primary:hover {
    box-shadow: var(--wd-shadow);
    transform: translateY(-2px);
    color: #fff;
}

.wd-btn-primary:hover::before {
    left: 100%;
}

.wd-btn-outline {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--wd-secondary);
    border: 2px solid var(--wd-secondary);
    border-radius: var(--wd-radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--wd-font-body);
}

.wd-btn-outline:hover {
    background: var(--wd-secondary);
    color: var(--wd-bg);
    transform: translateY(-2px);
}

.wd-btn-small {
    display: inline-block;
    padding: 8px 20px;
    background: var(--wd-accent);
    color: #fff;
    border: none;
    border-radius: var(--wd-radius);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.wd-btn-small:hover {
    background: #c43333;
    color: #fff;
    box-shadow: var(--wd-shadow);
}

/* --- Events Section --- */
.wd-events {
    background-size: cover;
    background-position: center;
    position: relative;
}

.wd-events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.88);
}

.wd-events .wd-container {
    position: relative;
    z-index: 1;
}

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

.wd-event-card {
    background: rgba(74, 64, 49, 0.3);
    border: 1px solid var(--wd-secondary);
    border-radius: var(--wd-radius);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.wd-event-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: var(--wd-secondary);
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

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

.wd-event-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 2px solid var(--wd-secondary);
    object-fit: cover;
}

.wd-event-card h3 {
    color: var(--wd-text);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.wd-event-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* --- Video Section --- */
.wd-video-section {
    background: var(--wd-bg);
}

.wd-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.wd-video-card {
    background: rgba(74, 64, 49, 0.2);
    border: 1px solid rgba(140, 120, 83, 0.3);
    border-radius: var(--wd-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.wd-video-card:hover {
    border-color: var(--wd-accent);
    box-shadow: var(--wd-shadow);
}

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

.wd-video-card h3 {
    padding: 15px;
    font-size: 1rem;
    color: var(--wd-text);
}

/* --- Odds Section --- */
.wd-odds-section {
    position: relative;
    overflow: hidden;
}

.wd-odds-scroll {
    background: rgba(74, 64, 49, 0.2);
    border: 1px solid var(--wd-secondary);
    border-radius: var(--wd-radius);
    padding: 20px;
    overflow-x: auto;
}

.wd-odds-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

.wd-odds-table th {
    padding: 12px 15px;
    text-align: left;
    color: var(--wd-text-sub);
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(140, 120, 83, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wd-odds-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(140, 120, 83, 0.15);
    font-size: 0.95rem;
}

.wd-odds-table tr {
    transition: background 0.3s ease;
}

.wd-odds-table tr:hover {
    background: rgba(232, 77, 77, 0.08);
}

.wd-odds-value {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(74, 64, 49, 0.4);
    border: 1px solid var(--wd-secondary);
    border-radius: var(--wd-radius);
    color: var(--wd-text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 55px;
    text-align: center;
}

.wd-odds-value:hover {
    background: var(--wd-accent);
    border-color: var(--wd-accent);
    color: #fff;
}

.wd-match-teams {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wd-match-time {
    color: var(--wd-accent);
    font-weight: 600;
    font-size: 0.85rem;
}

/* --- APP Download Section --- */
.wd-app-section {
    background: linear-gradient(135deg, rgba(74,64,49,0.15) 0%, rgba(26,26,26,1) 100%);
}

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

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

.wd-app-info h2 {
    margin-bottom: 20px;
}

.wd-app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.wd-app-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(74, 64, 49, 0.2);
    border-radius: var(--wd-radius);
    border: 1px solid rgba(140, 120, 83, 0.2);
}

.wd-app-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--wd-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.wd-app-feature span {
    font-size: 0.9rem;
    color: var(--wd-text);
    font-weight: 500;
}

.wd-download-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* --- Member Registration Section --- */
.wd-register-section {
    position: relative;
    background-size: cover;
    background-position: center;
}

.wd-register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.9);
}

.wd-register-section .wd-container {
    position: relative;
    z-index: 1;
}

.wd-register-box {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(74, 64, 49, 0.3);
    border: 1px solid var(--wd-secondary);
    border-radius: var(--wd-radius);
    padding: 40px;
    text-align: center;
}

.wd-form-group {
    margin-bottom: 15px;
}

.wd-form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(140, 120, 83, 0.3);
    border-radius: var(--wd-radius);
    color: var(--wd-text);
    font-size: 0.95rem;
    font-family: var(--wd-font-body);
    transition: border-color 0.3s ease;
}

.wd-form-input:focus {
    outline: none;
    border-color: var(--wd-accent);
}

.wd-form-input::placeholder {
    color: var(--wd-text-sub);
}

/* --- Prediction Section --- */
.wd-prediction-section {
    background: var(--wd-bg);
}

.wd-prediction-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.wd-prediction-card {
    background: rgba(74, 64, 49, 0.2);
    border: 1px solid rgba(140, 120, 83, 0.3);
    border-radius: var(--wd-radius);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.wd-prediction-card:hover {
    border-color: var(--wd-jade);
    box-shadow: 0 4px 15px rgba(164, 200, 161, 0.15);
}

.wd-prediction-teams {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--wd-text);
    margin-bottom: 10px;
}

.wd-prediction-vs {
    color: var(--wd-accent);
    margin: 0 8px;
}

.wd-prediction-options {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.wd-prediction-btn {
    padding: 8px 18px;
    background: rgba(74, 64, 49, 0.4);
    border: 1px solid var(--wd-secondary);
    border-radius: var(--wd-radius);
    color: var(--wd-text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--wd-font-body);
    font-size: 0.85rem;
}

.wd-prediction-btn:hover {
    background: var(--wd-jade);
    border-color: var(--wd-jade);
    color: var(--wd-bg);
}

/* --- Articles Section --- */
.wd-articles-section {
    background: var(--wd-bg);
}

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

.wd-article-card {
    background: rgba(74, 64, 49, 0.2);
    border: 1px solid rgba(140, 120, 83, 0.2);
    border-radius: var(--wd-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.wd-article-card:hover {
    transform: translateY(-5px);
    border-color: var(--wd-secondary);
    box-shadow: var(--wd-shadow);
}

.wd-article-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.wd-article-card-body {
    padding: 20px;
}

.wd-article-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--wd-text);
}

.wd-article-card p {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* --- Winners Section --- */
.wd-winners-section {
    background: linear-gradient(135deg, rgba(232,77,77,0.05) 0%, var(--wd-bg) 100%);
}

.wd-winners-scroll {
    max-height: 350px;
    overflow: hidden;
    position: relative;
}

.wd-winners-list {
    list-style: none;
}

.wd-winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(140, 120, 83, 0.15);
    transition: background 0.3s ease;
}

.wd-winner-item:hover {
    background: rgba(74, 64, 49, 0.2);
}

.wd-winner-name {
    color: var(--wd-text);
    font-weight: 500;
}

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

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

/* --- Trust Section --- */
.wd-trust-section {
    background: rgba(74, 64, 49, 0.1);
    border-top: 1px solid rgba(140, 120, 83, 0.2);
}

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

.wd-trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.wd-trust-badge {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.wd-trust-badge:hover {
    filter: brightness(1.1);
}

.wd-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: center;
}

.wd-partner-logo {
    padding: 15px;
    background: rgba(74, 64, 49, 0.2);
    border: 1px solid rgba(140, 120, 83, 0.2);
    border-radius: var(--wd-radius);
    text-align: center;
    font-size: 0.8rem;
    color: var(--wd-text-sub);
    transition: all 0.3s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wd-partner-logo:hover {
    border-color: var(--wd-secondary);
    background: rgba(74, 64, 49, 0.4);
}

/* --- Footer --- */
.wd-footer {
    background: var(--wd-bg);
    border-top: 2px solid var(--wd-secondary);
    padding: 60px 0 0;
}

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

.wd-footer-brand img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.wd-footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.wd-footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--wd-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wd-text-sub);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.wd-footer-social a:hover {
    background: var(--wd-accent);
    border-color: var(--wd-accent);
    color: #fff;
}

.wd-footer h4 {
    color: var(--wd-text);
    margin-bottom: 20px;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 10px;
}

.wd-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--wd-accent);
}

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

.wd-footer-links li {
    margin-bottom: 8px;
}

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

.wd-footer-links li a:hover {
    color: var(--wd-text);
    padding-left: 5px;
}

.wd-footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.wd-footer-seo {
    padding: 20px 0;
    border-top: 1px solid rgba(140, 120, 83, 0.2);
    border-bottom: 1px solid rgba(140, 120, 83, 0.2);
}

.wd-footer-seo p {
    font-size: 0.8rem;
    color: var(--wd-text-sub);
    line-height: 1.8;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.wd-footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.wd-footer-bottom p {
    font-size: 0.8rem;
    color: var(--wd-text-sub);
    margin-bottom: 5px;
}

/* --- Breadcrumb --- */
.wd-breadcrumb {
    padding: 15px 0;
    margin-top: 70px;
}

.wd-breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.wd-breadcrumb-list li {
    font-size: 0.85rem;
    color: var(--wd-text-sub);
}

.wd-breadcrumb-list li a {
    color: var(--wd-secondary);
}

.wd-breadcrumb-list li a:hover {
    color: var(--wd-text);
}

.wd-breadcrumb-list li + li::before {
    content: '>';
    margin-right: 8px;
    color: var(--wd-text-sub);
}

/* --- Page Header --- */
.wd-page-header {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.wd-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.85);
}

.wd-page-header .wd-container {
    position: relative;
    z-index: 1;
}

.wd-page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.wd-page-header p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* --- Content Page --- */
.wd-content-section {
    padding: 60px 0;
}

.wd-content-section h2 {
    margin-top: 40px;
    margin-bottom: 15px;
}

.wd-content-section h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.wd-content-section p {
    margin-bottom: 15px;
    line-height: 1.9;
}

.wd-content-section ul,
.wd-content-section ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.wd-content-section li {
    margin-bottom: 8px;
    color: var(--wd-text-sub);
    line-height: 1.7;
}

/* --- Betting Hall (3-column layout) --- */
.wd-betting-hall {
    display: grid;
    grid-template-columns: 220px 1fr 280px;
    gap: 20px;
    min-height: 600px;
}

.wd-betting-sidebar {
    background: rgba(74, 64, 49, 0.2);
    border: 1px solid rgba(140, 120, 83, 0.2);
    border-radius: var(--wd-radius);
    padding: 20px;
}

.wd-betting-sidebar h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--wd-text);
}

.wd-sport-list {
    list-style: none;
}

.wd-sport-list li {
    margin-bottom: 5px;
}

.wd-sport-list li a {
    display: block;
    padding: 10px 12px;
    color: var(--wd-text-sub);
    border-radius: var(--wd-radius);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.wd-sport-list li a:hover,
.wd-sport-list li a.wd-active {
    background: rgba(232, 77, 77, 0.1);
    color: var(--wd-accent);
}

.wd-betting-main {
    background: rgba(74, 64, 49, 0.1);
    border: 1px solid rgba(140, 120, 83, 0.15);
    border-radius: var(--wd-radius);
    padding: 20px;
}

.wd-betting-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(140, 120, 83, 0.2);
    padding-bottom: 10px;
}

.wd-betting-tab {
    padding: 8px 18px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--wd-radius);
    color: var(--wd-text-sub);
    cursor: pointer;
    font-family: var(--wd-font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.wd-betting-tab.wd-active,
.wd-betting-tab:hover {
    background: rgba(232, 77, 77, 0.1);
    color: var(--wd-accent);
    border-color: var(--wd-accent);
}

.wd-betslip {
    background: rgba(74, 64, 49, 0.2);
    border: 1px solid rgba(140, 120, 83, 0.2);
    border-radius: var(--wd-radius);
    padding: 20px;
}

.wd-betslip h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--wd-accent);
}

.wd-betslip-empty {
    text-align: center;
    padding: 30px 0;
    color: var(--wd-text-sub);
    font-size: 0.9rem;
}

/* --- Scroll Animation --- */
.wd-scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.wd-scroll-reveal.wd-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Lazy Load --- */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].wd-loaded {
    opacity: 1;
}

/* --- Bronze Texture Overlay --- */
.wd-bronze-texture {
    position: relative;
}

.wd-bronze-texture::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(140, 120, 83, 0.03) 2px,
        rgba(140, 120, 83, 0.03) 4px
    );
    pointer-events: none;
}

/* --- Divider --- */
.wd-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--wd-secondary), transparent);
    margin: 0;
}

/* --- Image Grid for Inner Pages --- */
.wd-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.wd-image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--wd-radius);
    border: 1px solid rgba(140, 120, 83, 0.2);
}

/* --- FAQ Section --- */
.wd-faq-item {
    border: 1px solid rgba(140, 120, 83, 0.2);
    border-radius: var(--wd-radius);
    margin-bottom: 10px;
    overflow: hidden;
}

.wd-faq-question {
    padding: 15px 20px;
    background: rgba(74, 64, 49, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--wd-text);
    font-weight: 600;
    transition: background 0.3s ease;
}

.wd-faq-question:hover {
    background: rgba(74, 64, 49, 0.4);
}

.wd-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wd-faq-answer.wd-open {
    padding: 15px 20px;
    max-height: 500px;
}

/* --- Utility --- */
.wd-text-center { text-align: center; }
.wd-text-accent { color: var(--wd-accent); }
.wd-text-jade { color: var(--wd-jade); }
.wd-mt-20 { margin-top: 20px; }
.wd-mb-20 { margin-bottom: 20px; }
.wd-mt-40 { margin-top: 40px; }
.wd-mb-40 { margin-bottom: 40px; }
