/* mosoon.xyz */
/* Colors: #D060A0, #A080D0, #E8E0F0, #141020, #0A0818 */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: #0A0818; color: #E8E0F0; 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; background: linear-gradient(135deg, #141020, #0A0818); }
.hero-title { font-family: 'Lora', serif; font-weight: 600; font-size: clamp(2rem, 5vw, 4rem); color: #E8E0F0; margin-bottom: 1rem; }
.hero-sub { font-family: 'Inter', sans-serif; font-size: 1rem; color: #A080D0; max-width: 500px; line-height: 1.6; }

#content { max-width: 800px; margin: 0 auto; padding: 3rem 2rem; }

.block { margin-bottom: 3rem; padding: 2rem; border-left: 3px solid #D060A0; background: rgba(20,16,32,0.5); opacity: 0; transform: translateY(15px); transition: opacity 0.6s ease, transform 0.6s ease; }
.block.visible { opacity: 1; transform: translateY(0); }
.block-title { font-family: 'Lora', serif; font-weight: 600; font-size: clamp(1.3rem, 2.5vw, 2rem); color: #E8E0F0; margin-bottom: 0.75rem; }
.block-text { font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.8; color: #A080D0; }
