/* Root Variables */
:root {
    --primary-color: #ad181a;
    --secondary-color: #b5833a;
    --accent-color: #faad14;
    --danger-color: #ff4d4f;
    --info-color: #2c2c2c;
    --text-base: #333333;
    --text-light: #666666;
    --bg-base: #faf7f2;
    --bg-gray: #f5f2eb;
    --border-color: #e5e7eb;
    
    /* 中国传统配色变量 */
    --traditional-red: #ad181a;
    --traditional-gold: #b5833a; /* 古铜金 */
    --traditional-black: #2c2c2c; /* 黛色 */
    --traditional-bg: #faf7f2;
    --traditional-border: #d4b996;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-primary: 0px 0px 10px 0px #E1E7F3;
    --shadow-secondary: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-serif: "SimSun", "STSong", "Songti SC", serif; /* 宋体 */
    --font-kai: "KaiTi", "STKaiti", "Kaiti SC", serif; /* 楷体 */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

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

body {
    font-family: 'Microsoft YaHei', 'SimHei', sans-serif;
    color: var(--text-base);
    background-color: var(--traditional-bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

main {
    background-image: url('../img/bg.png');
    background-repeat: repeat;
    background-position: center top;
    background-size: 2000px auto;
    min-height: 50vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (min-width: 640px) { .container { max-width: 640px; padding-right: 1.5rem; padding-left: 1.5rem; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; padding-right: 2rem; padding-left: 2rem; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }

/* Header & Navigation */
.site-header {
    background-color: transparent; /* 初始透明 */
    box-shadow: none;
    position: fixed; /* 悬浮在顶部 */
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    color: #fff;
}

.site-header.scrolled {
    background-color: var(--traditional-red); /* 黛色背景 */
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-bottom: 2px solid var(--traditional-gold); /* 金色边框 */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

@media (min-width: 768px) {
    .header-inner {
        height: 8rem;
    }
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    container-type: inline-size;
    min-width: 0;
    flex: 1;
}

@media (max-width: 768px) {
    .header-inner {
        height: auto !important;
        padding: 2rem 0;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo-area {
        flex-direction: column;
        text-align: center;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        container-type: inline-size;
    }
    
    .logo-img {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .logo-text {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 3.6cqi;
        white-space: nowrap;
        padding: 0 1rem;
        box-sizing: border-box;
        line-height: 1.5;
        font-weight: 900;
        color: #fff;
        font-family: "Microsoft YaHei", "Heiti SC", sans-serif;
    }
}

.logo-img {
    height: 4rem;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: min(1.25rem, 4cqi);
    font-weight: 900;
    color: #fff;
    white-space: nowrap;
    font-family: "Microsoft YaHei", "Heiti SC", sans-serif;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
    .logo-text {
        font-size: min(1.5rem, 4cqi);
    }
}

.main-nav {
    display: none;
}

.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        gap: 0.1rem;
        flex-shrink: 0;
        position: relative;
    }
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 3px;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    opacity: 0;
}

.nav-item {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    font-family: var(--font-kai); /* 使用楷体 */
    letter-spacing: 1px;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background-color: var(--traditional-gold); /* 金色下划线 */
    transition: transform 0.3s ease;
}

.nav-item i {
    margin-right: 0.5rem;
}

.nav-item:hover {
    background-color: rgba(181, 131, 58, 0.1); /* 金色微透明背景 */
    color: var(--traditional-gold);
}

.nav-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-item.active {
    background-color: transparent;
    color: var(--traditional-gold);
    font-weight: 700;
}

.nav-item.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-item.active:hover {
    color: var(--traditional-gold);
}

.nav-item.btn-primary {
    background-color: var(--traditional-gold);
    color: #fff;
    margin-left: 1rem;
    border: 1px solid var(--traditional-gold);
    transition: all 0.3s ease;
    border-radius: 50px; /* 胶囊状 */
    padding: 0.5rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nav-item.btn-primary:hover {
    background-color: #9e7232; /* 深一点的金色 */
    color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    opacity: 1;
    border-color: #9e7232;
}



/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;

    background-image: url('../img/bg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* .hero-bg class removed as we use background-image on hero-section */

/* .hero-overlay removed as requested to show background directly without layers */

.hero-content {
    max-width: 48rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-family: "Microsoft YaHei", "Heiti SC", sans-serif;
    position: relative;
    padding-bottom: 1rem;
    padding-top: 8rem;
    letter-spacing: 1px;
}



.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;

}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 50px; /* 胶囊状 */
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-family: var(--font-kai); /* 使用楷体 */
    letter-spacing: 2px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(181, 131, 58, 0.4), transparent); /* 金色流光 */
    transition: left 0.7s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    margin-right: 0.5rem;
    position: relative;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.25rem;
}

.btn-primary {
    background-color: var(--traditional-black); /* 黛色背景 */
    color: var(--traditional-gold); /* 金色文字 */
    border: 1px solid var(--traditional-gold); /* 金色边框 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a1a1a; /* 更深的黛色 */
    border-color: #c69c52; /* 亮一点的金色 */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(181, 131, 58, 0.3);
}

.btn-outline-white {
    background-color: rgba(44, 44, 44, 0.7); /* 黛色半透明 */
    backdrop-filter: blur(4px);
    color: #fff;
    border: 1px solid var(--traditional-gold);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: var(--traditional-black);
    border-color: #fff;
    color: var(--traditional-gold);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--traditional-black);
    border: 1px solid var(--traditional-black);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--traditional-black);
    color: var(--traditional-gold);
    border-color: var(--traditional-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.mt-4 { margin-top: 1rem; }

/* Section Common */
.section {
    padding: 4rem 0;
    position: relative;
}

.bg-white { background-color: transparent; }
.bg-gray { background-color: transparent; }

.section-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-base);
    margin-bottom: 1rem;
    font-family: 'SimSun', 'STSong', serif;
    position: relative;
    display: inline-block;
}



.section-title::before {
    left: -50px;
}

.section-title::after {
    right: -50px;
}


.section-content {
    margin-top: 3rem;
}

.section-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-base);
    font-family: 'Microsoft YaHei', 'STHeiti', sans-serif;
    position: relative;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--traditional-border);
}

