@import "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap";:root{--primary:#10b981;--primary-dark:#059669;--secondary:#064e3b;--accent:#f59e0b;--background:#f9fafb;--card-bg:#fff;--text:#374151;--text-heading:#111827;--text-muted:#6b7280;--border:#e5e7eb;--shadow-sm:0 1px 2px 0 #0000000d;--shadow-md:0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;--shadow-lg:0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;--transition:all .3s ease;background-color:var(--background);color:var(--text);font-family:Inter,system-ui,-apple-system,sans-serif;font-weight:400;line-height:1.5}*{box-sizing:border-box;margin:0;padding:0}html,body{width:100%;height:100dvh;margin:0;padding:0;position:fixed;overflow:hidden}#root{width:100%;height:100dvh}.app{flex-direction:column;width:100vw;height:100dvh;margin:0;padding:0;display:flex;overflow:hidden}.blog-iframe{-webkit-overflow-scrolling:touch;border:none;flex:1;width:100%;height:100dvh;display:block}.container{max-width:1200px;margin:0 auto;padding:0 2rem}header{background:var(--card-bg);border-bottom:1px solid var(--border);z-index:100;box-shadow:var(--shadow-sm);padding:1rem 0;position:sticky;top:0}.nav-container{justify-content:space-between;align-items:center;display:flex}.logo{color:var(--primary);align-items:center;gap:.5rem;font-size:1.5rem;font-weight:800;text-decoration:none;display:flex}.logo-dot{background-color:var(--accent);border-radius:50%;width:8px;height:8px}nav ul{gap:2rem;list-style:none;display:flex}nav a{color:var(--text-muted);transition:var(--transition);font-weight:500;text-decoration:none}nav a:hover,nav a.active{color:var(--primary)}.hero{text-align:center;border-bottom:1px solid var(--border);background:linear-gradient(135deg,#ecfdf5 0%,#d1fae5 100%);padding:5rem 0}.hero h1{color:var(--secondary);margin-bottom:1.5rem;font-size:3.5rem;font-weight:900;line-height:1.1}.hero p{color:var(--text-muted);max-width:600px;margin:0 auto 2.5rem;font-size:1.25rem}.section{padding:4rem 0}.section-header{justify-content:space-between;align-items:flex-end;margin-bottom:3rem;display:flex}.section-title h2{color:var(--text-heading);font-size:2rem;font-weight:800}.section-title p{color:var(--text-muted);margin-top:.5rem}.blog-grid{grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:2rem;display:grid}.blog-card{background:var(--card-bg);border:1px solid var(--border);transition:var(--transition);border-radius:12px;flex-direction:column;display:flex;overflow:hidden}.blog-card:hover{box-shadow:var(--shadow-lg);border-color:var(--primary);transform:translateY(-4px)}.blog-image{object-fit:cover;background-color:#f3f4f6;width:100%;height:200px}.blog-content{flex-direction:column;flex-grow:1;padding:1.5rem;display:flex}.blog-tag{color:var(--primary-dark);background:#ecfdf5;border-radius:9999px;margin-bottom:1rem;padding:.25rem .75rem;font-size:.75rem;font-weight:600;display:inline-block}.blog-title{color:var(--text-heading);margin-bottom:.75rem;font-size:1.25rem;font-weight:700;line-height:1.4}.blog-excerpt{color:var(--text-muted);-webkit-line-clamp:3;-webkit-box-orient:vertical;margin-bottom:1.5rem;font-size:.95rem;line-height:1.6;display:-webkit-box;overflow:hidden}.blog-footer{border-top:1px solid var(--border);justify-content:space-between;align-items:center;margin-top:auto;padding-top:1rem;display:flex}.author{align-items:center;gap:.75rem;display:flex}.author-img{background:#e5e7eb;border-radius:50%;flex-shrink:0;width:32px;height:32px;overflow:hidden}.author-img img{object-fit:cover;width:100%;height:100%}.author-placeholder{background:#e5e7eb;width:100%;height:100%}.author-info span{display:block}.author-name{color:var(--text-heading);font-size:.875rem;font-weight:600}.post-meta{color:var(--text-muted);align-items:center;gap:.5rem;font-size:.75rem;display:flex}.meta-separator{color:#d1d5db}.post-views{font-weight:500}.read-more{color:var(--primary);align-items:center;gap:.25rem;font-size:.875rem;font-weight:600;text-decoration:none;display:flex}.read-more:hover{color:var(--primary-dark)}footer{background:var(--secondary);color:#fff;margin-top:4rem;padding:4rem 0 2rem}.footer-grid{grid-template-columns:2fr 1fr 1fr 1fr;gap:4rem;margin-bottom:3rem;display:grid}.footer-logo{color:#fff;margin-bottom:1.5rem}.footer-desc{color:#a7f3d0;line-height:1.6}.footer-heading{text-transform:uppercase;letter-spacing:.05em;margin-bottom:1.5rem;font-size:.875rem;font-weight:700}.footer-links{list-style:none}.footer-links li{margin-bottom:.75rem}.footer-links a{color:#a7f3d0;transition:var(--transition);text-decoration:none}.footer-links a:hover{color:var(--primary);padding-left:4px}.blog-detail-wrapper{background:#fff;width:100%;min-height:100vh;position:relative}.blog-detail-content{width:100%;max-width:100%;margin:0;padding:0 0 80px}.detail-content{width:100%;padding:0 16px}.side-nav-btn{width:50px;height:50px;color:var(--primary);cursor:pointer;z-index:100;background:#fff;border:1px solid #e5e7eb;border-radius:50%;justify-content:center;align-items:center;font-size:2rem;transition:all .2s;display:flex;position:fixed;top:50%;transform:translateY(-50%);box-shadow:0 4px 6px -1px #0000001a}.side-nav-btn:hover{background:var(--gray-50);box-shadow:0 10px 15px -3px #0000001a}.side-nav-btn.prev{left:2rem}.side-nav-btn.next{right:2rem}@media (width<=1024px){.side-nav-btn{display:none}}.bottom-bar{z-index:10000;background-color:#000;justify-content:space-between;align-items:center;height:60px;padding:0 16px;display:flex;position:fixed;bottom:0;left:0;right:0;overflow:visible;box-shadow:0 -2px 10px #0000001a}.bottom-bar-group{justify-content:space-evenly;align-items:center;gap:0;width:40%;display:flex}.bottom-bar-btn{cursor:pointer;background:0 0;border:none;border-radius:50%;justify-content:center;align-items:center;width:60px;min-width:60px;height:60px;padding:0;transition:opacity .2s;display:flex}.bottom-bar-btn:hover{opacity:.8}.bottom-bar-btn:disabled{opacity:.5;cursor:not-allowed}.center-btn{position:absolute;left:50%;transform:translate(-50%)}.bar-icon{object-fit:contain;width:50px;height:50px}.new-idea-btn{width:140px;min-width:140px;height:140px;transform:translate(-15px,-35px)}.bar-icon-large{object-fit:contain;width:140px;height:135px;transition:opacity .2s}.blog-page{display:none}.blog-page.active{display:block}.footer-bottom{text-align:center;color:#a7f3d0;border-top:1px solid #ffffff1a;padding-top:2rem;font-size:.875rem}@keyframes fadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.blog-card{animation:.6s forwards fadeIn}.blog-card:first-child{animation-delay:.1s}.blog-card:nth-child(2){animation-delay:.2s}.blog-card:nth-child(3){animation-delay:.3s}.blog-card:nth-child(4){animation-delay:.4s}.blog-card:nth-child(5){animation-delay:.5s}.blog-card:nth-child(6){animation-delay:.6s}.loading-container{justify-content:center;align-items:center;min-height:400px;display:flex}.spinner{border:4px solid #10b9811a;border-left-color:var(--primary);border-radius:50%;width:40px;height:40px;animation:1s linear infinite spin}@keyframes spin{to{transform:rotate(360deg)}}.error-message{color:#b91c1c;text-align:center;background:#fee2e2;border-radius:8px;margin:2rem 0;padding:1.5rem}.blog-detail{animation:.5s forwards fadeIn}.back-link{color:var(--primary);transition:var(--transition);margin-bottom:2rem;font-weight:600;text-decoration:none;display:inline-block}.back-link:hover{transform:translate(-5px)}.detail-header{border-bottom:1px solid var(--border);margin-bottom:3rem;padding-bottom:2rem}.detail-title{color:var(--text-heading);margin:1rem 0 1.5rem;font-size:3rem;font-weight:900;line-height:1.2}.author-meta{align-items:center;gap:1rem;display:flex}.detail-content{max-width:800px;color:var(--text);margin:0 auto;font-size:1.125rem;line-height:1.8}.blog-page{margin-bottom:4rem}.element{margin-bottom:2rem}.content-image,.content-video{width:100%;box-shadow:var(--shadow-md);border-radius:12px;margin:1rem 0}.offer-element{background:#f0fdf4;border:1px solid #bbf7d0;border-radius:16px;margin:3rem 0;padding:2rem}.detail-footer{border-top:1px solid var(--border);text-align:center;margin-top:5rem;padding-top:3rem}.back-button{background:var(--primary);color:#fff;cursor:pointer;transition:var(--transition);border:none;border-radius:9999px;padding:1rem 2.5rem;font-size:1rem;font-weight:700}.back-button:hover{background:var(--primary-dark);box-shadow:var(--shadow-lg);transform:scale(1.05)}
