/* SMM PANEL v1.0 - Professional Mobile-First Design */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --dark: #1f2937;
    --light: #f3f4f6;
    --white: #ffffff;
    --border: #e5e7eb;
    --text: #374151;
    --text-light: #6b7280;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--light);
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
}

/* Layout */
.sidebar {
    position: fixed;
    left: -250px;
    top: 0;
    width: 250px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    text-align: center;
}

.sidebar-header i {
    font-size: 32px;
    margin-bottom: 8px;
}

.sidebar-header h2 {
    font-size: 16px;
    font-weight: 600;
}

.sidebar-nav {
    padding: 10px 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
}

.sidebar-nav a i {
    width: 24px;
    margin-right: 12px;
    font-size: 16px;
}

.sidebar-nav a:hover {
    background: var(--light);
    color: var(--primary);
}

.sidebar-nav a.active {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--white);
    border-left: 3px solid var(--primary-dark);
}

.main-content {
    min-height: 100vh;
    padding-top: 60px;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 999;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.balance-display {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.balance-display:hover {
    transform: scale(1.05);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.user-menu i {
    font-size: 24px;
    color: var(--primary);
}

/* Dashboard Container */
.dashboard-container {
    padding: 20px 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.page-title i {
    color: var(--primary);
}

/* Balance Card */
.balance-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.balance-card:hover {
    transform: translateY(-3px);
}

.balance-info {
    display: flex;
    flex-direction: column;
}

.balance-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.balance-amount {
    font-size: 32px;
    font-weight: 700;
}

.balance-card .btn {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: 2px solid var(--white);
}

/* Slider */
.slider-container {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

.slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: var(--white);
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s;
}

.slider-dots .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
}

/* Referral Section */
.referral-section {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.referral-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--dark);
}

.referral-section h3 i {
    color: var(--warning);
}

.referral-code-box {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.referral-code-box input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
}

.referral-info {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
}

/* Recent Orders */
.recent-orders {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.recent-orders h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--dark);
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--light);
    border-radius: 8px;
}

.order-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.order-service {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}

.order-id {
    font-size: 12px;
    color: var(--text-light);
}

.order-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-processing {
    background: #dbeafe;
    color: #1e40af;
}

.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    text-decoration: none;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--light);
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--border);
}

.btn-success {
    background: var(--success);
    color: var(--white);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

.btn-block {
    width: 100%;
    display: flex;
}

/* Forms */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-group label i {
    color: var(--primary);
    margin-right: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: var(--text-light);
}

/* Service Info */
.service-info {
    background: var(--light);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.info-row:last-child {
    border-bottom: none;
}

.cost-display {
    background: linear-gradient(135deg, var(--success), #059669);
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid var(--border);
}

.modal-header h2 {
    font-size: 20px;
    color: var(--dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 20px;
}

.deposit-step {
    display: block;
}

.deposit-step.hidden {
    display: none;
}

.amount-input {
    position: relative;
    margin-bottom: 15px;
}

.amount-input .currency {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
}

.amount-input input {
    width: 100%;
    padding: 15px 15px 15px 40px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
}

.quick-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.quick-amounts button {
    padding: 12px;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-amounts button:hover {
    background: var(--primary);
    color: var(--white);
}

.ussd-code-box {
    text-align: center;
    margin-bottom: 20px;
}

.ussd-code {
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 15px 0;
    font-family: monospace;
}

.ussd-note {
    font-size: 12px;
    color: var(--text-light);
}

/* Auth Pages */
.auth-page {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 10px;
}

.auth-header h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.auth-header p {
    color: var(--text-light);
    font-size: 14px;
}

.auth-form {
    margin-bottom: 20px;
}

.auth-footer {
    text-align: center;
    font-size: 14px;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer p {
    margin: 10px 0;
}

/* Alerts */
.alert {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert i {
    font-size: 18px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid var(--success);
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid var(--danger);
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid var(--info);
}

/* Introduction Page */
.intro-page {
    background: var(--white);
}

.intro-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.intro-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 20px;
    margin-bottom: 30px;
}

.logo-container i {
    font-size: 64px;
    margin-bottom: 15px;
}

.logo-container h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 16px;
    opacity: 0.9;
}

.welcome-section {
    text-align: center;
    margin-bottom: 40px;
}

.welcome-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-light);
}

.video-section {
    margin-bottom: 40px;
}

.video-section h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.video-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-card iframe {
    width: 100%;
    border: none;
}

.video-card p {
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.rental-info {
    background: var(--light);
    padding: 30px 20px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.rental-info h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.rental-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.rental-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
}

.rental-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99,102,241,0.05), rgba(139,92,246,0.05));
}

.rental-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.rental-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}