.section-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Microsoft YaHei', 'STHeiti', sans-serif;
    padding-left: 1rem;
    border-left: 3px solid var(--secondary-color);
}

.section-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-indent: 2em;
}

.section-content ul,
.section-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.section-content ul li,
.section-content ol li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    position: relative;
}

.section-content ul li::marker {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* 添加中国传统装饰元素到部分区块 */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-repeat: repeat-x;
    background-size: 100px 2px;
    pointer-events: none;
}



/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.grid-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.grid-3-card-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    /* 第178-207行卡片：在桌面端显示为1行4张 */
    #workRequirements .grid-4.grid-4-mobile-2 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* 第213-340行卡片：在桌面端显示为1行1张 */
    .grid-4.grid-4-mobile-1 {
        grid-template-columns: 1fr;
    }
}

/* Feature Cards (Intro Section) */
.text-block p {
    color: #374151;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.feature-card-mini {
    padding: 1.5rem;
    border-radius: 0.3rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--traditional-border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.feature-card-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--traditional-gold), rgba(181, 131, 58, 0.7));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-mini:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15), 0 0 15px rgba(181, 131, 58, 0.3);
    border-color: rgba(181, 131, 58, 0.5);
}

.feature-card-mini:hover::before {
    transform: scaleX(1);
}

