@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Roboto', sans-serif; -webkit-tap-highlight-color: transparent; }
body { background: #000; display: flex; justify-content: center; }

.mobile-viewport { 
    width: 100%; 
    max-width: 480px; 
    background: #f1f3f6; 
    min-height: 100vh; 
    position: relative; 
    overflow-x: hidden; 
    margin: 0 auto; 
    padding-bottom: 70px;
}

/* Header Styling */
.acc-header { background: #2874f0; color: #fff; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.acc-header-left { display: flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 500; }
.acc-header-left i { font-size: 18px; cursor: pointer; }
.acc-header-right { display: flex; gap: 18px; font-size: 18px; }
.acc-header-right i { cursor: pointer; }

.acc-main { padding: 10px; }

/* Top 4 Buttons Grid */
.top-buttons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.acc-btn-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 4px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: #212121; cursor: pointer; box-shadow: 0 1px 2px rgba(0,0,0,0.02); }
.acc-btn-card i { font-size: 20px; color: #2874f0; }

/* Email Banner */
.email-banner { background: #fff; border: 1px solid #e0e0e0; border-radius: 4px; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.eb-left { display: flex; align-items: center; gap: 12px; }
.eb-title { font-size: 14px; font-weight: 500; color: #212121; display: flex; align-items: center; gap: 6px; }
.dot { width: 6px; height: 6px; background: #ff3f6c; border-radius: 50%; display: inline-block; }
.eb-sub { font-size: 11px; color: #878787; margin-top: 2px; }
.eb-btn { background: #2874f0; color: #fff; border: none; padding: 6px 16px; font-size: 12px; font-weight: bold; border-radius: 2px; cursor: pointer; }

/* Section Title */
.acc-section-title { font-size: 15px; font-weight: 700; color: #212121; margin: 14px 4px 8px 4px; }

/* List Box Style */
.acc-list-box { background: #fff; border: 1px solid #e0e0e0; border-radius: 4px; overflow: hidden; }
.acc-list-item { display: flex; align-items: center; padding: 14px 16px; border-bottom: 1px solid #f0f0f0; cursor: pointer; background: #fff; }
.acc-list-item:last-child { border-bottom: none; }
.li-icon { width: 24px; text-align: center; font-size: 16px; color: #ff9f00; margin-right: 14px; }
.li-icon.text-blue { color: #2874f0; }
.li-content { flex: 1; }
.li-main { font-size: 14px; color: #212121; font-weight: 400; }
.li-sub { font-size: 11px; color: #878787; margin-top: 2px; }
.li-arrow { font-size: 11px; color: #c2c2c2; }

/* Bottom Navigation Bar */
.bottom-nav { position: fixed; bottom: 0; left: 0; width: 100%; max-width: 480px; height: 58px; display: flex; background: #ffffff; box-shadow: 0 -1px 8px rgba(0,0,0,0.12); z-index: 1000; margin: 0 auto; right: 0; }
.nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; text-decoration: none; color: #878787; font-size: 11px; position: relative; }
.nav-item i { font-size: 19px; }
.nav-item.active { color: #2874f0; }
.nav-badge { position: absolute; top: 2px; right: 20%; background: #ff4d4d; color: #fff; font-size: 9px; font-weight: 700; line-height: 1; padding: 2px 4px; border-radius: 8px; min-width: 8px; text-align: center; }
