/* mujun.day - Colors: #3A3A3A, #C02020, #F0E040, #FAFAF8, #D0D0D0 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #FAFAF8; color: #3A3A3A; font-family: 'Inter', sans-serif; }
#hero { min-height: 50vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; }
.title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2.5rem, 5vw, 4rem); color: #C02020; margin-bottom: 1rem; }
.sub { font-size: 1rem; color: #3A3A3A; max-width: 400px; line-height: 1.6; }
#entries { max-width: 700px; margin: 0 auto; padding: 3rem 2rem; }
.entry { margin-bottom: 3rem; padding: 2rem; border-left: 4px solid #F0E040; background: rgba(240,224,64,0.05); opacity: 0; transform: translateY(15px); transition: opacity 0.6s ease, transform 0.6s ease; }
.entry.visible { opacity: 1; transform: translateY(0); }
.date { font-family: 'Space Grotesk', sans-serif; font-size: 0.7rem; color: #C02020; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 0.5rem; }
.entry-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.5rem; color: #3A3A3A; margin-bottom: 0.75rem; }
.entry-text { font-size: 1rem; line-height: 1.8; color: #3A3A3A; }