.icon-box {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    background-size: 150% 150%;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.icon-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(10px);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.icon-box:hover {
    background-position: 100% 100%;
    transform: scale(1.1);
}

.icon-box:hover::after {
    opacity: 0.9;
}

.icon-box i {
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.icon-box:hover i {
    transform: scale(1.2);
}

.icon-box.primary {
    background: radial-gradient(circle at 30% 30%, rgba(181, 131, 58, 0.15), rgba(181, 131, 58, 0.05));
}

.icon-box.secondary {
    background: radial-gradient(circle at 30% 30%, rgba(181, 131, 58, 0.15), rgba(181, 131, 58, 0.05));
}

.icon-box.info {
    background: radial-gradient(circle at 30% 30%, rgba(181, 131, 58, 0.15), rgba(181, 131, 58, 0.05));
}

.icon-box.accent {
    background: radial-gradient(circle at 30% 30%, rgba(181, 131, 58, 0.15), rgba(181, 131, 58, 0.05));
}

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-info { color: var(--info-color); }
.text-accent { color: var(--accent-color); }

.card-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-base);
    transition: color 0.3s ease;
    position: relative;
}

.feature-card-mini:hover .card-title {
    color: var(--primary-color);
}

.card-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-card-mini:hover .card-desc {
    color: var(--text-base);
}

.bg3-texture {
    position: relative;
    isolation: isolate;
}

.bg3-texture::after {
    content: '';
    position: absolute;
    inset: -12%;
    background: url('../img/bg3.png') var(--bg3-pos, center) / cover no-repeat;
    transform: rotate(var(--bg3-rotate, 0deg)) scale(var(--bg3-scale, 1));
    transform-origin: center;
    z-index: -1;
    opacity: 1;
}

.bg3-v1 { --bg3-rotate: -70deg;  --bg3-scale: 1.08; --bg3-pos: 40% 60%; }
.bg3-v2 { --bg3-rotate: 25deg;  --bg3-scale: 1.12; --bg3-pos: 60% 40%; }
.bg3-v3 { --bg3-rotate: -65deg; --bg3-scale: 1.18; --bg3-pos: center; }
.bg3-v4 { --bg3-rotate: 36deg;   --bg3-scale: 1.10; --bg3-pos: 30% 70%; }
.bg3-v5 { --bg3-rotate: -73deg;  --bg3-scale: 1.06; --bg3-pos: 70% 30%; }
.bg3-v6 { --bg3-rotate: 150deg;  --bg3-scale: 1.20; --bg3-pos: 50% 50%; }
.bg3-v7 { --bg3-rotate: -69deg;  --bg3-scale: 1.14; --bg3-pos: 45% 55%; }
.bg3-v8 { --bg3-rotate: 84deg;   --bg3-scale: 1.09; --bg3-pos: 55% 45%; }
.bg3-v9 { --bg3-rotate: -117deg; --bg3-scale: 1.22; --bg3-pos: center; }
.bg3-v10{ --bg3-rotate: 38deg;   --bg3-scale: 1.15; --bg3-pos: 35% 65%; }
.bg3-v11{ --bg3-rotate: -65deg;  --bg3-scale: 1.07; --bg3-pos: 65% 35%; }
.bg3-v12{ --bg3-rotate: 130deg;  --bg3-scale: 1.19; --bg3-pos: 50% 50%; }
.bg3-v13{ --bg3-rotate: -11deg; --bg3-scale: 1.16; --bg3-pos: 42% 58%; }
.bg3-v14{ --bg3-rotate: 26deg;   --bg3-scale: 1.05; --bg3-pos: 58% 42%; }

.text-block p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-base);
    margin-bottom: 1.5rem;
    text-align: justify;
    letter-spacing: 0.01em;
    text-indent: 2em;
}

.text-block p:last-child {
    margin-bottom: 0;
}

.media-content {
    order: 1;
    display: flex;
    flex-direction: column;
}

.media-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-base);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}



