/* ============================================
   海外剧场 - 伦敦西区剧院风主题样式
   CSS Prefix: west-
   ============================================ */

/* Google Fonts - EB Garamond */
@font-face {
    font-family: 'EB Garamond';
    font-style: normal;
    font-weight: 400;
    src: local('EB Garamond Regular');
}

/* ---- CSS Variables ---- */
:root {
    --west-primary: #800020;
    --west-secondary: #FFD700;
    --west-accent: #D4AF37;
    --west-text: #F5F5DC;
    --west-link: #FFD700;
    --west-dark: #1a0a10;
    --west-card-bg: rgba(26, 10, 16, 0.85);
    --west-border: #D4AF37;
    --west-font-heading: 'EB Garamond', 'Georgia', 'Noto Serif SC', serif;
    --west-font-body: 'Georgia', 'Noto Serif SC', serif;
}

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

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

body {
    font-family: var(--west-font-body);
    color: var(--west-text);
    background-color: var(--west-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

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

a:hover {
    color: #fff;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--west-font-heading);
    color: var(--west-secondary);
    line-height: 1.3;
}

/* ---- Curtain Jammer (Hidden) ---- */
.curtain-jammer-block {
    display: none !important;
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ---- Curtain Opening Animation ---- */
.west-curtain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    display: flex;
}

.west-curtain-left,
.west-curtain-right {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #800020 0%, #4a0012 50%, #800020 100%);
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: inset 0 0 80px rgba(0,0,0,0.5);
}

.west-curtain-left {
    transform-origin: left center;
}

.west-curtain-right {
    transform-origin: right center;
}

.west-curtain-overlay.west-curtain-open .west-curtain-left {
    transform: translateX(-100%);
}

.west-curtain-overlay.west-curtain-open .west-curtain-right {
    transform: translateX(100%);
}

/* ---- Header / Navigation ---- */
#west-header {
    background: linear-gradient(180deg, var(--west-primary) 0%, #5a0016 100%);
    padding: 0;
    z-index: 100;
    border-bottom: 2px solid var(--west-accent);
}

.west-nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
}

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

.west-logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.west-logo-icon svg {
    width: 100%;
    height: 100%;
}

.west-logo-text {
    font-family: var(--west-font-heading);
    font-size: 1.5rem;
    color: var(--west-secondary);
    font-weight: 700;
    letter-spacing: 2px;
}

.west-nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

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

.west-nav-link {
    display: block;
    padding: 14px 18px;
    color: var(--west-secondary);
    font-family: var(--west-font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

.west-nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--west-secondary);
    transition: width 0.4s ease, left 0.4s ease;
}

.west-nav-link:hover::after,
.west-nav-link.west-active::after {
    width: 60%;
    left: 20%;
}

.west-nav-link:hover {
    color: #fff;
}

/* Hamburger Menu */
.west-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.west-hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--west-secondary);
    transition: all 0.3s;
}

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

.west-hamburger.west-open span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Side Menu */
.west-mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, var(--west-primary) 0%, #3a000e 100%);
    z-index: 200;
    transition: right 0.4s ease;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

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

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

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

.west-mobile-nav-list {
    list-style: none;
}

.west-mobile-nav-link {
    display: block;
    padding: 16px 0;
    color: var(--west-secondary);
    font-family: var(--west-font-heading);
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    letter-spacing: 1px;
}

.west-mobile-nav-link:hover {
    color: #fff;
    padding-left: 10px;
}

/* ---- Hero Section ---- */
.west-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
}

.west-hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
}

.west-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.west-hero-slide.west-active {
    opacity: 1;
}

.west-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.west-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(128,0,32,0.3) 0%, rgba(26,10,16,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.west-hero-title {
    font-family: var(--west-font-heading);
    font-size: 3.5rem;
    color: var(--west-secondary);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.west-hero-subtitle {
    font-size: 1.2rem;
    color: var(--west-text);
    max-width: 700px;
    line-height: 1.8;
}

.west-hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.west-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--west-secondary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.west-hero-dot.west-active {
    background: var(--west-secondary);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* ---- Section Common ---- */
.west-section {
    padding: 80px 24px;
    max-width: 1440px;
    margin: 0 auto;
}

.west-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.west-section-title {
    font-size: 2.2rem;
    color: var(--west-secondary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    letter-spacing: 3px;
}

.west-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--west-accent), transparent);
}

.west-section-subtitle {
    font-size: 1rem;
    color: rgba(245, 245, 220, 0.7);
    margin-top: 15px;
    font-style: italic;
}

/* ---- Card Styles ---- */
.west-card {
    background: var(--west-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.west-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    transition: border-color 0.3s;
    pointer-events: none;
    z-index: 1;
}

.west-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.3), 0 0 15px rgba(212, 175, 55, 0.1);
}

