* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --wl-bg: #fef7ed; --wl-white: #fff; --wl-orange: #f97316; --wl-orange-dark: #ea580c; --wl-text: #292524; --wl-text2: #78716c; --wl-muted: #a8a29e; --wl-border: #e7e5e4; --wl-green: #22c55e; }
body.wl { font-family: 'Georgia', serif; background: var(--wl-bg); color: var(--wl-text); min-height: 100vh; }
.wl-nav { display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; height: 52px; background: var(--wl-white); border-bottom: 1px solid var(--wl-border); }
.wl-brand { font-size: 1.1rem; font-weight: 700; color: var(--wl-orange); }
.wl-nav-r { display: flex; align-items: center; gap: 1rem; }
.wl-link { color: var(--wl-text2); text-decoration: none; font-size: 0.85rem; font-family: -apple-system, sans-serif; }
.wl-link:hover, .wl-link.active { color: var(--wl-orange); }
.wl-user { color: var(--wl-muted); font-size: 0.85rem; font-family: -apple-system, sans-serif; }
.wl-btn { display: inline-block; padding: 0.4rem 1rem; background: var(--wl-orange); color: white; border: none; border-radius: 20px; font-size: 0.85rem; font-weight: 600; cursor: pointer; text-decoration: none; font-family: -apple-system, sans-serif; }
.wl-btn:hover { background: var(--wl-orange-dark); }
.wl-btn.outline { background: none; color: var(--wl-text2); border: 1px solid var(--wl-border); }
.wl-btn.lg { padding: 0.65rem 2rem; font-size: 1rem; }
.wl-btn.sm { padding: 0.25rem 0.7rem; font-size: 0.8rem; }
.wl-btn.block { width: 100%; text-align: center; }
.wl-hero { text-align: center; padding: 6rem 2rem; max-width: 600px; margin: 0 auto; }
.wl-hero h1 { font-size: 2.2rem; margin-bottom: 1rem; line-height: 1.2; }
.wl-hero p { color: var(--wl-text2); margin-bottom: 2rem; font-family: -apple-system, sans-serif; }
.wl-login-bg { background: var(--wl-bg); display: flex; }
.wl-login-center { display: flex; justify-content: center; align-items: center; width: 100%; min-height: 100vh; padding: 2rem; }
.wl-login-card { width: 100%; max-width: 380px; background: var(--wl-white); border: 1px solid var(--wl-border); border-radius: 12px; padding: 2.5rem; text-align: center; }
.wl-login-card h1 { font-size: 1.3rem; color: var(--wl-orange); margin-bottom: 0.3rem; }
.wl-login-card > p { color: var(--wl-text2); font-size: 0.9rem; margin-bottom: 1.5rem; font-family: -apple-system, sans-serif; }
.wl-form { display: flex; flex-direction: column; gap: 0.6rem; }
.wl-form input { padding: 0.55rem 0.8rem; border: 1px solid var(--wl-border); border-radius: 8px; font-size: 0.9rem; font-family: -apple-system, sans-serif; }
.wl-form input:focus { outline: none; border-color: var(--wl-orange); }
.wl-alert { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; padding: 0.5rem; border-radius: 8px; font-size: 0.85rem; margin-bottom: 0.5rem; font-family: -apple-system, sans-serif; }
.wl-demo { margin-top: 1rem; font-size: 0.8rem; color: var(--wl-muted); font-family: -apple-system, sans-serif; }
.wl-demo code { background: var(--wl-bg); padding: 0.1rem 0.3rem; border-radius: 4px; }
.wl-content { max-width: 700px; margin: 0 auto; padding: 2rem; }
.wl-content h1 { font-size: 1.5rem; margin-bottom: 1rem; }
.wl-posts { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.wl-post { background: var(--wl-white); border: 1px solid var(--wl-border); border-radius: 10px; padding: 1.5rem; }
.wl-post h2 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.wl-post p { font-size: 0.9rem; color: var(--wl-text2); font-family: -apple-system, sans-serif; }
.wl-author { font-size: 0.8rem; color: var(--wl-muted); font-family: -apple-system, sans-serif; }
.wl-info { background: #fefce8; border: 1px solid #fef08a; border-radius: 8px; padding: 1rem; font-size: 0.9rem; color: #854d0e; font-family: -apple-system, sans-serif; }
.wl-info code { background: rgba(0,0,0,0.05); padding: 0.1rem 0.3rem; border-radius: 3px; }
.wl-search { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.wl-search input { flex: 1; padding: 0.55rem 0.8rem; border: 1px solid var(--wl-border); border-radius: 8px; font-size: 0.9rem; font-family: -apple-system, sans-serif; }
.wl-flag { background: #f0fdf4; border: 2px solid var(--wl-green); border-radius: 8px; padding: 1rem; font-family: monospace; font-size: 1.1rem; color: #166534; text-align: center; }
.wl-error { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; text-align: center; font-family: -apple-system, sans-serif; }
.wl-error h1 { font-size: 5rem; color: var(--wl-orange); font-family: Georgia, serif; }
.wl-error p { color: var(--wl-text2); margin-bottom: 0.5rem; }
.wl-error code { background: var(--wl-white); padding: 0.1rem 0.4rem; border-radius: 3px; }
.wl-error .wl-btn { margin-top: 1rem; }
.wl-footer { text-align: center; padding: 2rem; color: var(--wl-muted); font-size: 0.8rem; font-family: -apple-system, sans-serif; }