@media (min-width: 768px) {
    .media-title {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .event-intro-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .text-content {
        order: 1;
    }
    
    .media-content {
        order: 2;
    }
    
    .text-block {
        padding-bottom: 2rem;
    }
    
    .media-content .showcase-img-wrapper {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .media-content video {
        flex-grow: 1;
        height: 100%;
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .showcase-img-wrapper {
        display: block;
    }
    
    .section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .feature-card-mini {
        padding: 1rem;
    }
    
    .overview-card, .auth-card {
        padding: 1.25rem;
    }
    
    .event-intro-container {
        gap: 1.5rem;
    }
    
    .text-block {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .text-block p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-secondary);
    transition: transform 0.3s ease;
}

.showcase-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-card {
    position: absolute;
    background-color: var(--bg-base);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-primary);
    display: none;
}

@media (min-width: 768px) {
    .stat-card {
        display: block;
    }
}

.stat-card.bottom-left { bottom: -1.5rem; left: -1.5rem; }
.stat-card.top-right { top: -1.5rem; right: -1.5rem; }

.stat-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-icon i { font-size: 1.25rem; }

.stat-text .label { font-size: 0.875rem; color: #6b7280; }
.stat-text .value { font-size: 1.25rem; font-weight: 700; }

/* Overview Cards */
.overview-card {
    background: url('../img/bg3.png') center center / cover no-repeat;
    border-radius: 0.3rem;
    padding: 1.5rem;
    border: 1px solid var(--traditional-border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background-size: cover;
    pointer-events: none;
}

.overview-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15), 0 0 15px rgba(181, 131, 58, 0.3);
    transform: translateY(-5px);
    border-color: rgba(181, 131, 58, 0.5);
}

.overview-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background-color: rgba(181, 131, 58, 0.1);
    border: 1px solid rgba(181, 131, 58, 0.2);
}

/* Authority Cards */
.auth-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: url('../img/bg3.png') center center / cover no-repeat;
    border-radius: 0.75rem;
    border: 1px solid var(--traditional-border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.auth-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15), 0 0 15px rgba(181, 131, 58, 0.3);
    transform: translateY(-5px);
    border-color: rgba(181, 131, 58, 0.5);
}

/* Work Requirements */
.requirements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        align-items: start;
    }
}

.req-card {
    background: url('../img/bg3.png') center center / cover no-repeat;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--traditional-border);
    height: 100%;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .req-card {
        padding: 2rem;
    }
}

.req-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15), 0 0 15px rgba(181, 131, 58, 0.3);
    border-color: rgba(181, 131, 58, 0.5);
    transform: translateY(-5px);
}

.req-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bg-gray);
}

.req-card-header i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.req-card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-base);
    margin: 0;
}

.req-content {
    text-align: left;
}

.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.req-item {
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(181, 131, 58, 0.2);
    transition: all 0.2s;
    line-height: 1.6;
}

.req-item strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-weight: 600;
}

.req-item:last-child {
    margin-bottom: 0;
}

.req-item:hover {
    background: rgba(181, 131, 58, 0.05);
    border-color: rgba(181, 131, 58, 0.4);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.cat-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;

    border-radius: 0.5rem;
    font-weight: 500;
    color: var(--text-base);
    transition: all 0.2s;
    font-size: 0.95rem;
}

.cat-item:hover {
    background-color: rgba(181, 131, 58, 0.1);
    color: var(--traditional-gold);
}

.cat-item i {
    margin-right: 0.5rem;
    color: var(--traditional-gold);
    width: 1.25rem;
    text-align: center;
}

.submission-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sub-method-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.sub-method-item > div:last-child {
    flex: 1;
    min-width: 0;
}

.sub-method-item:hover {
    background-color: rgba(181, 131, 58, 0.05);
    border-color: rgba(181, 131, 58, 0.2);
}

.sub-method-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-base);
}

.sub-method-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