.west-card:hover::before {
    border-color: var(--west-accent);
}

.west-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

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

.west-card-title {
    font-size: 1.2rem;
    color: var(--west-secondary);
    margin-bottom: 10px;
}

.west-card-text {
    font-size: 0.95rem;
    color: rgba(245, 245, 220, 0.8);
    line-height: 1.7;
}

.west-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.85rem;
    color: rgba(245, 245, 220, 0.5);
}

/* ---- Grid Layouts ---- */
.west-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

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

/* ---- Critics Section ---- */
.west-critics {
    background: linear-gradient(135deg, rgba(128,0,32,0.15) 0%, rgba(26,10,16,0.95) 100%);
    position: relative;
}

.west-critic-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 30px;
    background: var(--west-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
}

.west-critic-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--west-accent);
    object-fit: cover;
    flex-shrink: 0;
}

.west-critic-name {
    font-size: 1.1rem;
    color: var(--west-secondary);
    margin-bottom: 8px;
}

.west-critic-quote {
    font-style: italic;
    color: rgba(245, 245, 220, 0.8);
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--west-accent);
}

/* ---- Behind The Scenes ---- */
.west-bts {
    position: relative;
}

.west-bts-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.west-bts-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.west-bts-card:hover img {
    transform: scale(1.05);
}

.west-bts-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(26,10,16,0.95) 0%, transparent 100%);
}

/* Film strip decoration */
.west-filmstrip {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.west-filmstrip-hole {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: rgba(212, 175, 55, 0.3);
}

/* ---- Awards Section ---- */
.west-awards {
    background: linear-gradient(180deg, var(--west-dark) 0%, rgba(128,0,32,0.1) 50%, var(--west-dark) 100%);
}

.west-award-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--west-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    margin-bottom: 16px;
}

.west-award-icon {
    font-size: 2rem;
    color: var(--west-secondary);
    flex-shrink: 0;
}

.west-award-title {
    font-size: 1.1rem;
    color: var(--west-secondary);
}

.west-award-desc {
    font-size: 0.9rem;
    color: rgba(245, 245, 220, 0.7);
    margin-top: 5px;
}

/* ---- Classics Section ---- */
.west-classics {
    position: relative;
}

.west-classic-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 3px solid var(--west-accent);
}

.west-classic-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: sepia(20%) contrast(1.1);
}

.west-classic-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(26,10,16,0.95) 0%, transparent 100%);
}

/* ---- Script Library ---- */
.west-script-library {
    position: relative;
}

.west-script-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--west-card-bg);
    border-left: 3px solid var(--west-accent);
    margin-bottom: 12px;
    transition: background 0.3s;
}

.west-script-item:hover {
    background: rgba(128, 0, 32, 0.3);
}

.west-script-icon {
    color: var(--west-secondary);
    font-size: 1.5rem;
}

/* ---- Actor Archive ---- */
.west-actor-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--west-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
}

.west-actor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--west-accent);
    object-fit: cover;
    margin: 0 auto 16px;
}

.west-actor-name {
    font-size: 1.1rem;
    color: var(--west-secondary);
    margin-bottom: 8px;
}

.west-actor-role {
    font-size: 0.9rem;
    color: rgba(245, 245, 220, 0.6);
    font-style: italic;
}

/* ---- Showtime Calendar ---- */
.west-calendar {
    background: var(--west-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.west-calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--west-primary);
    border-bottom: 2px solid var(--west-accent);
}

.west-calendar-day-name {
    padding: 12px;
    text-align: center;
    font-family: var(--west-font-heading);
    color: var(--west-secondary);
    font-size: 0.9rem;
}

.west-calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.west-calendar-cell {
    padding: 10px;
    min-height: 100px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: background 0.3s;
}

