.fsg-header-login-btn {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff; padding: 10px 20px; border-radius: 30px;
    font-weight: 700; font-size: 14px; text-decoration: none;
}

.fsg-account-menu { position: relative; display: flex; align-items: center; gap: 10px; }
.fsg-credit-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(139,92,246,0.15); color: #c4b5fd;
    padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600;
}
.fsg-account-trigger {
    display: flex; align-items: center; gap: 4px;
    background: transparent; border: none; cursor: pointer; color: #a78bfa;
}
.fsg-avatar-icon {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(139,92,246,0.15); display: flex; align-items: center; justify-content: center;
}

.fsg-account-dropdown {
    position: absolute; top: calc(100% + 10px); right: 0;
    background: #16081e; border: 1px solid rgba(139,92,246,0.2);
    border-radius: 14px; min-width: 220px; padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: all 0.15s ease; z-index: 100;
}
.fsg-account-menu--open .fsg-account-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0); z-index: 99;
}
.fsg-dropdown-email {
    padding: 8px 18px 12px; color: #fff; font-weight: 600; font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 6px;
}
.fsg-dropdown-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 18px; color: #d8d0e0; text-decoration: none; font-size: 14px;
}
.fsg-dropdown-item:hover { background: rgba(139,92,246,0.1); color: #fff; }
.fsg-dropdown-logout { color: #f87171; }

/* ---- Account Page ---- */
.fsg-account-page { max-width: 700px; margin: 0 auto; padding: 30px 0; }
.fsg-account-heading { color: #fff; font-size: 28px; font-weight: 800; margin-bottom: 24px; }
.fsg-account-card {
    background: #16081e; border: 1px solid rgba(139,92,246,0.15);
    border-radius: 16px; padding: 24px; margin-bottom: 20px;
}
.fsg-info-row { display: flex; align-items: center; gap: 12px; color: #e4dcf0; padding: 10px 0; }
.fsg-info-note { color: #6f6878; font-size: 12px; margin: 0 0 10px 28px; }
.fsg-edit-phone-btn { background: none; border: none; color: #a78bfa; cursor: pointer; margin-left: auto; }

.fsg-plan-row { display: flex; justify-content: space-between; align-items: center; }
.fsg-plan-name { color: #fff; font-weight: 700; font-size: 16px; margin: 0; }
.fsg-plan-desc { color: #a89fb0; font-size: 13px; margin: 4px 0 0; }
.fsg-upgrade-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: #f59e0b; color: #1a0d24; font-weight: 700;
    padding: 10px 18px; border-radius: 10px; text-decoration: none; font-size: 13px;
}

.fsg-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fsg-stat-card {
    background: #16081e; border: 1px solid rgba(139,92,246,0.15);
    border-radius: 16px; padding: 20px; display: flex; align-items: center; gap: 14px;
}
.fsg-stat-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fsg-stat-icon--purple { background: rgba(139,92,246,0.15); color: #a78bfa; }
.fsg-stat-icon--gold { background: rgba(245,158,11,0.15); color: #f59e0b; }
.fsg-stat-number { color: #fff; font-size: 22px; font-weight: 800; margin: 0; }
.fsg-stat-label { color: #a89fb0; font-size: 13px; margin: 2px 0 0; }

@media (max-width: 600px) {
    .fsg-stats-row { grid-template-columns: 1fr; }
}