.icon-box.sm {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box.sm i {
    font-size: 1rem;
}

/* Footer */
.site-footer {
    background-color: var(--bg-base);
    border-top: 2px solid var(--traditional-border);
    margin-top: auto;
    padding: 3rem 0 2rem;
    position: relative;
    background-size: cover;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-repeat: repeat-x;
    background-size: 100px 2px;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-base);
    position: relative;
    padding-bottom: 0.5rem;
    font-family: 'SimSun', 'STSong', serif;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
    text-decoration: none;
}

.footer-links a::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(0.5rem);
}

.footer-links a:hover::before {
    transform: translateX(0.25rem) scale(1.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.contact-info li:hover {
    color: var(--text-base);
    transform: translateX(0.25rem);
}

.contact-info i {
    margin-top: 0.25rem;
    margin-right: 0.75rem;
    color: var(--secondary-color);
    width: 1.25rem;
    text-align: center;
}

.copyright {
    margin-top: 3rem;
    padding-top: 2rem; 
    text-align: center;
    color: var(--secondary-color);
    font-size: 0.875rem;
    position: relative;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(181, 131, 58, 0.3), transparent);
}

/* Helper Utilities */
.hidden { display: none !important; }
@media (min-width: 768px) { .md\:hidden { display: none !important; } .md\:block { display: block !important; } }

.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-8 { margin-top: 2rem; }

/* --- New Utilities Extracted from Inline Styles --- */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.p-0 { padding: 0; }
.overflow-hidden { overflow: hidden; }
.transition-transform { transition: transform 0.3s; }
.mr-2 { margin-right: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.object-cover { object-fit: cover; }
.text-lg { font-size: 1.125rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-gray-600 {
    color: #4b5563;
    margin-top: 15px;
}
.text-gray-700 { color: #374151; }
.text-gray-900 { color: #1f2937; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.flex-col { flex-direction: column; }
.gap-4 { gap: 1rem; }

/* --- Background Colors --- */
.bg-primary-light { background-color: rgba(173, 24, 26, 0.1); }
.bg-secondary-light { background-color: rgba(181, 131, 58, 0.1); }
.bg-accent-light { background-color: rgba(181, 131, 58, 0.1); }
.bg-info-light { background-color: rgba(173, 24, 26, 0.1); }

/* --- Overview Icons --- */
.overview-icon i { font-size: 1.5rem; }

/* --- Auth External Button --- */
.btn-auth-external {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    box-shadow: 0 4px 6px -1px rgba(60, 142, 255, 0.4);
}

/* --- Timeline --- */
.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.timeline-date {
    color: #374151;
}

/* --- FAQ Section --- */
.faq-intro-text {
    margin-top: 1rem;
    color: #4b5563;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    padding: 0;
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size:16px;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-content {
    padding: 0 1.5rem 1rem 1.5rem;
    color: #4b5563;
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.cta-bg-wrapper {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-content-wrapper {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 2;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background-color: white;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); /* fallback for var(--shadow-xl) */
}

/* --- Footer --- */
.friend-links-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    color: #1f2937;
}
/* Optimized Mobile Layouts */
@media (max-width: 768px) {


    /* Organization: Centered Vertical Layout (Compact) */
    #organization .grid-3 {
        gap: 0.75rem;
    }
    
    #organization .feature-card-mini {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    #organization .feature-card-mini .icon-box {
        margin: 0 0 0.75rem 0;
        width: 3rem;
        height: 3rem;
    }

    #organization .feature-card-mini .icon-box i {
        font-size: 1.25rem;
    }

    #organization .card-content {
        width: 100%;
    }

    #organization .card-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    #organization .card-desc {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    /* Event Introduction: Compact List View (Keep Horizontal for Event Intro) */
    #eventIntroduction .feature-card-mini {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 1rem;
        text-align: left;
        padding: 1rem;
        align-items: center;
    }

    #eventIntroduction .feature-card-mini .icon-box {
        grid-row: 1 / span 2;
        margin: 0;
        width: 3rem;
        height: 3rem;
    }

    #eventIntroduction .feature-card-mini .icon-box i {
        font-size: 1.25rem;
    }

    #eventIntroduction .feature-card-mini .card-title {
        grid-column: 2;
        grid-row: 1;
        margin: 0 0 0.25rem 0;
        font-size: 1rem;
    }

    #eventIntroduction .feature-card-mini .card-desc {
        grid-column: 2;
        grid-row: 2;
        margin: 0;
        font-size: 0.875rem;
        line-height: 1.4;
    }

    /* Event Overview: Different mobile layouts for two card groups */
    .grid-4-mobile-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .grid-4-mobile-1 {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .grid-4 .overview-card {
        padding: 0.75rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: 100%;
    }

    .grid-4 .overview-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 0.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .grid-4 .overview-icon i {
        font-size: 1rem !important;
    }

    .grid-4 .overview-card .card-title {
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
        width: 100%;
    }

    .grid-4 .overview-card .card-desc {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* Friend Links */
.friend-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 640px) {
  .friend-links { grid-template-columns: repeat(2, 1fr); }
}

.friend-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-gray);
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #374151;
    transition: box-shadow 0.2s, color 0.2s;
    min-width: 0;
}

