* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0a0a0a 100%);
    background-size: 400% 400%;
    animation: bg7k2m9n4x 25s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
}

@keyframes bg7k2m9n4x {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(218, 165, 32, 0.08) 0%, transparent 45%),
                radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.08) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.hdr8k3m5n {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(218, 165, 32, 0.2);
    z-index: 1000;
    border-bottom: 3px solid rgba(218, 165, 32, 0.6);
    animation: slide9m2k7n 0.9s ease-out;
}

@keyframes slide9m2k7n {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.nav5k9m3x {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo3m8k7n h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2.5px;
}

.logo3m8k7n h1 a {
    color: #daa520;
    text-decoration: none;
    transition: all 0.4s ease;
    text-shadow: 0 3px 15px rgba(218, 165, 32, 0.6);
}

.logo3m8k7n h1 a::before {
    content: '🎬';
    margin-right: 12px;
    font-size: 2.2rem;
    animation: icon4k7m2n 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(218, 165, 32, 0.9));
}

@keyframes icon4k7m2n {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.15) rotate(-12deg); }
}

.logo3m8k7n h1 a:hover {
    transform: scale(1.06);
    color: #ffd700;
}

.menu2k5m9x {
    display: flex;
    list-style: none;
    gap: 0.6rem;
}

.menu2k5m9x li a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 1rem 2rem;
    border-radius: 28px;
    transition: all 0.4s ease;
    background: rgba(218, 165, 32, 0.12);
    border: 2.5px solid transparent;
    overflow: hidden;
    position: relative;
}

.menu2k5m9x li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.3), rgba(255, 215, 0, 0.2));
    transition: left 0.5s ease;
    z-index: -1;
}

.menu2k5m9x li a:hover::before {
    left: 0;
}

.menu2k5m9x li a:hover {
    background: rgba(218, 165, 32, 0.25);
    transform: translateY(-3px);
    border-color: rgba(218, 165, 32, 0.7);
    box-shadow: 0 10px 28px rgba(218, 165, 32, 0.4);
    color: #ffd700;
}

.main6k3m8n {
    max-width: 1600px;
    margin: 75px auto 4rem;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

.hero9m4k2n {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.15), rgba(139, 0, 0, 0.12));
    padding: 5rem 4.5rem;
    border-radius: 28px;
    box-shadow: 0 18px 60px rgba(218, 165, 32, 0.25);
    margin-bottom: 3.5rem;
    text-align: center;
    animation: fade7k3m5n 1.3s ease-out;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(218, 165, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.hero9m4k2n::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 35px,
                rgba(218, 165, 32, 0.04) 35px, rgba(218, 165, 32, 0.04) 70px);
    animation: pattern5k8m3n 25s linear infinite;
}

@keyframes pattern5k8m3n {
    to { transform: translate(49px, 49px); }
}

@keyframes fade7k3m5n {
    from { opacity: 0; transform: translateY(60px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero9m4k2n h2 {
    font-size: 4.5rem;
    margin-bottom: 1.8rem;
    background: linear-gradient(135deg, #daa520, #ffd700 30%, #ffed4e 50%, #ffd700 70%, #daa520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    position: relative;
    z-index: 1;
    animation: pulse2k9m7n 3.5s ease-in-out infinite;
}

@keyframes pulse2k9m7n {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.hero9m4k2n p {
    font-size: 1.5rem;
    color: #c0c0c0;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.sect4k7m9n {
    margin-bottom: 3.5rem;
}

.sect4k7m9n h2 {
    font-size: 2.8rem;
    margin-bottom: 2.8rem;
    color: #daa520;
    font-weight: 900;
    padding: 1.8rem 3.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(218, 165, 32, 0.12));
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.2);
    border: 2.5px solid rgba(218, 165, 32, 0.3);
    position: relative;
}

.sect4k7m9n h2::before {
    content: '⭐';
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
    animation: star3k8m6n 2.8s ease-in-out infinite;
}

@keyframes star3k8m6n {
    0%, 100% { transform: translateY(-50%) scale(1) rotate(0deg); }
    50% { transform: translateY(-50%) scale(1.3) rotate(-20deg); }
}

.grid8k2m5n {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 3rem;
}

.card5m9k3n {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.2);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: up4k8m2n 0.9s ease-out backwards;
    border: 2.5px solid rgba(218, 165, 32, 0.2);
    position: relative;
}

.card5m9k3n::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.08), rgba(139, 0, 0, 0.08));
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.card5m9k3n:hover::before {
    opacity: 1;
}

