@import "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap";
:root{--bg-primary:#f5f0e8;--bg-secondary:#fff;--bg-card:#fffdf7;--accent:#c0754a;--accent-hover:#a8603a;--accent-light:#c0754a1a;--text-primary:#2c2418;--text-secondary:#8a7e6e;--border:#e2dace;--border-light:#ece7dd;--shadow-sm:0 1px 3px #2c24180f;--shadow-md:0 4px 12px #2c241814;--shadow-lg:0 8px 30px #2c24181a}*{box-sizing:border-box;margin:0;padding:0}body{background:var(--bg-primary);color:var(--text-primary);min-height:100vh;font-family:Outfit,sans-serif;overflow-x:hidden}body.modal-open{width:100%;height:100%;position:fixed;overflow:hidden}body:before{content:"";pointer-events:none;z-index:0;background:repeating-linear-gradient(0deg,#0000,#0000 28px,#00000004 28px 29px);width:100%;height:100%;position:fixed;top:0;left:0}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-track{background:var(--bg-primary)}::-webkit-scrollbar-thumb{background:var(--border);border-radius:4px}::-webkit-scrollbar-thumb:hover{background:var(--text-secondary)}.header{z-index:100;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border-bottom:1px solid var(--border);background:#f5f0e8e6;justify-content:space-between;align-items:center;gap:1rem;padding:1rem 2rem;display:flex;position:sticky;top:0}.logo{align-items:center;gap:.75rem;min-width:0;display:flex}.logo-icon{background:var(--accent);border-radius:10px;flex-shrink:0;justify-content:center;align-items:center;width:42px;height:42px;font-size:1.3rem;display:flex}.logo-text{color:var(--text-primary);letter-spacing:-.02em;white-space:nowrap;text-overflow:ellipsis;font-size:1.3rem;font-weight:700;overflow:hidden}.header-stats{align-items:center;gap:1.5rem;display:flex}.stat-badge{background:var(--bg-secondary);border:1px solid var(--border);color:var(--text-secondary);border-radius:999px;align-items:center;gap:.5rem;padding:.5rem 1rem;font-size:.875rem;display:flex}.stat-badge span{color:var(--text-primary);font-weight:600}.cta-banner{background:var(--bg-secondary);border:2px dashed var(--accent);cursor:pointer;text-align:left;border-radius:16px;align-items:center;gap:1rem;width:100%;margin-bottom:2rem;padding:1.25rem 1.5rem;font-family:Outfit,sans-serif;transition:all .3s;display:flex}.cta-banner:hover{background:var(--accent-light);box-shadow:var(--shadow-md);border-style:solid;transform:translateY(-2px)}.cta-banner:active{transform:translateY(0)}.cta-icon{flex-shrink:0;font-size:2.2rem}.cta-text{flex-direction:column;flex:1;gap:.15rem;display:flex}.cta-text strong{color:var(--text-primary);font-size:1.1rem;font-weight:700}.cta-text small{color:var(--text-secondary);font-size:.85rem}.cta-arrow{color:var(--accent);flex-shrink:0;font-size:1.5rem;transition:transform .3s}.cta-banner:hover .cta-arrow{transform:translate(4px)}.fab{background:var(--accent);color:#fff;cursor:pointer;height:52px;box-shadow:var(--shadow-lg);z-index:100;border:none;border-radius:999px;justify-content:center;align-items:center;gap:.5rem;padding:0 1.25rem;font-family:Outfit,sans-serif;font-size:1rem;font-weight:600;transition:all .3s cubic-bezier(.4,0,.2,1);display:flex;position:fixed;bottom:2rem;right:2rem}.fab-label{white-space:nowrap}.fab:hover{background:var(--accent-hover);transform:translateY(-2px);box-shadow:0 10px 35px #2c24182e}.fab:active{transform:translateY(0)}.modal-overlay{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:200;background:#2c241866;justify-content:center;align-items:center;animation:.25s fadeIn;display:flex;position:fixed;inset:0}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.modal{background:var(--bg-secondary);border:1px solid var(--border);width:90%;max-width:480px;box-shadow:var(--shadow-lg);border-radius:20px;padding:2.5rem;animation:.35s cubic-bezier(.4,0,.2,1) modalSlideUp}@keyframes modalSlideUp{0%{opacity:0;transform:translateY(40px)scale(.95)}to{opacity:1;transform:translateY(0)scale(1)}}.modal-title{color:var(--text-primary);margin-bottom:.5rem;font-size:1.5rem;font-weight:700}.modal-subtitle{color:var(--text-secondary);margin-bottom:2rem;font-size:.9rem}.form-group{margin-bottom:1.25rem}.form-label{text-transform:uppercase;letter-spacing:.08em;color:var(--text-secondary);margin-bottom:.5rem;font-size:.8rem;font-weight:600;display:block}.form-input{background:var(--bg-card);border:1px solid var(--border);width:100%;color:var(--text-primary);border-radius:10px;outline:none;padding:.85rem 1rem;font-family:Outfit,sans-serif;font-size:1rem;transition:all .2s}.form-input:focus{border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-light)}.form-textarea{resize:vertical;min-height:100px;max-height:200px}.color-picker{gap:.75rem;margin-top:.5rem;display:flex}.color-swatch{cursor:pointer;border:3px solid #0000;border-radius:50%;width:36px;height:36px;transition:all .2s;position:relative}.color-swatch:hover{transform:scale(1.15)}.color-swatch.selected{border-color:var(--text-primary);box-shadow:var(--shadow-sm)}.color-swatch.selected:after{content:"✓";color:#fff;text-shadow:0 1px 2px #0000004d;justify-content:center;align-items:center;font-size:.85rem;font-weight:700;display:flex;position:absolute;inset:0}.modal-actions{gap:.75rem;margin-top:2rem;display:flex}.btn{cursor:pointer;border:none;border-radius:10px;flex:1;padding:.85rem 1.5rem;font-family:Outfit,sans-serif;font-size:1rem;font-weight:600;transition:all .2s}.btn-primary{background:var(--accent);color:#fff}.btn-primary:hover{background:var(--accent-hover);box-shadow:var(--shadow-md);transform:translateY(-1px)}.btn-primary:disabled{opacity:.5;cursor:not-allowed;transform:none}.btn-secondary{background:var(--bg-card);color:var(--text-secondary);border:1px solid var(--border)}.btn-secondary:hover{background:var(--border-light);color:var(--text-primary)}.board{z-index:1;max-width:1400px;margin:0 auto;padding:2rem;position:relative}.sort-bar{flex-wrap:wrap;justify-content:center;align-items:center;gap:.75rem;margin-bottom:2rem;display:flex}.sort-btn{border:1px solid var(--border);background:var(--bg-secondary);color:var(--text-secondary);cursor:pointer;border-radius:999px;padding:.55rem 1.25rem;font-family:Outfit,sans-serif;font-size:.85rem;font-weight:500;transition:all .2s}.sort-btn:hover{border-color:var(--accent);color:var(--text-primary)}.sort-btn.active{background:var(--accent);border-color:var(--accent);color:#fff}.posts-grid{grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5rem;display:grid}.post-it{cursor:default;border-radius:3px;flex-direction:column;min-height:200px;padding:1.75rem 1.5rem 1.25rem;transition:all .3s cubic-bezier(.4,0,.2,1);animation:.5s cubic-bezier(.4,0,.2,1) both postAppear;display:flex;position:relative;overflow:hidden;box-shadow:2px 3px 8px #00000014,0 1px 2px #0000000f}@keyframes postAppear{0%{opacity:0;transform:translateY(20px)scale(.95)}to{opacity:1;transform:translateY(0)scale(1)}}.post-it:hover{transform:translateY(-4px);box-shadow:4px 8px 20px #0000001a,0 2px 4px #0000000f}.post-it:before{content:"";border-top:0 solid #0000;border-bottom:24px solid #0000;border-left:0 solid #0000;border-right:24px solid #0000000f;width:0;height:0;position:absolute;top:0;right:0}.post-it.color-sunset{color:#4a1515;background:#f2a7a7}.post-it.color-ocean{color:#0e2d4d;background:#a3cff2}.post-it.color-forest{color:#123d1a;background:#9edba8}.post-it.color-lavender{color:#2a1842;background:#c9b3e0}.post-it.color-gold{color:#3d3010;background:#f0d87a}.post-it.color-midnight{color:#1e1c3a;background:#b3b0d9}.post-author{opacity:.5;text-transform:uppercase;letter-spacing:.06em;margin-bottom:.5rem;font-family:Outfit,sans-serif;font-size:.8rem;font-weight:400}.post-message{opacity:1;word-break:break-word;flex:1;max-height:180px;font-family:Outfit,sans-serif;font-size:1.3rem;font-weight:700;line-height:1.4;overflow-y:auto}.post-footer{border-top:1px solid #00000014;justify-content:space-between;align-items:center;margin-top:1rem;padding-top:.75rem;display:flex}.post-time{opacity:.5;font-size:.75rem}.like-btn{cursor:pointer;color:inherit;background:#fff9;border:1px solid #0000001a;border-radius:999px;align-items:center;gap:.4rem;padding:.4rem .85rem;font-family:Outfit,sans-serif;font-size:.9rem;font-weight:600;transition:all .2s cubic-bezier(.4,0,.2,1);display:flex}.like-btn:hover{background:#ffffffe6;transform:scale(1.05)}.like-btn.liked:hover{background:#fde8e8}.like-btn.liked{color:#c0392b;cursor:pointer;background:#fff;border-color:#c0392b33}.like-btn .heart{align-items:center;transition:transform .3s cubic-bezier(.4,0,.2,1);display:inline-flex}.like-btn:hover .heart{transform:scale(1.3)}.like-btn.liked .heart{animation:.5s cubic-bezier(.4,0,.2,1) heartBounce}@keyframes heartBounce{0%{transform:scale(1)}30%{transform:scale(1.5)}60%{transform:scale(.9)}to{transform:scale(1)}}.empty-state{text-align:center;padding:6rem 2rem;animation:.5s fadeIn}.empty-icon{margin-bottom:1.5rem;font-size:4rem;animation:3s ease-in-out infinite float}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-8px)}}.empty-title{color:var(--text-primary);margin-bottom:.5rem;font-size:1.5rem;font-weight:600}.empty-subtitle{color:var(--text-secondary);font-size:1rem}.loading-container{justify-content:center;align-items:center;padding:6rem 2rem;display:flex}.loading-spinner{border:3px solid var(--border);border-top-color:var(--accent);border-radius:50%;width:48px;height:48px;animation:.8s linear infinite spin}@keyframes spin{to{transform:rotate(360deg)}}.toast{background:var(--bg-secondary);border:1px solid var(--border);color:var(--text-primary);z-index:300;box-shadow:var(--shadow-md);border-radius:10px;padding:.85rem 1.5rem;font-size:.9rem;animation:.35s cubic-bezier(.4,0,.2,1) toastIn,.35s cubic-bezier(.4,0,.2,1) 2.65s forwards toastOut;position:fixed;bottom:7rem;right:2rem}@keyframes toastIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes toastOut{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(20px)}}@media (max-width:900px){.posts-grid{grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1.25rem}}@media (max-width:640px){.header{background:#f5f0e8eb;padding:.75rem 1rem}.logo-icon{border-radius:8px;width:36px;height:36px;font-size:1.1rem}.logo-text{font-size:1.15rem}.header-stats{display:none}.board{padding:1rem 1rem 6rem}.sort-bar{gap:.5rem;margin-bottom:1.25rem}.sort-btn{padding:.5rem 1rem;font-size:.8rem}.posts-grid{grid-template-columns:1fr;gap:1rem}.post-it{min-height:160px;padding:1.5rem 1.25rem 1rem}.post-message{font-size:1.15rem}.post-author{font-size:.75rem}.like-btn{-webkit-tap-highlight-color:transparent;padding:.5rem 1rem;font-size:.85rem}.modal-overlay{justify-content:center;align-items:center;padding:1rem}.modal{-webkit-overflow-scrolling:touch;border-radius:20px;width:calc(100% - 2rem);max-width:100%;max-height:calc(100vh - 2rem);padding:1.5rem;animation:.35s cubic-bezier(.4,0,.2,1) modalSlideUp;overflow-y:auto}.modal:before{display:none}.modal-title{font-size:1.3rem}.modal-subtitle{margin-bottom:1.25rem;font-size:.85rem}.form-group{margin-bottom:1rem}.form-label{margin-bottom:.4rem;font-size:.85rem}.form-input{border-radius:12px;padding:.85rem 1rem;font-size:16px}.form-textarea{min-height:70px;max-height:120px}.color-picker{justify-content:flex-start;gap:.6rem}.color-swatch{width:40px;height:40px}.modal-actions{margin-top:1.25rem}.btn{border-radius:12px;padding:.9rem 1.25rem;font-size:1rem}.cta-banner{border-radius:12px;margin-bottom:1.25rem;padding:1rem 1.25rem}.cta-icon{font-size:1.8rem}.cta-text strong{font-size:1rem}.cta-text small{font-size:.8rem}.fab{bottom:calc(1.5rem + env(safe-area-inset-bottom,0px));-webkit-tap-highlight-color:transparent;height:48px;padding:0 1rem;font-size:.9rem;right:1.5rem}.empty-state{padding:4rem 1.5rem}.empty-icon{font-size:3rem}.empty-title{font-size:1.25rem}.toast{text-align:center;bottom:6rem;left:1rem;right:1rem}}