.friend-link:hover { box-shadow: var(--shadow-primary); color: var(--primary-color); }

.friend-icon { width: 1.75rem; height: 1.75rem; border-radius: 0.25rem; }
.friend-text { font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; min-width: 0; }

/* Schedule Timeline */
.schedule-timeline { position: relative; max-width: 56rem; margin: 0 auto; }
.timeline-line { position: absolute; left: 50%; transform: translateX(-50%); height: 100%; width: 4px; background-color: #e5e7eb; }
.timeline-item { gap: 0; margin-bottom: 4rem; }
.timeline-content.left { text-align: right; padding-right: 3rem; padding-bottom: 1.5rem; }
.timeline-content.right { padding-left: 3rem; }
.timeline-dot { position: absolute; left: 50%; transform: translateX(-50%); width: 3rem; height: 3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; z-index: 10; }
.timeline-dot.primary { background-color: var(--primary-color); }
.timeline-dot.secondary { background-color: var(--secondary-color); }
.timeline-dot.accent { background-color: var(--accent-color); }
.timeline-dot.info { background-color: var(--info-color); }

/* 初赛卡片样式修改 - 桌面端 */
@media (min-width: 1024px) {
    /* 初赛所有卡片靠右对齐 */
    #schedule .timeline-item:nth-child(-n+6) {
        grid-template-columns: 1fr 1fr;
    }
    
    #schedule .timeline-item:nth-child(-n+6) .timeline-content.left {
        grid-column: 2;
        text-align: left;
        padding-left: 3rem;
        padding-right: 0;
    }
    
    #schedule .timeline-item:nth-child(-n+6) .timeline-content.right {
        grid-column: 2;
        text-align: left;
        padding-left: 3rem;
    }
    
    #schedule .timeline-item:nth-child(-n+6) > div:empty {
        grid-column: 1;
    }
    
    /* 初赛图标颜色统一为#b5833a */
    #schedule .timeline-item:nth-child(-n+6) .timeline-dot {
        background-color: #b5833a !important;
    }
    
    /* 初赛标题文字颜色统一为#b5833a */
    #schedule .timeline-item:nth-child(-n+6) .timeline-title {
        color: #b5833a !important;
    }
}

/* 初赛卡片样式修改 - 移动端 */
@media (max-width: 1023px) {
    /* 初赛图标颜色统一为#b5833a */
    #schedule .timeline-item:nth-child(-n+6) .timeline-dot {
        background-color: #b5833a !important;
    }
    
    /* 初赛标题文字颜色统一为#b5833a */
    #schedule .timeline-item:nth-child(-n+6) .timeline-title {
        color: #b5833a !important;
    }
}

