/* ============================================
   西部牛仔扑克沙龙 - 主样式表
   CSS前缀: wst-
   设计风格: Wild West Saloon
   ============================================ */

/* === Google Fonts Import (本地化备选) === */
@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap');

/* === CSS Variables === */
:root {
    --wst-color-primary: #8B7355;
    --wst-color-secondary: #A0522D;
    --wst-color-accent: #CD853F;
    --wst-color-highlight: #B22222;
    --wst-color-bg: #D2B48C;
    --wst-color-text: #4A2C2A;
    --wst-color-text-alt: #7A5230;
    --wst-color-ice: #E0F0FF;
    --wst-color-dark: #2C1810;
    --wst-color-wood: #5C3A1E;
    --wst-font-title: 'Georgia', 'Old Standard TT', serif;
    --wst-font-body: 'Old Standard TT', 'Georgia', serif;
    --wst-radius: 4px;
    --wst-shadow: 3px 3px 8px rgba(0,0,0,0.4);
    --wst-max-width: 1200px;
    --wst-padding: 24px;
}

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

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

body {
    font-family: var(--wst-font-body);
    color: var(--wst-color-text);
    background-color: var(--wst-color-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

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

.wst-container {
    max-width: var(--wst-max-width);
    margin: 0 auto;
    padding: 0 var(--wst-padding);
}

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

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--wst-font-title);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.wst-h1-title {
    font-size: 2.5rem;
    color: var(--wst-color-accent);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
    padding: 20px 0;
}

h2 {
    font-size: 2rem;
    color: var(--wst-color-text);
}

h3 {
    font-size: 1.5rem;
    color: var(--wst-color-text-alt);
}

p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

/* === Header === */
.wst-header {
    background: linear-gradient(180deg, var(--wst-color-dark) 0%, var(--wst-color-wood) 100%);
    border-bottom: 4px solid var(--wst-color-accent);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.wst-header .wst-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.wst-header-logo img {
    height: 50px;
    width: auto;
    border-radius: var(--wst-radius);
}

.wst-certification {
    font-size: 0.7rem;
    color: var(--wst-color-accent);
    background: rgba(205,133,63,0.15);
    padding: 2px 8px;
    border-radius: var(--wst-radius);
    border: 1px solid var(--wst-color-accent);
    white-space: nowrap;
}

.wst-main-nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
}

.wst-nav-item {
    color: var(--wst-color-bg) !important;
    padding: 8px 14px;
    border-radius: var(--wst-radius);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--wst-font-title);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.wst-nav-item:hover,
.wst-nav-item.active {
    color: var(--wst-color-accent) !important;
    background: rgba(205,133,63,0.15);
    text-shadow: 0 0 8px rgba(205,133,63,0.5);
}

.wst-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wst-search-btn,
.wst-login-btn {
    background: transparent;
    border: 1px solid var(--wst-color-accent);
    color: var(--wst-color-accent);
    padding: 6px 14px;
    border-radius: var(--wst-radius);
    cursor: pointer;
    font-family: var(--wst-font-body);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.wst-search-btn:hover,
.wst-login-btn:hover {
    background: var(--wst-color-accent);
    color: var(--wst-color-dark);
}

.wst-hamburger-menu {
    display: none;
    background: transparent;
    border: none;
    color: var(--wst-color-accent);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 4px 8px;
}

/* === Mobile Nav Overlay === */
.wst-mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44,24,16,0.97);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.wst-mobile-nav-overlay.active {
    display: flex;
}

.wst-mobile-nav-overlay a {
    color: var(--wst-color-bg);
    font-size: 1.4rem;
    font-family: var(--wst-font-title);
    padding: 12px 24px;
    border-bottom: 1px solid rgba(205,133,63,0.3);
    width: 80%;
    text-align: center;
}

.wst-mobile-nav-overlay a:hover {
    color: var(--wst-color-accent);
}

.wst-mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--wst-color-accent);
    font-size: 2rem;
    cursor: pointer;
}