.card5m9k3n:nth-child(1) { animation-delay: 0.12s; }
.card5m9k3n:nth-child(2) { animation-delay: 0.24s; }
.card5m9k3n:nth-child(3) { animation-delay: 0.36s; }
.card5m9k3n:nth-child(4) { animation-delay: 0.48s; }
.card5m9k3n:nth-child(5) { animation-delay: 0.6s; }
.card5m9k3n:nth-child(6) { animation-delay: 0.72s; }

@keyframes up4k8m2n {
    from { opacity: 0; transform: translateY(50px) scale(0.94); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.card5m9k3n:hover {
    transform: translateY(-15px) scale(1.025);
    box-shadow: 0 28px 65px rgba(218, 165, 32, 0.45);
    border-color: #daa520;
}

.img7k3m9n {
    position: relative;
    overflow: hidden;
}

.img7k3m9n img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card5m9k3n:hover .img7k3m9n img {
    transform: scale(1.18);
}

.badge2k6m8n {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, #8b0000, #b22222);
    color: #fff;
    padding: 0.7rem 1.6rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 900;
    box-shadow: 0 6px 22px rgba(139, 0, 0, 0.5);
    animation: beat9k3m7n 2.8s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes beat9k3m7n {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cont3k8m5n {
    padding: 2.2rem;
}

.cont3k8m5n h3 {
    font-size: 1.7rem;
    margin-bottom: 1.4rem;
    color: #daa520;
    font-weight: 900;
}

.cont3k8m5n h3 a {
    color: #daa520;
    text-decoration: none;
    transition: color 0.35s;
}

.cont3k8m5n h3 a:hover {
    color: #ffd700;
}

.cont3k8m5n p {
    margin-bottom: 1.6rem;
    line-height: 1.9;
    color: #b0b0b0;
    font-size: 1.05rem;
}

.meta4k7m2n {
    display: flex;
    justify-content: space-between;
    padding-top: 1.4rem;
    border-top: 2.5px dashed rgba(218, 165, 32, 0.3);
    font-size: 0.98rem;
    color: #888;
    font-weight: 700;
}

.btn9k5m3n {
    display: inline-block;
    margin-top: 1.4rem;
    padding: 1rem 2.8rem;
    background: linear-gradient(135deg, #daa520, #ffd700 50%, #b8860b);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 28px;
    transition: all 0.5s ease;
    font-weight: 900;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.5);
    border: 2.5px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn9k5m3n::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn9k5m3n:hover::before {
    width: 350px;
    height: 350px;
}

.btn9k5m3n:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 18px 50px rgba(218, 165, 32, 0.65);
}

.side7k2m9n {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 18px 55px rgba(218, 165, 32, 0.2);
    backdrop-filter: blur(15px);
    border: 2.5px solid rgba(218, 165, 32, 0.2);
}

.list8k3m6n {
    list-style: none;
}

.list8k3m6n li {
    padding: 1.6rem;
    margin-bottom: 1.4rem;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.06), rgba(139, 0, 0, 0.06));
    border-radius: 14px;
    transition: all 0.45s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid transparent;
    box-shadow: 0 5px 18px rgba(218, 165, 32, 0.1);
}

.list8k3m6n li:hover {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.15), rgba(139, 0, 0, 0.15));
    transform: translateX(12px);
    border-left-color: #daa520;
    box-shadow: 0 10px 32px rgba(218, 165, 32, 0.3);
}

.list8k3m6n li a {
    color: #daa520;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 800;
    flex: 1;
    transition: color 0.35s;
}

.list8k3m6n li a:hover {
    color: #ffd700;
}

.list8k3m6n li time {
    color: #888;
    font-size: 0.95rem;
    font-weight: 700;
}

.foot3k9m7n {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(26, 26, 26, 0.98));
    padding: 4.5rem 4rem 3.5rem;
    margin-top: 4.5rem;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -12px 50px rgba(218, 165, 32, 0.25);
    border-top: 3px solid rgba(218, 165, 32, 0.6);
    backdrop-filter: blur(15px);
}

