/* ============================================
   影评酒馆 - The Critic's Tavern
   主样式表 v1.0
   CSS前缀: yj-
   ============================================ */

/* Google Fonts 本地化替代 - 使用系统衬线字体 */
@font-face {
    font-family: 'YJ-Serif';
    src: local('Playfair Display'), local('Georgia'), local('Times New Roman');
    font-display: swap;
}

/* ---- 全局变量 ---- */
:root {
    --yj-primary: #5C3D2E;
    --yj-secondary: #D4AF37;
    --yj-accent: #FFD700;
    --yj-text: #EAE0D5;
    --yj-link: #D4AF37;
    --yj-dark: #2A1A10;
    --yj-darker: #1A0E08;
    --yj-card-bg: #3D2518;
    --yj-border: #6B4A3A;
    --yj-shadow: rgba(0,0,0,0.5);
}

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

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

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

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

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

a:hover {
    color: var(--yj-accent);
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'YJ-Serif', 'Georgia', 'Noto Serif SC', serif;
    color: var(--yj-secondary);
    line-height: 1.3;
}

/* ---- 导航栏 ---- */
.yj-header {
    background-color: var(--yj-primary);
    background-image: linear-gradient(180deg, var(--yj-dark) 0%, var(--yj-primary) 100%);
    padding: 0;
    z-index: 100;
    border-bottom: 2px solid var(--yj-secondary);
    box-shadow: 0 4px 20px var(--yj-shadow);
}

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

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

.yj-logo-icon {
    width: 42px;
    height: 42px;
    fill: var(--yj-secondary);
}

.yj-logo-text {
    display: flex;
    flex-direction: column;
}

.sp-logo-text {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.4rem;
    color: var(--yj-secondary);
    font-weight: 700;
    letter-spacing: 1px;
}

.yj-logo-sub {
    font-size: 0.65rem;
    color: var(--yj-text);
    opacity: 0.7;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.yj-nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.yj-nav-menu li a {
    display: block;
    padding: 8px 16px;
    color: var(--yj-text);
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

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

.yj-nav-menu li a:hover {
    color: var(--yj-accent);
}

.yj-nav-menu li a:hover::after {
    width: 80%;
}

/* 汉堡菜单 */
.yj-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: 1px solid var(--yj-secondary);
    border-radius: 4px;
}

.yj-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--yj-secondary);
    transition: all 0.3s ease;
}

/* 移动端侧边菜单 */
.yj-mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--yj-dark) 0%, #3D2518 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%232A1A10" width="100" height="100"/><rect fill="%233D2518" x="0" y="0" width="50" height="50" opacity="0.1"/></svg>');
    z-index: 200;
    transition: right 0.4s ease;
    padding: 60px 24px 24px;
    border-left: 2px solid var(--yj-secondary);
    box-shadow: -4px 0 20px var(--yj-shadow);
    overflow-y: auto;
}

.yj-mobile-menu.yj-active {
    right: 0;
}

.yj-mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--yj-secondary);
    font-size: 1.8rem;
    cursor: pointer;
}

.yj-mobile-menu ul {
    list-style: none;
}

.yj-mobile-menu ul li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.yj-mobile-menu ul li a {
    display: block;
    padding: 14px 0;
    color: var(--yj-text);
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.1rem;
    text-decoration: none;
}

.yj-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 199;
    display: none;
}

.yj-mobile-overlay.yj-active {
    display: block;
}

/* ---- Hero 今日特调 ---- */
.yj-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.yj-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.4);
    z-index: 0;
}

.yj-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px 24px;
}

.yj-hero-slogan {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2.2rem;
    color: var(--yj-text);
    line-height: 1.6;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
    margin-bottom: 24px;
}

.yj-hero-sub {
    font-size: 1rem;
    color: rgba(234, 224, 213, 0.7);
    margin-bottom: 32px;
}

.yj-btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--yj-secondary), #B8941F);
    color: var(--yj-dark);
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--yj-secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: none;
}

.yj-btn:hover {
    background: linear-gradient(135deg, var(--yj-accent), var(--yj-secondary));
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    color: var(--yj-dark);
}

/* ---- 通用模块标题 ---- */
.yj-section-title {
    text-align: center;
    margin-bottom: 48px;
}

.yj-section-title h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.yj-section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--yj-secondary);
    margin: 12px auto 0;
}

.yj-section-title p {
    color: rgba(234, 224, 213, 0.6);
    font-size: 0.9rem;
    font-style: italic;
}

/* ---- 品鉴菜单 ---- */
.yj-menu {
    padding: 80px 24px;
    background: var(--yj-dark);
}

.yj-menu-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.yj-menu-item {
    background: var(--yj-card-bg);
    border: 1px solid var(--yj-border);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.yj-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--yj-secondary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yj-menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
    border-color: var(--yj-secondary);
}