/* === Hero Section (Module 1) === */
.wst-module-1 {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.wst-module-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(44,24,16,0.4) 0%, rgba(44,24,16,0.7) 100%);
    z-index: 1;
}

.wst-module-1 .wst-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: var(--wst-padding);
}

.wst-hero-title {
    font-size: 3.5rem;
    color: var(--wst-color-accent);
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
    margin-bottom: 20px;
    font-family: var(--wst-font-title);
    letter-spacing: 2px;
}

.wst-hero-subtitle {
    font-size: 1.3rem;
    color: var(--wst-color-bg);
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.wst-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--wst-color-secondary) 0%, var(--wst-color-primary) 100%);
    color: var(--wst-color-bg) !important;
    padding: 14px 36px;
    border-radius: var(--wst-radius);
    font-size: 1.2rem;
    font-family: var(--wst-font-title);
    font-weight: 700;
    box-shadow: var(--wst-shadow);
    border: 2px solid var(--wst-color-accent);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: wst-door-swing 3s ease-in-out infinite;
}

.wst-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(205,133,63,0.5);
}

@keyframes wst-door-swing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

/* === Section Common === */
.wst-section {
    padding: 60px 0;
}

.wst-section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 16px;
}

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

/* === Module 2: 今日悬赏令 === */
.wst-module-2 {
    background-color: var(--wst-color-primary);
    padding: 60px 0;
    position: relative;
}

.wst-module-2 .wst-section-title {
    color: var(--wst-color-text);
}

.wst-bounty-card {
    background: url('/assets/images/wst-wanted-poster.webp') center/cover no-repeat;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: var(--wst-radius);
    box-shadow: var(--wst-shadow);
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wst-bounty-card h3 {
    font-size: 1.8rem;
    color: var(--wst-color-text);
    margin-bottom: 16px;
}

.wst-bounty-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.wst-bounty-stat {
    text-align: center;
}

.wst-bounty-stat .wst-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wst-color-highlight);
    display: block;
}

.wst-bounty-stat .wst-stat-label {
    font-size: 0.9rem;
    color: var(--wst-color-text-alt);
}

/* === Module 3: 快枪手入口 === */
.wst-module-3 {
    background-color: var(--wst-color-bg);
    padding: 60px 0;
    text-align: center;
}

.wst-revolver-wheel {
    width: 300px;
    height: 300px;
    margin: 0 auto 30px;
    position: relative;
    cursor: pointer;
}

.wst-revolver-wheel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(205,133,63,0.5));
}

.wst-revolver-wheel:hover img {
    transform: rotate(60deg);
}

.wst-spark-effect {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--wst-color-accent);
    border-radius: 50%;
    animation: wst-spark 1.5s ease-out infinite;
    pointer-events: none;
}

@keyframes wst-spark {
    0% { opacity: 1; transform: translate(0, 0) scale(1); }
    100% { opacity: 0; transform: translate(var(--tx, 50px), var(--ty, -50px)) scale(0); }
}

/* === Module 4: 牛仔排行榜 === */
.wst-module-4 {
    background-color: var(--wst-color-secondary);
    padding: 60px 0;
}

.wst-module-4 .wst-section-title {
    color: var(--wst-color-accent);
}

.wst-leaderboard {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(44,24,16,0.3);
    border-radius: var(--wst-radius);
    overflow: hidden;
    box-shadow: var(--wst-shadow);
}

.wst-leaderboard-row {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(205,133,63,0.2);
    transition: background 0.3s ease;
}

.wst-leaderboard-row:hover {
    background: rgba(205,133,63,0.1);
}

.wst-rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wst-color-accent);
    width: 50px;
    text-align: center;
}