@media (max-width: 768px) {
  .schedule-timeline {
    position: relative;
    padding-left: 0;
    margin-left: 0;
  }
  
  /* Reposition the vertical line to the left */
  .timeline-line {
    display: block !important;
    left: 1.5rem !important; 
    transform: translateX(-50%) !important;
    width: 2px;
    height: 100%;
    z-index: 0;
  }
  
  /* Disable grid and add spacing for the list */
  #schedule .timeline-item.grid-2 {
    display: block;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 4rem; /* Space for dot and gap */
    gap: 0;
  }

  /* Hide empty grid cells */
  #schedule .timeline-item > div:empty {
    display: none;
  }

  /* Reset content alignment and padding */
  #schedule .timeline-content.left,
  #schedule .timeline-content.right {
    text-align: left !important;
    padding: 0 !important;
    width: 100%;
  }

  /* Header container */
  #schedule .timeline-head {
    display: block; /* Reset flex if needed, or keep block */
    margin-bottom: 0.5rem;
    position: static;
  }

  /* Position the dot absolutely on the left */
  #schedule .timeline-dot {
    position: absolute;
    left: 1.5rem !important;
    top: 0;
    transform: translateX(-50%) !important;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
    margin: 0;
  }
  
  /* Align title with the dot */
  #schedule .timeline-head h3 {
    margin-bottom: 0.25rem !important;
    line-height: 1.4;
    padding-top: 0.25rem; /* Visual alignment with dot */
  }
  
  /* Adjust paragraph text color/margin if needed */
  #schedule .timeline-content p {
    color: #4b5563;
  }
}

@media (max-width: 768px) {
    #organization .grid-3 {
        gap: 0.75rem;
    }
}

/* 大赛主题样式 - 中国戏曲文化风格 */
.drama-theme-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(252, 245, 230, 0.8));
    border: 2px solid #d08b2c;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(208, 139, 44, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

/* 戏曲装饰元素 */
.chinese-opera-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.15;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.chinese-opera-decoration.top-left {
    top: 10px;
    left: 10px;
    background-image: url('../img/lian.png');
}

.chinese-opera-decoration.top-right {
    top: 10px;
    right: 10px;
    background-image: url('../img/lian.png');
}

.chinese-opera-decoration.bottom-left {
    bottom: 10px;
    left: 10px;
    background-image: url('../img/lian.png');
}

.chinese-opera-decoration.bottom-right {
    bottom: 10px;
    right: 10px;
    background-image: url('../img/lian.png');
}

