/* ==========================================
   LunarStar Unified Section Decoration
   Moon Line + Golden Noise
========================================== */

.section-deco {
    position: relative;
}

/* Top-left Moon Line */
.section-deco::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 180px;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 176, 82, 0.28), transparent);
    opacity: 0.5;
    pointer-events: none;
}

/* Bottom-right Golden Noise glow */
.section-deco::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 100% 100%, rgba(212, 176, 82, 0.04), transparent 70%);
    pointer-events: none;
}