.wst-rank.wst-rank--gold { color: #FFD700; }
.wst-rank.wst-rank--silver { color: #C0C0C0; }
.wst-rank.wst-rank--bronze { color: #CD7F32; }

.wst-player-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 16px;
    border: 2px solid var(--wst-color-accent);
    object-fit: cover;
}

.wst-player-info {
    flex: 1;
}

.wst-player-name {
    font-weight: 700;
    color: var(--wst-color-bg);
    font-size: 1.1rem;
}

.wst-player-wins {
    font-size: 0.85rem;
    color: rgba(210,180,140,0.7);
}

.wst-player-bounty {
    font-weight: 700;
    color: var(--wst-color-accent);
    font-size: 1.1rem;
}

/* === Module 5: 沙龙酒馆故事 === */
.wst-module-5 {
    background-color: var(--wst-color-primary);
    padding: 60px 0;
}

.wst-module-5 .wst-section-title {
    color: var(--wst-color-text);
}

.wst-photo-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wst-photo-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--wst-radius);
    box-shadow: var(--wst-shadow);
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 4/3;
}

.wst-photo-card:hover {
    transform: rotate(-2deg) scale(1.03);
}

.wst-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(30%);
    transition: filter 0.3s ease;
}

.wst-photo-card:hover img {
    filter: sepia(0%);
}

.wst-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44,24,16,0.9));
    padding: 20px 16px 16px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.wst-photo-card:hover .wst-photo-overlay {
    transform: translateY(0);
}

.wst-photo-overlay p {
    color: var(--wst-color-bg);
    font-size: 0.9rem;
    margin: 0;
}

/* === Module 6: 淘金路线图 === */
.wst-module-6 {
    background-color: var(--wst-color-bg);
    padding: 60px 0;
}

.wst-module-6 .wst-section-title {
    color: var(--wst-color-accent);
}

.wst-route-map {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.wst-route-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(139,115,85,0.2);
    border-radius: var(--wst-radius);
    border: 2px dashed var(--wst-color-accent);
    transition: all 0.3s ease;
    cursor: pointer;
}

.wst-route-item:hover {
    background: rgba(205,133,63,0.2);
    transform: translateY(-5px);
    box-shadow: var(--wst-shadow);
}

.wst-route-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.wst-route-item h4 {
    color: var(--wst-color-text);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.wst-route-item p {
    font-size: 0.85rem;
    color: var(--wst-color-text-alt);
    margin: 0;
}

/* === Module 7: 马厩装备店 === */
.wst-module-7 {
    background-color: var(--wst-color-secondary);
    padding: 60px 0;
}

.wst-module-7 .wst-section-title {
    color: var(--wst-color-ice);
}

.wst-shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wst-shop-item {
    background: rgba(44,24,16,0.4);
    border-radius: var(--wst-radius);
    overflow: hidden;
    box-shadow: var(--wst-shadow);
    transition: transform 0.3s ease;
}

.wst-shop-item:hover {
    transform: translateY(-5px);
}

.wst-shop-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wst-shop-item-info {
    padding: 16px;
}

.wst-shop-item-info h4 {
    color: var(--wst-color-accent);
    margin-bottom: 8px;
}

.wst-shop-item-info p {
    color: var(--wst-color-bg);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.wst-shop-price {
    color: var(--wst-color-accent);
    font-size: 1.3rem;
    font-weight: 700;
}

.wst-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--wst-color-accent);
    padding: 8px 20px;
    border: 2px solid var(--wst-color-accent);
    border-radius: var(--wst-radius);
    font-family: var(--wst-font-title);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.wst-btn-secondary:hover {
    background: var(--wst-color-accent);
    color: var(--wst-color-dark);
}

/* === Module 8: 警长人物志 === */
.wst-module-8 {
    background-color: var(--wst-color-primary);
    padding: 60px 0;
}

.wst-module-8 .wst-section-title {
    color: var(--wst-color-text);
}

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

.wst-sheriff-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(44,24,16,0.2);
    border-radius: var(--wst-radius);
    box-shadow: var(--wst-shadow);
    transition: transform 0.3s ease;
}

.wst-sheriff-card:hover {
    transform: translateY(-8px);
}

.wst-sheriff-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 4px solid var(--wst-color-accent);
    object-fit: cover;
}

.wst-sheriff-card h4 {
    color: var(--wst-color-accent);
    margin-bottom: 4px;
}

.wst-sheriff-card .wst-sheriff-role {
    color: var(--wst-color-text-alt);
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-style: italic;
}

