/* Hero Section 样式 */
.hero-section {
    position: relative;
    height: calc(100vh - 80px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 灯笼容器样式 */
#lanternContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* 月亮样式 */
.moon {
    position: absolute;
    top: 100px;
    right: 80px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 35% 35%,
            #fff9c4 0%,
            #fff176 50%,
            #ffd54f 100%);
    border-radius: 50%;
    box-shadow: 0 0 50px #fff9c4,
        inset -25px -25px 50px rgba(0, 0, 0, 0.2);
    animation: moonGlow 4s ease-in-out infinite;
    z-index: 2;
    display: block;
}

.moon::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle,
            rgba(255, 249, 196, 0.3) 0%,
            rgba(255, 249, 196, 0.1) 50%,
            transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* 动画效果 */
@keyframes moonGlow {

    0%,
    100% {
        filter: brightness(1) blur(0px);
        transform: scale(1);
    }

    50% {
        filter: brightness(1.2) blur(2px);
        transform: scale(1.05);
    }
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .moon {
        width: 100px;
        height: 100px;
        right: 60px;
        top: 120px;
    }
}

@media (max-width: 768px) {
    .moon {
        width: 80px;
        height: 80px;
        right: 30px;
        top: 100px;
    }
}

@media (max-width: 480px) {
    .moon {
        width: 60px;
        height: 60px;
        right: 20px;
        top: 90px;
    }
}