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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(218, 165, 32, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 20, 60, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
    z-index: 0;
    animation: m8k5n3p9x 20s ease-in-out infinite;
}

@keyframes m8k5n3p9x {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.k9m2n7p4x {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(218, 165, 32, 0.2);
    z-index: 1000;
    border-bottom: 2px solid rgba(218, 165, 32, 0.3);
    animation: p3k8n5m7x 0.6s ease-out;
}

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

.q7k4n8m2p {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.w5k9n3m6x h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    position: relative;
}

.w5k9n3m6x h1 a {
    background: linear-gradient(135deg, #daa520 0%, #ffd700 50%, #daa520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    animation: e2k7n9m5x 4s linear infinite;
    background-size: 200% auto;
    filter: drop-shadow(0 2px 8px rgba(218, 165, 32, 0.6));
    text-shadow: 0 0 30px rgba(218, 165, 32, 0.5);
}

@keyframes e2k7n9m5x {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.w5k9n3m6x h1 a::before {
    content: '🎬';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: r8k3n6m4x 3s infinite;
}

@keyframes r8k3n6m4x {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.2);
        opacity: 0.8;
    }
}

.w5k9n3m6x h1 a:hover {
    transform: scale(1.08);
    filter: brightness(1.3) drop-shadow(0 4px 16px rgba(218, 165, 32, 0.8));
}

.t6k8n2m9p {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.t6k8n2m9p li a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 700;
    font-size: 0.96rem;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    transition: all 0.35s ease;
    background: rgba(218, 165, 32, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.t6k8n2m9p li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #daa520 0%, #dc143c 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

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

.t6k8n2m9p li a:hover {
    color: #ffffff;
    transform: translateY(-3px);
    border-color: #daa520;
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.5);
}

.y9k3n5m8p {
    max-width: 1400px;
    margin: 85px auto 2rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.u4k7n2m9x {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 20, 20, 0.95) 100%);
    padding: 5rem 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(218, 165, 32, 0.3);
    margin-bottom: 4rem;
    text-align: center;
    animation: i5k8n3m6x 1s ease-out;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(218, 165, 32, 0.4);
}

.u4k7n2m9x::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(218, 165, 32, 0.05) 20px,
        rgba(218, 165, 32, 0.05) 40px
    );
    animation: o3k9n7m2x 25s linear infinite;
}

@keyframes o3k9n7m2x {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes i5k8n3m6x {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.u4k7n2m9x h2 {
    font-size: 4rem;
    margin-bottom: 1.6rem;
    background: linear-gradient(135deg, #daa520 0%, #ffd700 25%, #dc143c 50%, #daa520 75%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    z-index: 1;
    animation: a6k2n9m7x 6s linear infinite;
    background-size: 200% auto;
    text-shadow: 0 0 40px rgba(218, 165, 32, 0.6);
}

@keyframes a6k2n9m7x {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.u4k7n2m9x p {
    font-size: 1.4rem;
    color: #b0b0b0;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.s8k3n9m5x {
    margin-bottom: 4rem;
}

.s8k3n9m5x h2 {
    font-size: 2.8rem;
    margin-bottom: 2.6rem;
    color: #daa520;
    font-weight: 900;
    padding: 1.6rem 3.2rem;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.15) 0%, rgba(220, 20, 60, 0.15) 100%);
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.3);
    position: relative;
    border: 2px solid rgba(218, 165, 32, 0.4);
}

.s8k3n9m5x h2::before {
    content: '🎥';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
    animation: d7k3n9m5x 2s infinite;
}

.s8k3n9m5x h2::after {
    content: '🎞️';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
    animation: d7k3n9m5x 2s infinite 1s;
}

@keyframes d7k3n9m5x {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.3);
        opacity: 0.8;
    }
}

.f2k6n9m8x {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.g7k4n2m9x {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(40, 20, 20, 0.95) 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: h9k3n8m2x 0.7s ease-out backwards;
    border: 2px solid transparent;
    position: relative;
}

.g7k4n2m9x::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(220, 20, 60, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

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

.g7k4n2m9x:nth-child(1) { animation-delay: 0.05s; }
.g7k4n2m9x:nth-child(2) { animation-delay: 0.1s; }
.g7k4n2m9x:nth-child(3) { animation-delay: 0.15s; }
.g7k4n2m9x:nth-child(4) { animation-delay: 0.2s; }
.g7k4n2m9x:nth-child(5) { animation-delay: 0.25s; }
.g7k4n2m9x:nth-child(6) { animation-delay: 0.3s; }

@keyframes h9k3n8m2x {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.g7k4n2m9x:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 18px 45px rgba(218, 165, 32, 0.4);
    border-color: #daa520;
}

.j3k8n5m7p {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.j3k8n5m7p img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.85);
}

.g7k4n2m9x:hover .j3k8n5m7p img {
    transform: scale(1.15);
    filter: brightness(1);
}

.l9k2n6m8x {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #daa520 0%, #dc143c 100%);
    color: #ffffff;
    padding: 0.5rem 1.3rem;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.5);
    z-index: 2;
}

.k6k3n9m5p {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffd700;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.92rem;
    font-weight: 700;
    z-index: 2;
    border: 1px solid rgba(218, 165, 32, 0.4);
}

