 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --teal: #2c7d75; --primary-color: #2c7d75; --teal-dark: #1b5e57; --teal-light: #e6f4f3; --amber: #ffa726; --ink: #1a1f1e; --muted: #5a6461; --border: #e0e8e7; --bg: #f7faf9; --white: #ffffff; --radius: 16px; --font-serif: 'Instrument Serif', Georgia, serif; --font-sans: 'DM Sans', sans-serif; --font-bangla: 'Noto Serif Bengali', 'Instrument Serif', Georgia, serif; --font-bangla-sans: 'Noto Serif Bengali', 'DM Sans', sans-serif; } @font-face { font-family: 'DM Sans fallback'; src: local('Arial'); ascent-override: 94%; descent-override: 24%; line-gap-override: 0%; size-adjust: 100%; } @font-face { font-family: 'Instrument Serif fallback'; src: local('Georgia'); ascent-override: 90%; descent-override: 22%; line-gap-override: 0%; size-adjust: 98%; } html { height: 100%; scroll-behavior: smooth; } body { font-family: var(--font-sans); background: var(--bg); display: flex; flex-direction: column; min-height: 100vh; color: var(--ink); line-height: 1.6; } .page-content { flex: 1 0 auto; } #app { font-family: var(--font-bangla-sans); } #app .section-heading, #app .card-name, #app .tools-title { font-family: var(--font-bangla); } .navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 64px; background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); } .brand img { height: 36px; display: block; } .nav-right { display: flex; align-items: center; gap: .75rem; } .app-launcher-btn { width: 38px; height: 38px; border: none; background: transparent; border-radius: 8px; cursor: pointer; display: grid; place-items: center; color: var(--muted); transition: background .2s, color .2s; } .app-launcher-btn:hover { background: var(--teal-light); color: var(--teal); } .app-launcher-grid { display: none; position: fixed; top: 72px; right: 20px; z-index: 1001; background: #fff; border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0, 0, 0, .12); padding: 20px; width: 360px; max-height: 500px; overflow-y: auto; } .app-launcher-grid.active { display: block; animation: fadeSlide .2s ease; } @keyframes fadeSlide { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } } .launcher-header { font-size: 1rem; font-weight: 600; color: var(--teal); margin-bottom: 14px; } .launcher-search { position: relative; margin-bottom: 16px; } .launcher-search input { width: 100%; padding: 9px 12px 9px 36px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font-sans); font-size: .85rem; outline: none; transition: border-color .2s; } .launcher-search input:focus { border-color: var(--teal); } .launcher-search svg { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--muted); } .app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; } .app-item { display: flex; flex-direction: column; align-items: center; padding: 10px 4px; border-radius: 10px; text-decoration: none; color: var(--ink); border: 1px solid transparent; transition: all .2s; } .app-item:hover { background: var(--teal-light); border-color: var(--border); transform: translateY(-2px); } .app-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-light); display: grid; place-items: center; font-weight: 700; font-size: 1.1rem; color: var(--teal); margin-bottom: 6px; overflow: hidden; } .app-icon img { width: 100%; height: 100%; object-fit: cover; } .app-name { font-size: .72rem; font-weight: 600; text-align: center; } .app-cat { font-size: .65rem; color: var(--muted); margin-top: 2px; } .manage-link { display: block; text-align: center; margin-top: 16px; padding: 9px; background: var(--teal); color: #fff; border-radius: 8px; font-size: .85rem; font-weight: 600; text-decoration: none; transition: background .2s; } .manage-link:hover { background: var(--teal-dark); } .empty-msg { text-align: center; color: var(--muted); font-size: .85rem; padding: 20px 0; } .hero { min-height: 100vh; display: flex; align-items: center; padding: 80px 2rem 0; position: relative; overflow: hidden; } .hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 55% 55% at 70% 35%, #b2deda 0%, transparent 65%), radial-gradient(ellipse 40% 50% at 15% 80%, #fdefd8 0%, transparent 55%), var(--bg); } .hero-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding-bottom: 60px; } .hero-title { font-family: var(--font-serif); font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1.08; letter-spacing: -.025em; color: var(--ink); margin-bottom: 20px; opacity: 0; animation: fadeUp .5s .12s ease forwards; } .hero-title em { font-style: italic; color: var(--teal); } .hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 440px; line-height: 1.75; margin-bottom: 36px; opacity: 0; animation: fadeUp .5s .2s ease forwards; } .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 32px; opacity: 0; animation: fadeUp .5s .28s ease forwards; } .btn-play img { height: 52px; display: block; transition: transform .2s, filter .2s; } .btn-play img:hover { transform: translateY(-2px); filter: brightness(1.05); } .trust-item .material-symbols-outlined { font-size: 16px; color: var(--teal); } .hero-visual { display: flex; justify-content: center; align-items: center; opacity: 0; animation: fadeUp .6s .15s ease forwards; position: relative; } .screenshot-wrap { position: relative; width: 100%; max-width: 400px; } .screenshot-wrap img.screenshot { width: 100%; border-radius: 20px; display: block; box-shadow: 0 40px 80px rgba(0,0,0,.15), 0 8px 24px rgba(0,0,0,.08); } .screenshot-badge .material-symbols-outlined { color: var(--teal); font-size: 16px; } @keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } } @keyframes float  { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-7px); } } .feat-icon .material-symbols-outlined { color: var(--teal); font-size: 22px; } @media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 48px; } .hero-sub { margin-left: auto; margin-right: auto; } .hero-ctas { justify-content: center; } .hero-visual { order: -1; }} @media (max-width: 600px) {} footer { flex-shrink: 0; background: var(--primary-color); color: rgba(255, 255, 255, .7); padding: 48px 2rem 32px; } .footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: center; } .footer-links { display: flex; gap: 28px; flex-wrap: wrap; } .footer-links a { color: rgba(255, 255, 255, .65); text-decoration: none; font-size: .85rem; transition: color .2s; } .footer-links a:hover { color: var(--amber); } .footer-copy { font-size: .8rem; } .footer-bottom { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; } @media (max-width: 900px) { .p-card.half { grid-column: span 12; } .products-grid { grid-template-columns: 1fr; } .p-card.half .card-media { aspect-ratio: 16 / 9; } } }