.wst-sheriff-card p {
    font-size: 0.9rem;
    color: var(--wst-color-text);
}

/* === Module 9: 仙人掌摄影展 === */
.wst-module-9 {
    background-color: var(--wst-color-bg);
    padding: 60px 0;
}

.wst-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.wst-gallery-item {
    overflow: hidden;
    border-radius: var(--wst-radius);
    box-shadow: var(--wst-shadow);
    aspect-ratio: 1;
    cursor: pointer;
}

.wst-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wst-gallery-item:hover img {
    transform: scale(1.1);
}

@keyframes wst-cactus-sway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(2deg); }
}

.wst-cactus-sway {
    animation: wst-cactus-sway 4s ease-in-out infinite;
}

/* === Module 10: 篝火烧烤会 === */
.wst-module-10 {
    background-color: var(--wst-color-secondary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.wst-module-10 .wst-section-title {
    color: var(--wst-color-accent);
}

.wst-comments-list {
    max-width: 800px;
    margin: 0 auto;
}

.wst-comment-card {
    background: rgba(44,24,16,0.3);
    border-radius: var(--wst-radius);
    padding: 20px;
    margin-bottom: 16px;
    border-left: 4px solid var(--wst-color-accent);
    box-shadow: var(--wst-shadow);
}

.wst-comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.wst-comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--wst-color-accent);
    object-fit: cover;
}

.wst-comment-author {
    font-weight: 700;
    color: var(--wst-color-accent);
}

.wst-comment-date {
    font-size: 0.8rem;
    color: rgba(210,180,140,0.6);
}

.wst-comment-text {
    color: var(--wst-color-bg);
    font-size: 0.95rem;
}

/* === Module 11: 驿站留言板 === */
.wst-module-11 {
    background-color: var(--wst-color-primary);
    padding: 60px 0;
}

.wst-module-11 .wst-section-title {
    color: var(--wst-color-text);
}

.wst-guestbook-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(44,24,16,0.2);
    padding: 30px;
    border-radius: var(--wst-radius);
    box-shadow: var(--wst-shadow);
}

.wst-form-group {
    margin-bottom: 20px;
}

.wst-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--wst-color-text);
}

.wst-form-group input,
.wst-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--wst-color-accent);
    border-radius: var(--wst-radius);
    background: rgba(210,180,140,0.3);
    color: var(--wst-color-text);
    font-family: var(--wst-font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.wst-form-group input:focus,
.wst-form-group textarea:focus {
    outline: none;
    border-color: var(--wst-color-highlight);
    box-shadow: 0 0 8px rgba(178,34,34,0.3);
}

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

/* === Footer === */
.wst-footer {
    background: linear-gradient(180deg, var(--wst-color-wood) 0%, var(--wst-color-dark) 100%);
    padding: 50px 0 0;
    color: var(--wst-color-bg);
    border-top: 4px solid var(--wst-color-accent);
}

.wst-footer .wst-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.wst-footer-col {
    padding: 0 10px;
}

.wst-footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
}

.wst-tagline {
    font-style: italic;
    color: var(--wst-color-accent);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.wst-about-text {
    font-size: 0.9rem;
    color: rgba(210,180,140,0.8);
    line-height: 1.6;
}

.wst-certification-footer {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--wst-color-accent);
    border: 1px solid var(--wst-color-accent);
    padding: 2px 8px;
    border-radius: var(--wst-radius);
}

.wst-footer-heading {
    color: var(--wst-color-accent);
    font-size: 1.2rem;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(205,133,63,0.3);
}

.wst-footer-nav {
    list-style: none;
}

.wst-footer-nav li {
    margin-bottom: 8px;
}

.wst-footer-nav a {
    color: rgba(210,180,140,0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.wst-footer-nav a:hover {
    color: var(--wst-color-accent);
}

.wst-social-links {
    display: flex;
    gap: 12px;
}

.wst-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--wst-color-accent);
    border-radius: 50%;
    color: var(--wst-color-accent);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.wst-social-links a:hover {
    background: var(--wst-color-accent);
    color: var(--wst-color-dark);
}

.wst-map-embed {
    margin-top: 12px;
    border-radius: var(--wst-radius);
    overflow: hidden;
}

.wst-map-embed iframe {
    border: 2px solid var(--wst-color-accent);
    border-radius: var(--wst-radius);
}

.wst-footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(205,133,63,0.3);
    text-align: center;
}

