.App{width:100%;min-height:100vh;display:flex;flex-direction:column}.header{background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);color:#fff;padding:1rem 0;box-shadow:0 4px 20px #667eea26;position:sticky;top:0;z-index:100}.header-container{max-width:1200px;margin:0 auto;padding:0 2rem;display:flex;justify-content:space-between;align-items:center}.logo{display:flex;align-items:center;gap:.75rem;font-size:1.5rem;font-weight:700;cursor:pointer;transition:transform .3s ease}.logo:hover{transform:scale(1.05)}.logo-icon{font-size:1.8rem}.nav{display:flex;gap:2rem;align-items:center}.nav-link{color:#fff;text-decoration:none;font-weight:500;transition:opacity .3s ease;position:relative}.nav-link:hover{opacity:.8}.nav-link:after{content:"";position:absolute;bottom:-4px;left:0;width:0;height:2px;background:white;transition:width .3s ease}.nav-link:hover:after{width:100%}.back-btn{background:rgba(255,255,255,.2);color:#fff;border:1px solid rgba(255,255,255,.3);padding:.5rem 1rem;border-radius:6px;cursor:pointer;font-weight:500;transition:all .3s ease}.back-btn:hover{background:rgba(255,255,255,.3);transform:translate(-4px)}@media (max-width: 768px){.header-container{flex-direction:column;gap:1rem}.nav{gap:1rem;font-size:.9rem}}.hero{position:relative;min-height:600px;display:flex;align-items:center;justify-content:center;overflow:hidden;background:linear-gradient(135deg,#667eea 0%,#764ba2 50%,#f093fb 100%)}.hero-background{position:absolute;top:0;right:0;bottom:0;left:0;overflow:hidden}.gradient-orb{position:absolute;border-radius:50%;opacity:.3;filter:blur(80px);animation:float 20s ease-in-out infinite}.orb-1{width:400px;height:400px;background:radial-gradient(circle,rgba(255,255,255,.5),transparent);top:-100px;right:-100px;animation-delay:0s}.orb-2{width:300px;height:300px;background:radial-gradient(circle,rgba(240,147,251,.3),transparent);bottom:-50px;left:10%;animation-delay:5s}.orb-3{width:350px;height:350px;background:radial-gradient(circle,rgba(102,126,234,.3),transparent);top:50%;left:-100px;animation-delay:10s}@keyframes float{0%,to{transform:translate(0)}50%{transform:translate(30px,-30px)}}.hero-content{position:relative;z-index:10;text-align:center;color:#fff;max-width:700px;padding:0 2rem;animation:slideUp .8s ease-out}@keyframes slideUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}.hero-title{font-size:3.5rem;font-weight:800;margin-bottom:1rem;line-height:1.2}.hero-subtitle{font-size:1.25rem;margin-bottom:2rem;opacity:.95;line-height:1.6}.hero-btn{background:white;color:#667eea;border:none;padding:1rem 2.5rem;border-radius:50px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .3s ease;box-shadow:0 10px 30px #0003}.hero-btn:hover{transform:translateY(-3px);box-shadow:0 15px 40px #0000004d}.hero-btn:active{transform:translateY(-1px)}@media (max-width: 768px){.hero{min-height:400px}.hero-title{font-size:2rem}.hero-subtitle{font-size:1rem}.gradient-orb{filter:blur(60px)}.orb-1{width:250px;height:250px}.orb-2,.orb-3{width:200px;height:200px}}.blog-card{background:white;border-radius:12px;overflow:hidden;box-shadow:0 4px 15px #00000014;transition:all .3s ease;cursor:pointer;display:flex;flex-direction:column;height:100%}.blog-card:hover{transform:translateY(-8px);box-shadow:0 12px 30px #00000026}.card-image-container{position:relative;width:100%;height:200px;overflow:hidden;background:linear-gradient(135deg,#667eea 0%,#764ba2 100%)}.card-image{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}.blog-card:hover .card-image{transform:scale(1.05)}.card-category{position:absolute;top:1rem;right:1rem;background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);color:#fff;padding:.4rem 1rem;border-radius:20px;font-size:.8rem;font-weight:600;text-transform:uppercase;letter-spacing:.5px}.card-content{padding:1.5rem;display:flex;flex-direction:column;flex-grow:1}.card-title{font-size:1.3rem;font-weight:700;color:#1a1a2e;margin-bottom:.75rem;line-height:1.4;transition:color .3s ease}.blog-card:hover .card-title{color:#667eea}.card-excerpt{color:#666;font-size:.95rem;line-height:1.6;margin-bottom:1rem;flex-grow:1}.card-meta{display:flex;justify-content:space-between;align-items:center;font-size:.85rem;color:#999;margin-bottom:1rem;padding-bottom:1rem;border-bottom:1px solid #f0f0f0}.meta-left{display:flex;align-items:center;gap:.5rem}.author{color:#667eea;font-weight:600}.separator{color:#ddd}.read-time{background:#f0f0f0;padding:.3rem .8rem;border-radius:20px;color:#667eea;font-weight:600}.card-footer{display:flex;justify-content:flex-start}.read-more-btn{background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);color:#fff;border:none;padding:.6rem 1.2rem;border-radius:6px;font-weight:600;cursor:pointer;transition:all .3s ease;font-size:.9rem}.read-more-btn:hover{transform:translate(4px);box-shadow:0 4px 12px #667eea4d}@media (max-width: 768px){.card-image-container{height:150px}.card-title{font-size:1.1rem}.card-content{padding:1rem}}.blog-grid-section{padding:5rem 2rem;background:linear-gradient(180deg,#f8f9ff 0%,#fff 100%)}.blog-grid-container{max-width:1200px;margin:0 auto}.section-header{text-align:center;margin-bottom:4rem}.section-header h2{font-size:2.5rem;color:#1a1a2e;margin-bottom:.5rem;font-weight:800}.section-header p{font-size:1.1rem;color:#666}.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:2rem;animation:fadeIn .8s ease-out}@keyframes fadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@media (max-width: 768px){.blog-grid-section{padding:3rem 1rem}.section-header h2{font-size:1.8rem}.blog-grid{grid-template-columns:1fr;gap:1.5rem}}.blog-post{background:white}.post-header{position:relative;background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);color:#fff;padding:3rem 2rem}.post-image-container{max-width:900px;margin:0 auto 2rem;border-radius:12px;overflow:hidden;height:400px}.post-image{width:100%;height:100%;object-fit:cover}.post-header-content{max-width:900px;margin:0 auto}.post-category{display:inline-block;background:rgba(255,255,255,.2);color:#fff;padding:.5rem 1.2rem;border-radius:20px;font-size:.85rem;font-weight:600;text-transform:uppercase;letter-spacing:.5px;margin-bottom:1rem}.post-title{font-size:2.8rem;font-weight:800;margin-bottom:1.5rem;line-height:1.2}.post-info{display:flex;justify-content:space-between;align-items:center;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,.2)}.author-info{display:flex;align-items:center;gap:1rem}.author-avatar{width:50px;height:50px;border-radius:50%;background:rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;font-size:1.5rem;font-weight:700}.author-details{display:flex;flex-direction:column}.author-name{font-weight:600;margin:0}.post-date{font-size:.9rem;opacity:.9;margin:0}.post-read-time{background:rgba(255,255,255,.2);padding:.5rem 1rem;border-radius:20px;font-size:.9rem;font-weight:600}.post-container{max-width:900px;margin:0 auto;padding:3rem 2rem;display:grid;grid-template-columns:1fr 300px;gap:3rem}.post-body{grid-column:1}.post-content{font-size:1.1rem;line-height:1.8;color:#333;margin-bottom:1.5rem;text-align:justify}.post-sidebar{grid-column:2;display:flex;flex-direction:column;gap:2rem}.sidebar-card{background:#f8f9ff;padding:1.5rem;border-radius:12px;border:1px solid #e8e8ff}.sidebar-card h3{font-size:1.1rem;color:#1a1a2e;margin:0 0 1rem;font-weight:700}.sidebar-card p{font-size:.95rem;color:#666;line-height:1.6;margin:0}.share-buttons{display:grid;grid-template-columns:repeat(4,1fr);gap:.5rem}.share-btn{background:white;border:2px solid #e8e8ff;padding:.75rem;border-radius:8px;cursor:pointer;font-weight:700;color:#667eea;transition:all .3s ease;font-size:1.2rem}.share-btn:hover{background:#667eea;color:#fff;border-color:#667eea;transform:translateY(-2px)}@media (max-width: 768px){.post-header{padding:2rem 1rem}.post-image-container{height:250px}.post-title{font-size:1.8rem}.post-info{flex-direction:column;align-items:flex-start;gap:1rem}.post-container{grid-template-columns:1fr;padding:2rem 1rem;gap:2rem}.post-sidebar{grid-column:1}.post-content{font-size:1rem}}.footer{background:linear-gradient(135deg,#1a1a2e 0%,#16213e 100%);color:#fff;padding:3rem 2rem 1rem;margin-top:5rem}.footer-container{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;margin-bottom:2rem}.footer-section h3{font-size:1.5rem;font-weight:700;margin-bottom:1rem}.footer-section h4{font-size:1.1rem;font-weight:700;margin-bottom:1rem}.footer-section p{font-size:.95rem;color:#aaa;line-height:1.6}.footer-section ul{list-style:none;padding:0;margin:0}.footer-section li{margin-bottom:.75rem}.footer-section a{color:#aaa;text-decoration:none;transition:color .3s ease;font-size:.95rem}.footer-section a:hover{color:#667eea}.social-links{display:flex;flex-direction:column;gap:.5rem}.social-link{display:inline-block;padding:.5rem 1rem;background:rgba(102,126,234,.1);border-radius:6px;transition:all .3s ease}.social-link:hover{background:rgba(102,126,234,.3);color:#667eea}.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:1.5rem;text-align:center;color:#999;font-size:.9rem}@media (max-width: 768px){.footer-container{grid-template-columns:1fr;gap:1.5rem}.footer{padding:2rem 1rem 1rem}}*{margin:0;padding:0;box-sizing:border-box}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:#f8f9ff;color:#1a1a2e}html{scroll-behavior:smooth}button{font-family:inherit}a{color:inherit;text-decoration:none}::-webkit-scrollbar{width:10px}::-webkit-scrollbar-track{background:#f1f1f1}::-webkit-scrollbar-thumb{background:#667eea;border-radius:5px}::-webkit-scrollbar-thumb:hover{background:#764ba2}