.save-badge {
    background: var(--success);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin: 10px 0;
}

.contact-info {
    text-align: center;
}

.contact-number {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin: 10px 0;
}

.contact-name {
    color: var(--text-light);
    font-size: 14px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.intro-footer {
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid var(--border);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
}

/* Frozen Page */
.frozen-page {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.frozen-container {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.frozen-icon {
    font-size: 80px;
    color: #60a5fa;
    margin-bottom: 20px;
}

.frozen-container h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark);
}

.frozen-message {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.plan-card {
    background: var(--light);
    padding: 25px 20px;
    border-radius: 15px;
    position: relative;
}

.plan-card.featured {
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.1));
    border: 2px solid var(--primary);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: var(--white);
    padding: 4px 15px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.plan-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0 5px;
}

.savings {
    background: var(--warning);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    display: inline-block;
    margin: 10px 0;
}

.plan-card ul {
    list-style: none;
    margin: 15px 0;
    text-align: left;
}

.plan-card li {
    padding: 8px 0;
    font-size: 14px;
}

.plan-card li i {
    color: var(--success);
    margin-right: 8px;
}

.contact-section {
    margin: 30px 0;
}

.contact-section h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    margin: 20px 0;
    transition: transform 0.2s;
}

.contact-btn:hover {
    transform: scale(1.05);
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.method-btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.method-btn.whatsapp {
    background: #25d366;
    color: var(--white);
}

.method-btn.call {
    background: var(--primary);
    color: var(--white);
}

.method-btn:hover {
    transform: scale(1.05);
}

.support-text {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 15px;
}

.frozen-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--border);
}

.btn-back {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Admin Styles */
.admin-badge {
    background: linear-gradient(135deg, var(--danger), #dc2626);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

.admin-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.admin-card h2 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark);
}

.status-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--light);
    border-radius: 8px;
}

.badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: var(--success);
    color: var(--white);
}

.badge-danger {
    background: var(--danger);
    color: var(--white);
}

.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.inline-select {
    padding: 8px 12px;
    border: 2px solid var(--border);
    border-radius: 6px;
    margin-right: 10px;
}

.admin-stats {
    grid-template-columns: repeat(2, 1fr);
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inline-form {
    display: flex;
    gap: 10px;
}

.inline-form input {
    flex: 1;
    padding: 10px;
    border: 2px solid var(--border);
    border-radius: 8px;
}

.info-grid {
    display: grid;
    gap: 10px;
}

.info-grid div {
    padding: 10px;
    background: var(--light);
    border-radius: 6px;
    font-size: 14px;
}

/* Notification Bar */
.notification-bar {
    position: fixed;
    top: 70px;
    right: -400px;
    width: 350px;
    max-width: 90vw;
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 1500;
    transition: right 0.3s ease;
}

.notification-bar.show {
    right: 15px;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.no-data {
    text-align: center;
    padding: 30px;
    color: var(--text-light);
}

.no-data a {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive Design */
@media (min-width: 768px) {
    .sidebar {
        left: 0;
    }
    
    .main-content {
        margin-left: 250px;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .admin-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .topbar-right .user-menu span {
        display: none;
    }
    
    .balance-amount {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