.wst-footer-bottom p {
    font-size: 0.85rem;
    color: rgba(210,180,140,0.6);
    margin-bottom: 8px;
}

.wst-bottom-nav {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.wst-bottom-nav a {
    color: rgba(210,180,140,0.6);
    font-size: 0.8rem;
}

.wst-bottom-nav a:hover {
    color: var(--wst-color-accent);
}

/* === Breadcrumb === */
.wst-breadcrumb {
    padding: 12px 0;
    font-size: 0.85rem;
}

.wst-breadcrumb a {
    color: var(--wst-color-text-alt);
}

.wst-breadcrumb span {
    color: var(--wst-color-text);
    margin: 0 6px;
}

/* === Page Banner === */
.wst-page-banner {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.wst-page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(44,24,16,0.3) 0%, rgba(44,24,16,0.7) 100%);
}

.wst-page-banner h1 {
    position: relative;
    z-index: 2;
    color: var(--wst-color-accent);
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
    font-size: 2.8rem;
    text-align: center;
    padding: 0 20px;
}

/* === Content Layout === */
.wst-content-layout {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    gap: 30px;
    padding: 40px 0;
}

.wst-sidebar {
    padding: 20px;
    background: rgba(139,115,85,0.15);
    border-radius: var(--wst-radius);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.wst-sidebar h3 {
    font-size: 1.1rem;
    color: var(--wst-color-accent);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--wst-color-accent);
}

.wst-sidebar-nav {
    list-style: none;
    margin-bottom: 20px;
}

.wst-sidebar-nav li {
    margin-bottom: 6px;
}

.wst-sidebar-nav a {
    display: block;
    padding: 8px 12px;
    border-radius: var(--wst-radius);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.wst-sidebar-nav a:hover {
    background: rgba(205,133,63,0.15);
    color: var(--wst-color-accent);
}

.wst-main-content {
    min-width: 0;
}

.wst-main-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.wst-internal-link {
    color: var(--wst-color-highlight);
    border-bottom: 1px dashed var(--wst-color-highlight);
    font-weight: 700;
}

.wst-internal-link:hover {
    color: var(--wst-color-accent);
    border-bottom-color: var(--wst-color-accent);
}

/* === Video === */
.wst-video-container {
    margin: 24px 0;
    border-radius: var(--wst-radius);
    overflow: hidden;
    box-shadow: var(--wst-shadow);
}

.wst-video-player {
    width: 100%;
    display: block;
    background: #000;
}

.wst-video-caption {
    padding: 12px 16px;
    background: var(--wst-color-dark);
    color: var(--wst-color-bg);
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

/* === FAQ Section === */
.wst-faq-section {
    padding: 40px 0;
    background: rgba(139,115,85,0.1);
    margin-top: 40px;
    border-radius: var(--wst-radius);
}

.wst-faq-item {
    max-width: 800px;
    margin: 0 auto 16px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--wst-radius);
    overflow: hidden;
    border: 1px solid rgba(205,133,63,0.3);
}

.wst-faq-question {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 700;
    color: var(--wst-color-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.wst-faq-question:hover {
    background: rgba(205,133,63,0.1);
}

.wst-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--wst-color-accent);
    transition: transform 0.3s ease;
}

.wst-faq-item.active .wst-faq-question::after {
    transform: rotate(45deg);
}

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

.wst-faq-item.active .wst-faq-answer {
    padding: 0 20px 16px;
    max-height: 500px;
}

.wst-faq-answer p {
    color: var(--wst-color-text-alt);
    font-size: 0.95rem;
}

/* === Related Articles === */
.wst-related-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.wst-related-card {
    border-radius: var(--wst-radius);
    overflow: hidden;
    box-shadow: var(--wst-shadow);
    background: rgba(139,115,85,0.15);
    transition: transform 0.3s ease;
}

.wst-related-card:hover {
    transform: translateY(-5px);
}

.wst-related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.wst-related-card h4 {
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--wst-color-text);
}