.yj-menu-item:hover::before {
    opacity: 1;
}

.yj-menu-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.yj-menu-item p {
    font-size: 0.9rem;
    color: rgba(234, 224, 213, 0.7);
    line-height: 1.6;
}

.yj-menu-item a {
    text-decoration: none;
    color: inherit;
}

/* ---- 吧台热议 ---- */
.yj-talk {
    padding: 80px 24px;
    background: var(--yj-darker);
}

.yj-talk-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.yj-talk-bubble {
    background: var(--yj-card-bg);
    border: 1px solid var(--yj-border);
    border-radius: 12px;
    padding: 20px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.yj-talk-bubble:hover {
    border-color: var(--yj-secondary);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.1);
}

.yj-talk-bubble-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.yj-talk-user {
    font-weight: 700;
    color: var(--yj-secondary);
    font-size: 0.9rem;
}

.yj-talk-time {
    font-size: 0.8rem;
    color: rgba(234, 224, 213, 0.4);
}

.yj-talk-bubble h4 {
    font-size: 1.1rem;
    color: var(--yj-text);
    margin-bottom: 8px;
}

.yj-talk-bubble p {
    font-size: 0.9rem;
    color: rgba(234, 224, 213, 0.7);
}

.yj-talk-replies {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--yj-secondary);
}

/* ---- 藏酒室 ---- */
.yj-cellar {
    padding: 80px 24px;
    background: var(--yj-dark);
    position: relative;
}

.yj-cellar-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.yj-cellar-card {
    background: var(--yj-card-bg);
    border: 1px solid var(--yj-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.yj-cellar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

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

.yj-cellar-card-body {
    padding: 16px;
}

.yj-cellar-card-body h4 {
    font-size: 1rem;
    color: var(--yj-secondary);
    margin-bottom: 8px;
}

.yj-cellar-card-body p {
    font-size: 0.85rem;
    color: rgba(234, 224, 213, 0.7);
    margin-bottom: 8px;
}

.yj-cellar-rating {
    color: var(--yj-accent);
    font-size: 0.85rem;
}

/* ---- 影人访谈 ---- */
.yj-interview {
    padding: 80px 24px;
    background: var(--yj-darker);
    position: relative;
}

.yj-interview-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.yj-interview-item {
    display: flex;
    gap: 24px;
    background: var(--yj-card-bg);
    border: 1px solid var(--yj-border);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
}

.yj-interview-item:hover {
    border-color: var(--yj-secondary);
}

.yj-interview-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--yj-secondary);
    object-fit: cover;
    flex-shrink: 0;
}

.yj-interview-body h4 {
    font-size: 1.1rem;
    color: var(--yj-secondary);
    margin-bottom: 4px;
}

.yj-interview-role {
    font-size: 0.8rem;
    color: rgba(234, 224, 213, 0.5);
    margin-bottom: 8px;
}

.yj-interview-body p {
    font-size: 0.9rem;
    color: rgba(234, 224, 213, 0.7);
}

/* ---- 胶片放映厅 ---- */
.yj-projection {
    padding: 80px 24px;
    background: var(--yj-dark);
}

.yj-projection-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.yj-projection-card {
    background: var(--yj-card-bg);
    border: 1px solid var(--yj-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.yj-projection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

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

.yj-projection-card-body {
    padding: 20px;
}

.yj-projection-card-body h4 {
    font-size: 1.05rem;
    color: var(--yj-secondary);
    margin-bottom: 8px;
}

.yj-projection-card-body p {
    font-size: 0.85rem;
    color: rgba(234, 224, 213, 0.7);
}

/* ---- 悬赏影评 ---- */
.yj-bounty {
    padding: 80px 24px;
    background: var(--yj-darker);
}

.yj-bounty-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.yj-bounty-card {
    background: var(--yj-card-bg);
    border: 1px solid var(--yj-border);
    border-radius: 8px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.yj-bounty-card:hover {
    border-color: var(--yj-secondary);
}

.yj-bounty-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--yj-secondary);
    color: var(--yj-dark);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.yj-bounty-card h4 {
    font-size: 1.05rem;
    color: var(--yj-secondary);
    margin-bottom: 8px;
    padding-right: 80px;
}

.yj-bounty-card p {
    font-size: 0.85rem;
    color: rgba(234, 224, 213, 0.7);
    margin-bottom: 12px;
}

.yj-bounty-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(234, 224, 213, 0.5);
}

/* ---- 酒馆月刊 ---- */
.yj-monthly {
    padding: 80px 24px;
    background: var(--yj-dark);
}

.yj-monthly-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.yj-monthly-img {
    width: 360px;
    border-radius: 8px;
    border: 2px solid var(--yj-border);
    flex-shrink: 0;
}

.yj-monthly-body h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.yj-monthly-body p {
    font-size: 0.95rem;
    color: rgba(234, 224, 213, 0.7);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ---- 荣誉墙 ---- */
.yj-fame {
    padding: 80px 24px;
    background: var(--yj-darker);
}

.yj-fame-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.yj-fame-card {
    background: var(--yj-card-bg);
    border: 1px solid var(--yj-border);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.yj-fame-card:hover {
    border-color: var(--yj-secondary);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
}

.yj-fame-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--yj-secondary);
    margin: 0 auto 12px;
    background: var(--yj-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--yj-secondary);
}

.yj-fame-card h4 {
    font-size: 1rem;
    color: var(--yj-secondary);
    margin-bottom: 4px;
}

.yj-fame-card .yj-fame-title {
    font-size: 0.8rem;
    color: rgba(234, 224, 213, 0.5);
    margin-bottom: 8px;
}

.yj-fame-card p {
    font-size: 0.85rem;
    color: rgba(234, 224, 213, 0.7);
}

/* ---- 加入我们 ---- */
.yj-join {
    padding: 100px 24px;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.yj-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 14, 8, 0.85);
}