.west-calendar-cell:hover {
    background: rgba(128, 0, 32, 0.2);
}

.west-calendar-date {
    font-size: 0.85rem;
    color: var(--west-secondary);
    margin-bottom: 6px;
}

.west-calendar-event {
    font-size: 0.75rem;
    padding: 3px 6px;
    background: rgba(128, 0, 32, 0.5);
    border-left: 2px solid var(--west-accent);
    margin-bottom: 4px;
    color: var(--west-text);
    border-radius: 2px;
}

/* ---- Community Section ---- */
.west-community {
    position: relative;
    text-align: center;
}

.west-community-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.west-community-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px;
    background: var(--west-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    min-width: 150px;
    transition: transform 0.3s, border-color 0.3s;
}

.west-community-link:hover {
    transform: translateY(-5px);
    border-color: var(--west-accent);
}

.west-community-icon {
    font-size: 2rem;
    color: var(--west-secondary);
}

/* ---- Buttons ---- */
.west-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--west-primary);
    color: var(--west-secondary);
    border: 2px solid var(--west-secondary);
    font-family: var(--west-font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.west-btn:hover {
    background: var(--west-secondary);
    color: var(--west-primary);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* ---- Playbill Page ---- */
.west-playbill-filters {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 24px;
    background: var(--west-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
}

.west-filter-group {
    flex: 1;
    min-width: 200px;
}

.west-filter-label {
    display: block;
    font-size: 0.9rem;
    color: var(--west-secondary);
    margin-bottom: 8px;
    font-family: var(--west-font-heading);
}

.west-filter-select {
    width: 100%;
    padding: 10px 14px;
    background: rgba(26, 10, 16, 0.8);
    border: 1px solid var(--west-accent);
    color: var(--west-text);
    font-family: var(--west-font-body);
    font-size: 0.95rem;
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
}

.west-timeline {
    position: relative;
    padding-left: 40px;
}

.west-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--west-accent), transparent);
}

.west-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--west-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
}

.west-timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 25px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--west-accent);
    border: 2px solid var(--west-dark);
}

.west-timeline-date {
    font-size: 0.85rem;
    color: var(--west-accent);
    margin-bottom: 8px;
}

.west-timeline-title {
    font-size: 1.1rem;
    color: var(--west-secondary);
    margin-bottom: 6px;
}

.west-timeline-meta {
    font-size: 0.85rem;
    color: rgba(245, 245, 220, 0.6);
}

/* ---- APP Download Page ---- */
.west-ticket {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--west-primary) 0%, #5a0016 100%);
    border: 3px solid var(--west-accent);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.west-ticket::before,
.west-ticket::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--west-dark);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.west-ticket::before {
    left: -15px;
}

.west-ticket::after {
    right: -15px;
}

.west-ticket-body {
    padding: 50px 40px;
    text-align: center;
}