/* === Chat Widget === */
.wst-chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.wst-chat-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--wst-color-highlight);
    border: 3px solid var(--wst-color-accent);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--wst-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.wst-chat-btn:hover {
    transform: scale(1.1);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .wst-content-layout {
        grid-template-columns: 1fr;
    }
    .wst-sidebar {
        position: static;
    }
    .wst-footer .wst-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .wst-route-map {
        grid-template-columns: repeat(2, 1fr);
    }
    .wst-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .wst-main-nav {
        display: none;
    }
    .wst-hamburger-menu {
        display: block;
    }
    .wst-hero-title {
        font-size: 2.2rem;
    }
    .wst-hero-subtitle {
        font-size: 1rem;
    }
    .wst-h1-title {
        font-size: 1.8rem;
    }
    .wst-section-title {
        font-size: 1.6rem;
    }
    .wst-photo-wall {
        grid-template-columns: 1fr;
    }
    .wst-shop-grid {
        grid-template-columns: 1fr;
    }
    .wst-sheriff-grid {
        grid-template-columns: 1fr;
    }
    .wst-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wst-route-map {
        grid-template-columns: 1fr;
    }
    .wst-related-articles {
        grid-template-columns: 1fr;
    }
    .wst-footer .wst-container {
        grid-template-columns: 1fr;
    }
    .wst-page-banner {
        height: 250px;
    }
    .wst-page-banner h1 {
        font-size: 1.8rem;
    }
    .wst-bounty-card {
        padding: 40px 20px;
    }
    .wst-certification {
        display: none;
    }
    .wst-search-btn {
        display: none;
    }
}

/* === Dust Storm Animation === */
@keyframes wst-dust-float {
    0% { transform: translateX(-100%) translateY(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateX(100vw) translateY(-20px); opacity: 0; }
}

.wst-dust-particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: rgba(210,180,140,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: wst-dust-float linear infinite;
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--wst-color-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--wst-color-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--wst-color-accent);
}

/* === Game Page Specific === */
.wst-game-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(44,24,16,0.3);
    border-radius: var(--wst-radius);
    box-shadow: var(--wst-shadow);
    text-align: center;
}

.wst-game-timer {
    font-size: 2.5rem;
    color: var(--wst-color-highlight);
    font-weight: 700;
    margin-bottom: 20px;
}

.wst-game-score {
    font-size: 1.5rem;
    color: var(--wst-color-accent);
    margin-bottom: 20px;
}

.wst-game-cards {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.wst-game-card {
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, #fff 0%, #f0e6d3 100%);
    border: 2px solid var(--wst-color-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.wst-game-card:hover {
    transform: translateY(-8px);
}

/* === Tutorial Page === */
.wst-tutorial-steps {
    max-width: 800px;
    margin: 0 auto;
}

.wst-tutorial-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(139,115,85,0.15);
    border-radius: var(--wst-radius);
    border-left: 4px solid var(--wst-color-accent);
}

.wst-step-number {
    width: 50px;
    height: 50px;
    background: var(--wst-color-accent);
    color: var(--wst-color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.wst-step-content h4 {
    color: var(--wst-color-text);
    margin-bottom: 8px;
}

.wst-step-content p {
    font-size: 0.95rem;
    color: var(--wst-color-text-alt);
}

/* === Ad Sidebar === */
.wst-ad-box {
    background: rgba(205,133,63,0.1);
    border: 2px solid var(--wst-color-accent);
    border-radius: var(--wst-radius);
    padding: 16px;
    margin-top: 20px;
    text-align: center;
}

.wst-ad-box img {
    width: 100%;
    border-radius: var(--wst-radius);
    margin-bottom: 8px;
}

.wst-ad-box p {
    font-size: 0.8rem;
    color: var(--wst-color-text-alt);
    margin: 0;
}