.yj-join-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.yj-join-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.yj-join-content p {
    font-size: 1rem;
    color: rgba(234, 224, 213, 0.7);
    margin-bottom: 32px;
    line-height: 1.8;
}

/* ---- 页脚 ---- */
.yj-footer {
    background: var(--yj-dark);
    border-top: 2px solid var(--yj-secondary);
    padding: 60px 24px 24px;
}

.yj-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.yj-footer-col h4 {
    font-size: 1rem;
    color: var(--yj-secondary);
    margin-bottom: 16px;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.yj-footer-col ul {
    list-style: none;
}

.yj-footer-col ul li {
    margin-bottom: 8px;
}

.yj-footer-col ul li a {
    color: rgba(234, 224, 213, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.yj-footer-col ul li a:hover {
    color: var(--yj-accent);
}

.yj-footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

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

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

.yj-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(234, 224, 213, 0.5);
}

.yj-footer-bottom p {
    margin-bottom: 6px;
}

.yj-footer-bottom a {
    color: rgba(234, 224, 213, 0.5);
    text-decoration: none;
}

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

.yj-footer-honor {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.yj-footer-honor-badge {
    width: 18px;
    height: 18px;
    fill: var(--yj-secondary);
}

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

.yj-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) blur(2px);
}

.yj-page-hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 24px;
}

.yj-page-hero-content h1 {
    font-size: 2.4rem;
    color: var(--yj-text);
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
    margin-bottom: 12px;
}