.west-ticket-title {
    font-size: 2rem;
    color: var(--west-secondary);
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.west-ticket-subtitle {
    font-size: 1rem;
    color: var(--west-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.west-ticket-qr {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.west-ticket-qr svg {
    width: 100%;
    height: 100%;
}

.west-ticket-stores {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.west-store-btn {
    padding: 12px 24px;
    background: rgba(26, 10, 16, 0.5);
    border: 2px solid var(--west-accent);
    color: var(--west-secondary);
    font-family: var(--west-font-heading);
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.west-store-btn:hover {
    background: var(--west-accent);
    color: var(--west-dark);
}

/* ---- Footer ---- */
#west-footer {
    background: linear-gradient(180deg, #2a1a10 0%, #1a0f08 100%);
    border-top: 2px solid var(--west-accent);
    padding: 60px 24px 30px;
}

.west-footer-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 40px;
}

.west-footer-col h3 {
    font-size: 1.2rem;
    color: var(--west-secondary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.west-footer-about p {
    font-size: 0.9rem;
    color: rgba(245, 245, 220, 0.7);
    line-height: 1.7;
}

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

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

.west-footer-links a {
    color: rgba(245, 245, 220, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s, padding-left 0.3s;
}

.west-footer-links a:hover {
    color: var(--west-secondary);
    padding-left: 5px;
}

.west-footer-social {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.west-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--west-secondary);
    transition: all 0.3s;
    font-size: 1.1rem;
}

.west-footer-social a:hover {
    background: var(--west-accent);
    color: var(--west-dark);
    border-color: var(--west-accent);
}

.west-footer-bottom {
    max-width: 1440px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(245, 245, 220, 0.5);
    line-height: 2;
}

.west-footer-bottom a {
    color: rgba(245, 245, 220, 0.6);
}

.west-footer-bottom a:hover {
    color: var(--west-secondary);
}

.west-footer-honor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    color: var(--west-accent);
    font-style: italic;
}

/* ---- Page Banner (for inner pages) ---- */
.west-page-banner {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 300px;
    overflow: hidden;
}

.west-page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.west-page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(128,0,32,0.4) 0%, rgba(26,10,16,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.west-page-title {
    font-size: 2.5rem;
    color: var(--west-secondary);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.west-page-desc {
    font-size: 1rem;
    color: rgba(245, 245, 220, 0.8);
    max-width: 600px;
}

/* ---- Article Content ---- */
.west-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.west-article h2 {
    font-size: 1.6rem;
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.west-article p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 2;
    color: rgba(245, 245, 220, 0.85);
}

.west-article img {
    width: 100%;
    border-radius: 4px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    margin: 20px 0;
}

/* ---- Rating Stars ---- */
.west-rating {
    display: flex;
    gap: 3px;
}

.west-star {
    color: var(--west-secondary);
    font-size: 1rem;
}

.west-star-empty {
    color: rgba(212, 175, 55, 0.3);
    font-size: 1rem;
}

/* ---- Spotlight Effect ---- */
.west-spotlight {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.west-spotlight.west-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive Design ---- */

/* 1440px */
@media (max-width: 1440px) {
    .west-section {
        max-width: 1200px;
    }
}

/* 1024px */
@media (max-width: 1024px) {
    .west-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .west-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .west-footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .west-hero-title {
        font-size: 2.5rem;
    }
}

/* 768px */
@media (max-width: 768px) {
    .west-nav-menu {
        display: none;
    }

    .west-hamburger {
        display: flex;
    }

    .west-grid-2,
    .west-grid-3,
    .west-grid-4 {
        grid-template-columns: 1fr;
    }

    .west-footer-container {
        grid-template-columns: 1fr;
    }

    .west-hero-title {
        font-size: 2rem;
    }

    .west-hero-subtitle {
        font-size: 1rem;
    }

    .west-section {
        padding: 50px 16px;
    }

    .west-section-title {
        font-size: 1.8rem;
    }

    .west-critic-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .west-critic-quote {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--west-accent);
        padding-top: 16px;
    }

    .west-page-title {
        font-size: 1.8rem;
    }

    .west-ticket-body {
        padding: 30px 20px;
    }

    .west-ticket-stores {
        flex-direction: column;
        align-items: center;
    }

    .west-calendar-body {
        grid-template-columns: repeat(7, 1fr);
    }

    .west-calendar-cell {
        min-height: 60px;
        padding: 4px;
    }

    .west-calendar-event {
        font-size: 0.65rem;
    }

    .west-playbill-filters {
        flex-direction: column;
    }
}

/* 360px */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }

    .west-hero-title {
        font-size: 1.6rem;
    }

    .west-nav-container {
        padding: 10px 12px;
    }

    .west-logo-text {
        font-size: 1.2rem;
    }
}

/* ---- Utility Classes ---- */
.west-text-center {
    text-align: center;
}

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

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

.west-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--west-accent), transparent);
    margin: 40px 0;
}

/* ---- Decorative Elements ---- */
.west-ornament {
    text-align: center;
    color: var(--west-accent);
    font-size: 1.5rem;
    letter-spacing: 8px;
    margin: 20px 0;
    opacity: 0.5;
}

/* ---- Breadcrumb ---- */
.west-breadcrumb {
    padding: 16px 24px;
    max-width: 1440px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: rgba(245, 245, 220, 0.5);
}

.west-breadcrumb a {
    color: rgba(245, 245, 220, 0.6);
}

.west-breadcrumb a:hover {
    color: var(--west-secondary);
}

.west-breadcrumb span {
    margin: 0 8px;
    color: rgba(212, 175, 55, 0.3);
}
