body{
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #fdf6e3 0%, #f8ecc2 50%, #fdf6e3 100%);
    position: relative;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 159, 28, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

a{
    text-decoration: none;
}

.head {
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    border-radius: 0 0 20px 20px;
}

.hline {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hleft {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hleft #year {
    font-size: 24px;
    font-weight: bold;
    color: #fff3cd;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hleft #festival {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hright {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hright a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
}

.hright a:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.main-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 4px 16px rgba(230, 57, 70, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff9f43, #ff6b6b);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.body {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.body img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

.body img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.section-title {
    text-align: center;
    padding: 30px 20px 20px;
    font-size: 28px;
    font-weight: bold;
    color: #e63946;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff9f43, transparent);
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .hline {
        max-width: 95%;
        padding: 0 12px;
    }
    
    .hleft {
        gap: 8px;
    }
    
    .hleft #year {
        font-size: 18px;
    }
    
    .hleft #festival {
        font-size: 17px;
    }
    
    .hright {
        gap: 8px;
    }
    
    .hright a {
        font-size: 13px;
        padding: 4px 10px;
    }
    
    .main-container {
        padding: 12px 10px;
    }
    
    .body {
        padding: 10px;
    }
    
    .section-title {
        font-size: 20px;
        padding: 15px 10px 8px;
        margin-bottom: 6px;
    }
}

@media (max-width: 768px) {
    .head {
        padding: 10px 0;
        border-radius: 0 0 15px 15px;
    }
    
    .hline {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hleft {
        gap: 10px;
        justify-content: center;
        width: 100%;
    }
    
    .hleft #year {
        font-size: 20px;
    }
    
    .hleft #festival {
        font-size: 18px;
    }
    
    .hright {
        width: 100%;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .hright a {
        font-size: 12px;
        padding: 4px 10px;
        border-radius: 16px;
        flex: 1 1 70px;
        text-align: center;
    }
    
    .main-container {
        padding: 10px 6px;
    }
    
    .content-wrapper {
        border-radius: 12px;
    }
    
    .body {
        padding: 6px;
    }
    
    .section-title {
        font-size: 18px;
        padding: 12px 8px 6px;
        margin-bottom: 4px;
    }
}