.yj-page-hero-content p {
    color: rgba(234, 224, 213, 0.7);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.yj-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* ---- 栏目页文章列表 ---- */
.yj-article-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.yj-article-card {
    display: flex;
    gap: 24px;
    background: var(--yj-card-bg);
    border: 1px solid var(--yj-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.yj-article-card:hover {
    border-color: var(--yj-secondary);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.1);
}

.yj-article-card-img {
    width: 280px;
    min-height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.yj-article-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yj-article-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.yj-article-card-body h3 a {
    color: var(--yj-secondary);
    text-decoration: none;
}

.yj-article-card-meta {
    font-size: 0.8rem;
    color: rgba(234, 224, 213, 0.5);
    margin-bottom: 12px;
}

.yj-article-card-body p {
    font-size: 0.9rem;
    color: rgba(234, 224, 213, 0.7);
    line-height: 1.7;
}

/* ---- 酒馆包厢页面 ---- */
.yj-booth-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.yj-booth-card {
    background: var(--yj-card-bg);
    border: 1px solid var(--yj-border);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
}

.yj-booth-card:hover {
    border-color: var(--yj-secondary);
}

.yj-booth-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.yj-booth-card h3 {
    font-size: 1.1rem;
}

.yj-booth-badge {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.yj-booth-badge-public {
    background: rgba(76, 175, 80, 0.2);
    color: #81C784;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.yj-booth-badge-private {
    background: rgba(244, 67, 54, 0.2);
    color: #E57373;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.yj-booth-card p {
    font-size: 0.9rem;
    color: rgba(234, 224, 213, 0.7);
    margin-bottom: 12px;
}

.yj-booth-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(234, 224, 213, 0.5);
}

.yj-booth-join-btn {
    padding: 6px 16px;
    background: transparent;
    border: 1px solid var(--yj-secondary);
    color: var(--yj-secondary);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.yj-booth-join-btn:hover {
    background: var(--yj-secondary);
    color: var(--yj-dark);
}

/* 创建包厢表单 */
.yj-booth-create {
    max-width: 600px;
    margin: 40px auto 0;
    background: var(--yj-card-bg);
    border: 1px solid var(--yj-border);
    border-radius: 8px;
    padding: 32px;
}

.yj-booth-create h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.yj-form-group {
    margin-bottom: 16px;
}

.yj-form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--yj-text);
}

.yj-form-input {
    width: 100%;
    padding: 10px 14px;
    background: var(--yj-dark);
    border: 1px solid var(--yj-border);
    border-radius: 4px;
    color: var(--yj-text);
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.yj-form-input:focus {
    outline: none;
    border-color: var(--yj-secondary);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.yj-form-textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--yj-dark);
    border: 1px solid var(--yj-border);
    border-radius: 4px;
    color: var(--yj-text);
    font-size: 0.9rem;
    min-height: 100px;
    resize: vertical;
}

.yj-form-textarea:focus {
    outline: none;
    border-color: var(--yj-secondary);
}

.yj-form-radio-group {
    display: flex;
    gap: 20px;
    margin-top: 4px;
}

.yj-form-radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

/* ---- APP下载页 ---- */
.yj-app-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    background: var(--yj-darker);
    position: relative;
}

.yj-app-reel {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 40px;
    border: 3px solid var(--yj-secondary);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    cursor: pointer;
    animation: yj-spin 20s linear infinite;
    position: relative;
}

@keyframes yj-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.yj-app-reel:hover {
    animation-play-state: paused;
}

.yj-app-reel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yj-app-content h1 {
    font-size: 2rem;
    color: var(--yj-text);
    margin-bottom: 12px;
}

.yj-app-content p {
    font-size: 1rem;
    color: rgba(234, 224, 213, 0.7);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.yj-app-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.yj-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--yj-card-bg);
    border: 1px solid var(--yj-secondary);
    border-radius: 8px;
    color: var(--yj-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.yj-app-btn:hover {
    background: var(--yj-secondary);
    color: var(--yj-dark);
}

/* 票根弹窗 */
.yj-ticket-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 300;
    align-items: center;
    justify-content: center;
}

.yj-ticket-modal.yj-active {
    display: flex;
}

.yj-ticket {
    background: #F5E6C8;
    color: #2A1A10;
    max-width: 400px;
    width: 90%;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    border: 2px dashed #8B7355;
}

.yj-ticket h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: #2A1A10;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.yj-ticket p {
    font-size: 0.9rem;
    color: #5C3D2E;
    margin-bottom: 20px;
}

.yj-ticket-qr {
    width: 150px;
    height: 150px;
    background: #fff;
    margin: 0 auto 16px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #999;
}

.yj-ticket-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #5C3D2E;
    cursor: pointer;
}

/* ---- 响应式断点 ---- */

/* 1440px */
@media (max-width: 1440px) {
    .yj-cellar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 1024px */
@media (max-width: 1024px) {
    .yj-nav-menu {
        display: none;
    }
    .yj-hamburger {
        display: flex;
    }
    .yj-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .yj-cellar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .yj-projection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .yj-fame-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .yj-monthly-content {
        flex-direction: column;
    }
    .yj-monthly-img {
        width: 100%;
        max-width: 400px;
    }
    .yj-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 768px */
@media (max-width: 768px) {
    .yj-hero-slogan {
        font-size: 1.6rem;
    }
    .yj-section-title h2 {
        font-size: 1.6rem;
    }
    .yj-menu-grid {
        grid-template-columns: 1fr;
    }
    .yj-bounty-grid {
        grid-template-columns: 1fr;
    }
    .yj-booth-list {
        grid-template-columns: 1fr;
    }
    .yj-article-card {
        flex-direction: column;
    }
    .yj-article-card-img {
        width: 100%;
        height: 200px;
    }
    .yj-interview-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .yj-page-hero-content h1 {
        font-size: 1.8rem;
    }
    .yj-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .yj-footer-social {
        justify-content: center;
    }
}

/* 360px */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }
    .yj-hero {
        min-height: 60vh;
    }
    .yj-hero-slogan {
        font-size: 1.3rem;
    }
    .yj-cellar-grid {
        grid-template-columns: 1fr;
    }
    .yj-projection-grid {
        grid-template-columns: 1fr;
    }
    .yj-fame-grid {
        grid-template-columns: 1fr;
    }
    .yj-app-reel {
        width: 200px;
        height: 200px;
    }
    .sp-logo-text {
        font-size: 1.1rem;
    }
}

/* ---- 灯光闪烁动画 ---- */
@keyframes yj-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.92; }
    75% { opacity: 0.97; }
}

.yj-hero-content {
    animation: yj-flicker 4s ease-in-out infinite;
}