/* 戏曲脸谱背景装饰 */
.drama-theme-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="%23d08b2c" stroke-width="1" opacity="0.1"/><path d="M60 60C50 60 40 70 40 80s10 20 20 20 20-10 20-20-10-20-20-20zm80 0c-10 0-20 10-20 20s10 20 20 20 20-10 20-20-10-20-20-20z" fill="%23d08b2c" opacity="0.1"/><path d="M100 120C80 120 60 140 60 160s20 20 40 20 40-20 40-20-20-40-40-40z" fill="%23d08b2c" opacity="0.1"/><path d="M50 50L70 70M150 50L130 70M50 150L70 130M150 150L130 130" stroke="%23d08b2c" stroke-width="2" opacity="0.1"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.drama-theme-title {
    font-size: 3rem;
    font-weight: 800;
    color: #d08b2c;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(208, 139, 44, 0.3);
    font-family: 'SimSun', 'STSong', serif;
    letter-spacing: 2px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* 戏曲风格装饰边框 */
.drama-theme-title::before,
.drama-theme-title::after {
    content: '❖';
    color: #d08b2c;
    opacity: 0.6;
    font-size: 1.5rem;
    margin: 0 10px;
    vertical-align: middle;
}

.drama-theme-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Microsoft YaHei', 'SimHei', sans-serif;
    position: relative;
    z-index: 1;
    max-width: 80%;
    margin: 0 auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .drama-theme-card {
        padding: 2rem 1.5rem;
    }
    
    .drama-theme-title {
        font-size: 2rem;
        letter-spacing: 1px;
        white-space: nowrap; /* 确保不换行 */
        overflow: hidden; /* 隐藏溢出内容 */
        text-overflow: ellipsis; /* 溢出时显示省略号 */
        max-width: 100%; /* 确保宽度限制 */
        text-align: center; /* 居中对齐 */
    }
    
    .chinese-opera-decoration {
        width: 60px;
        height: 60px;
    }
    
    .drama-theme-title::before,
    .drama-theme-title::after {
        font-size: 1rem;
        margin: 0 5px;
    }
    
    .drama-theme-desc {
        max-width: 95%;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .drama-theme-title {
        font-size: 1.2rem; /* 进一步缩小字号 */
        letter-spacing: 0.5px; /* 减小字间距 */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        text-align: center;
    }
    
    .chinese-opera-decoration {
        width: 40px;
        height: 40px;
        opacity: 0.1;
    }
}

/* 针对超小屏幕的额外优化 */
@media (max-width: 360px) {
    .drama-theme-title {
        font-size: 1.4rem; /* 在超小屏幕上进一步缩小 */
        letter-spacing: 0.3px;
    }
    
    .drama-theme-title::before,
    .drama-theme-title::after {
        font-size: 0.8rem; /* 装饰符号也相应缩小 */
        margin: 0 3px;
    }
}

/* 新增样式 - 赛项说明和作品要求 */
.competition-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-section {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(181, 131, 58, 0.2);
}

.category-title {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-base);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(181, 131, 58, 0.2);
}

.category-title i {
    margin-right: 0.5rem;
    color: var(--traditional-gold);
    width: 1.25rem;
    text-align: center;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left; /* 覆盖父容器的居中设置 */
}

.category-list li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: left; /* 确保li标签下的文字左对齐 */
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list strong {
    color: var(--text-base);
    font-weight: 600;
}

/* 作品时长要求样式 */
.duration-content {
    text-align: left;
}

.duration-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.duration-item {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.5rem;
    border: 1px solid rgba(181, 131, 58, 0.2);
    transition: all 0.2s;
    line-height: 1.6;
}

.duration-item:hover {
    background: rgba(181, 131, 58, 0.05);
    border-color: rgba(181, 131, 58, 0.4);
}

/* 时长要求的文本样式已统一使用strong标签 */
.duration-item strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-weight: 600;
}

.duration-note {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
    margin-top: 0.5rem;
}

/* 表演要求样式 */
.performance-content {
    text-align: left;
}

.performance-requirements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.perf-req-item {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.5rem;
    border: 1px solid rgba(181, 131, 58, 0.2);
    transition: all 0.2s;
    line-height: 1.6;
}

.perf-req-item:hover {
    background: rgba(181, 131, 58, 0.05);
    border-color: rgba(181, 131, 58, 0.4);
}

.perf-req-item strong {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 0.5rem;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .duration-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .duration-item {
        padding: 0.5rem;
    }
    
    .duration-item i {
        font-size: 1rem;
        width: 1.25rem;
    }
    
    .duration-type {
        min-width: 3.5rem;
        font-size: 0.9rem;
    }
    
    .duration-time {
        font-size: 0.85rem;
    }
    
    .perf-req-item {
        padding: 0.75rem;
    }
    
    .perf-req-item h4 {
        font-size: 0.9rem;
    }
    
    .perf-req-item p {
        font-size: 0.8rem;
    }
    
    .category-section {
        padding: 0.75rem;
    }
    
    .category-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .duration-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .duration-item i {
        margin-bottom: 0.25rem;
    }
    
    .duration-type {
        margin-right: 0.25rem;
        min-width: auto;
    }
    
    .perf-req-item {
        /* 与通用要求保持一致，文字左对齐 */
        text-align: left;
    }
}




