:root {
    --primary: #00A273;
    --primary-hover: #008f65;
    --bg-color: #F1F5F9;
    --card-bg: rgba(255, 255, 255, 0.85);
    --text-main: #0F172A;
    --text-sub: #64748B;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding: 20px;
}

/* Background Glowing Shapes */
.bg-shape { position: absolute; border-radius: 50%; filter: blur(80px); z-index: -1; opacity: 0.5; }
.shape-1 { width: 400px; height: 400px; background: #00A273; top: -100px; left: -100px; }
.shape-2 { width: 300px; height: 300px; background: #3498db; bottom: -50px; right: -50px; }

/* Main Glass Container */
.container {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 35px 25px;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 420px;
    text-align: center;
    animation: fadeUp 0.6s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.view-section { display: flex; flex-direction: column; align-items: center; }

/* Logo & Text */
.logo-box { width: 70px; height: 70px; background: rgba(0, 162, 115, 0.1); border-radius: 20px; display: flex; justify-content: center; align-items: center; margin: 0 auto 20px; }
.logo-box i { font-size: 36px; color: var(--primary); }
h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.subtitle { color: var(--text-sub); font-size: 14px; line-height: 1.5; margin-bottom: 25px; }

/* Buttons */
.btn { width: 100%; padding: 16px; border-radius: 16px; border: none; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 10px; transition: all 0.3s ease; text-decoration: none; }
.btn-google { background: #fff; color: var(--text-main); border: 1px solid #E2E8F0; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.btn-google img { width: 22px; }
.btn-google:hover { background: #F8FAFC; transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,0,0,0.05); }

.btn-download { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(0, 162, 115, 0.3); }
.btn-download:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 12px 25px rgba(0, 162, 115, 0.4); }

.btn-logout { background: transparent; border: none; color: #ff4757; font-size: 13px; font-weight: 600; margin-top: 25px; cursor: pointer; text-decoration: underline; }

.terms { font-size: 12px; color: #94A3B8; margin-top: 20px; }

/* Specific App Details View */
.user-chip { background: rgba(0, 162, 115, 0.1); color: var(--primary); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 25px; }
.user-chip i { font-size: 14px; }
.app-icon { width: 110px; height: 110px; border-radius: 24px; object-fit: cover; margin-bottom: 15px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.05); }
.meta-tags { display: flex; justify-content: center; gap: 10px; margin: 12px 0; }
.tag { background: #F1F5F9; color: var(--text-sub); padding: 6px 12px; border-radius: 10px; font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.tag i { font-size: 14px; }
.file-size { font-size: 13px; font-weight: 700; color: var(--text-main); margin-bottom: 20px; }

/* Error View */
.error-icon { font-size: 60px; color: #ff4757; margin-bottom: 15px; }

/* Loader */
.loader-view { display: flex; flex-direction: column; align-items: center; padding: 30px 0; }
.spinner { width: 40px; height: 40px; border: 4px solid rgba(0, 162, 115, 0.2); border-top-color: var(--primary); border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 15px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ================= NEW: STORE APP BANNER ================= */
.divider-text { margin: 25px 0 20px; color: #94A3B8; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

.store-banner { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); border-radius: 20px; padding: 20px; text-align: left; box-shadow: 0 15px 30px rgba(0,0,0,0.15); margin-top: 10px; }
.store-banner-content { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.store-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 14px; display: flex; justify-content: center; align-items: center; flex-shrink: 0; }
.store-icon i { color: #fff; font-size: 28px; }
.store-text h3 { color: #fff; font-size: 16px; margin: 0 0 4px 0; font-weight: 700; }
.store-text p { color: #cbd5e1; font-size: 12px; margin: 0; line-height: 1.4; }

.btn-store-download { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-store-download:hover { background: #fff; color: #0f172a; transform: translateY(-2px); }
.btn-store-download:hover i { color: #00A273; }

/* style.css এর শেষে এটি যোগ করো */
.whats-new-box {
    background: rgba(0, 162, 115, 0.05);
    padding: 15px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}
.whats-new-box h4 { color: var(--primary); font-size: 14px; margin-bottom: 5px; }