.n8k5m2p9x {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.n8k5m2p9x h3 {
    font-size: 1.65rem;
    margin-bottom: 1rem;
    color: #ffd700;
    font-weight: 800;
}

.n8k5m2p9x h3 a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.n8k5m2p9x h3 a:hover {
    color: #daa520;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.8);
}

.b4k7n9m3x {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.1rem;
}

.b4k7n9m3x span {
    padding: 0.5rem 1.2rem;
    background: rgba(218, 165, 32, 0.2);
    border-radius: 16px;
    font-size: 0.88rem;
    color: #daa520;
    font-weight: 700;
    border: 2px solid rgba(218, 165, 32, 0.3);
    transition: all 0.3s ease;
}

.b4k7n9m3x span:hover {
    transform: scale(1.08);
    box-shadow: 0 3px 12px rgba(218, 165, 32, 0.4);
    background: rgba(218, 165, 32, 0.3);
}

.n8k5m2p9x p {
    color: #b0b0b0;
    line-height: 1.85;
    margin-bottom: 1.3rem;
    font-size: 0.98rem;
}

.v2k9n8m5p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.1rem;
    border-top: 2px dashed rgba(218, 165, 32, 0.3);
    font-size: 0.92rem;
    color: #888;
}

.c5k9n3m7x {
    display: inline-block;
    margin-top: 1.1rem;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #daa520 0%, #dc143c 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s ease;
    font-weight: 900;
    font-size: 0.98rem;
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.5);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.c5k9n3m7x::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.c5k9n3m7x:hover::before {
    width: 250px;
    height: 250px;
}

.c5k9n3m7x:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 35px rgba(218, 165, 32, 0.7);
    border-color: #ffd700;
}

.x7k2n9m6p {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(40, 20, 20, 0.95) 100%);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(218, 165, 32, 0.3);
}

.z9k5n8m3p {
    list-style: none;
}

.z9k5n8m3p li {
    padding: 1.6rem;
    margin-bottom: 1.3rem;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 10px;
    transition: all 0.35s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid transparent;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.z9k5n8m3p li:hover {
    background: rgba(218, 165, 32, 0.2);
    transform: translateX(12px);
    border-left-color: #daa520;
    box-shadow: 0 6px 25px rgba(218, 165, 32, 0.4);
}

.z9k5n8m3p li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.12rem;
    font-weight: 700;
    flex: 1;
    transition: color 0.3s ease;
}

.z9k5n8m3p li a:hover {
    color: #daa520;
}

.z9k5n8m3p li time {
    color: #888;
    font-size: 0.92rem;
    font-weight: 600;
}

.m3k8n7p2x {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 15, 15, 0.95) 100%);
    padding: 4rem 3.5rem 2.5rem;
    margin-top: 5rem;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -12px 35px rgba(218, 165, 32, 0.2);
    border-top: 4px solid rgba(218, 165, 32, 0.4);
    position: relative;
    z-index: 1;
}

.p8k2n5m9x {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.q5k9n3m7x h3 {
    margin-bottom: 1.6rem;
    color: #daa520;
    font-size: 1.6rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(218, 165, 32, 0.5);
}

.q5k9n3m7x p {
    color: #b0b0b0;
    line-height: 1.85;
}

.q5k9n3m7x ul {
    list-style: none;
}

.q5k9n3m7x ul li {
    margin-bottom: 1rem;
}

.q5k9n3m7x ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

.r7k3n8m2p {
    text-align: center;
    padding: 2.2rem;
    border-top: 2px dashed rgba(218, 165, 32, 0.3);
    color: #888;
    font-weight: 600;
}

.a9k5n2m8p {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #daa520 0%, #dc143c 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.6);
    transition: all 0.4s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    font-weight: 900;
    border: 3px solid rgba(255, 215, 0, 0.4);
}

.a9k5n2m8p.i8k3n7m5x {
    opacity: 1;
    visibility: visible;
    animation: e4k9n2m7x 0.6s ease-out;
}

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

.a9k5n2m8p:hover {
    transform: translateY(-10px) scale(1.15);
    box-shadow: 0 14px 45px rgba(218, 165, 32, 0.8);
}

.t5k8n3m9p {
    padding: 1.3rem 0;
    margin-bottom: 2.2rem;
    font-size: 1.02rem;
    color: #b0b0b0;
    font-weight: 700;
}

.t5k8n3m9p a {
    color: #daa520;
    text-decoration: none;
    transition: color 0.3s ease;
}

.t5k8n3m9p a:hover {
    color: #ffd700;
}

.t5k8n3m9p span {
    color: #888;
}

.o2k9n5m7x {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(40, 20, 20, 0.95) 100%);
    padding: 4.2rem;
    border-radius: 20px;
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.5);
    margin-bottom: 4rem;
    animation: i5k8n3m6x 1s ease-out;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(218, 165, 32, 0.3);
}

.o2k9n5m7x h2 {
    font-size: 3.2rem;
    color: #daa520;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 4px solid rgba(218, 165, 32, 0.4);
    font-weight: 900;
    background: linear-gradient(135deg, #daa520 0%, #ffd700 50%, #daa520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.w6k3n9m2p {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px dashed rgba(218, 165, 32, 0.3);
    font-size: 1.02rem;
    color: #888;
    flex-wrap: wrap;
    font-weight: 600;
}

.o2k9n5m7x img {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 3rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(218, 165, 32, 0.3);
}

.o2k9n5m7x section h3 {
    font-size: 2.3rem;
    color: #daa520;
    margin: 3.2rem 0 2rem;
    font-weight: 800;
}

.o2k9n5m7x section p {
    margin-bottom: 2rem;
    line-height: 2;
    color: #b0b0b0;
    text-align: justify;
    font-size: 1.08rem;
}

.o2k9n5m7x section strong {
    color: #daa520;
    font-weight: 800;
}

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

@media (max-width: 768px) {
    .t6k8n2m9p {
        flex-direction: column;
        gap: 0.7rem;
    }

    .u4k7n2m9x h2 {
        font-size: 3rem;
    }

    .f2k6n9m8x {
        grid-template-columns: 1fr;
    }

    .o2k9n5m7x {
        padding: 2.4rem;
    }

    .o2k9n5m7x h2 {
        font-size: 2.5rem;
    }
}