.fgrid2k8m5n {
    max-width: 1600px;
    margin: 0 auto 3.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.5rem;
}

.fcol5k3m9n h3 {
    margin-bottom: 1.8rem;
    color: #daa520;
    font-size: 1.7rem;
    font-weight: 900;
}

.fcol5k3m9n p {
    color: #b0b0b0;
    line-height: 1.9;
    font-weight: 700;
}

.fcol5k3m9n ul {
    list-style: none;
}

.fcol5k3m9n ul li {
    margin-bottom: 1.1rem;
}

.fcol5k3m9n ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.4s;
    font-weight: 700;
}

.fcol5k3m9n ul li a:hover {
    color: #daa520;
    padding-left: 12px;
}

.copy6k2m9n {
    text-align: center;
    padding: 2.8rem;
    border-top: 2.5px dashed rgba(218, 165, 32, 0.3);
    color: #b0b0b0;
    font-weight: 700;
}

.top8k4m3n {
    position: fixed;
    bottom: 45px;
    right: 45px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #daa520, #ffd700);
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    font-size: 2.2rem;
    cursor: pointer;
    box-shadow: 0 12px 38px rgba(218, 165, 32, 0.6);
    transition: all 0.5s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    font-weight: 900;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.top8k4m3n.show2k7m5n {
    opacity: 1;
    visibility: visible;
    animation: pop6k3m9n 0.7s ease-out;
}

@keyframes pop6k3m9n {
    from { transform: scale(0) rotate(-360deg); }
    to { transform: scale(1) rotate(0deg); }
}

.top8k4m3n:hover {
    transform: translateY(-10px) scale(1.15);
    box-shadow: 0 18px 55px rgba(218, 165, 32, 0.75);
}

.bread4k9m2n {
    padding: 1.6rem 0;
    margin-bottom: 2.8rem;
    font-size: 1.05rem;
    color: #daa520;
    font-weight: 800;
}

.bread4k9m2n a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.35s;
}

.bread4k9m2n a:hover {
    color: #daa520;
}

.art9k3m7n {
    background: rgba(26, 26, 26, 0.95);
    padding: 4.5rem;
    border-radius: 25px;
    box-shadow: 0 18px 60px rgba(218, 165, 32, 0.2);
    margin-bottom: 3.5rem;
    animation: fade7k3m5n 1.3s ease-out;
    backdrop-filter: blur(15px);
    border: 2.5px solid rgba(218, 165, 32, 0.2);
}

.art9k3m7n h2 {
    font-size: 3.5rem;
    color: #daa520;
    margin-bottom: 3.5rem;
    padding-bottom: 2.8rem;
    border-bottom: 3px solid rgba(218, 165, 32, 0.3);
    font-weight: 900;
}

.ameta5k8m3n {
    display: flex;
    gap: 2.2rem;
    margin-bottom: 3.5rem;
    padding-bottom: 2.8rem;
    border-bottom: 2.5px dashed rgba(218, 165, 32, 0.2);
    font-size: 1.05rem;
    color: #888;
    flex-wrap: wrap;
    font-weight: 700;
}

.art9k3m7n img {
    width: 100%;
    max-width: 950px;
    height: auto;
    margin: 3.5rem 0;
    border-radius: 20px;
    box-shadow: 0 18px 55px rgba(218, 165, 32, 0.25);
    border: 3px solid rgba(218, 165, 32, 0.3);
}

.art9k3m7n section h3 {
    font-size: 2.6rem;
    color: #daa520;
    margin: 4rem 0 2.8rem;
    font-weight: 900;
}

.art9k3m7n section p {
    margin-bottom: 2.2rem;
    line-height: 2.1;
    color: #b0b0b0;
    text-align: justify;
    font-size: 1.1rem;
}

.art9k3m7n section strong {
    color: #ffd700;
    font-weight: 900;
}

@media (max-width: 992px) {
    .grid8k2m5n {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    }
}

@media (max-width: 768px) {
    .menu2k5m9x {
        flex-direction: column;
        gap: 1rem;
    }
    .hero9m4k2n h2 {
        font-size: 3.5rem;
    }
    .grid8k2m5n {
        grid-template-columns: 1fr;
    }
    .art9k3m7n {
        padding: 3.5rem;
    }
    .art9k3m7n h2 {
        font-size: 3rem;
    }
}
