/* ===================================
   Mobile App Styles - CryptoMLM Dark Theme
   =================================== */

* {
    margin: 0;
    padding: 0;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --dark-bg: #0f0f23;
    --dark-card: #1a1a3e;
    --dark-lighter: #252547;
    --text-white: #ffffff;
    --text-gray: #a0a0c0;
    --accent-purple: #667eea;
    --accent-pink: #f5576c;
    --success: #00d4aa;
    --danger: #ff4757;
    --border-dark: #2a2a4e;
}

.mobile-body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
}

.dark-theme {
    background: var(--dark-bg);
}


.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.splash-screen.active {
    opacity: 1;
    visibility: visible;
}

.splash-content {
    text-align: center;
    color: white;
}

.splash-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--primary-gradient);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
}

.splash-logo i {
    font-size: 50px;
    color: white;
}

.splash-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; margin: 0;
    padding: 0;
}

.splash-content p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.splash-loader {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar {
    height: 100%;
    background: var(--primary-gradient);
    animation: loading 2s ease-in-out;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===================================
   MOBILE APP CONTAINER
   =================================== */
.mobile-app {
    width: 100%;
    min-height: 100vh;
    background: var(--dark-bg);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mobile-app.visible {
    opacity: 1;
}

/* ===================================
   MOBILE HEADER
   =================================== */
.mobile-header {
    position: sticky;
    top: 0;
    background: var(--dark-card);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
    border-bottom: 1px solid var(--border-dark);
}

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

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
}

.mobile-logo i {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
}

.notification-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    padding: 8px;
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--danger);
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 10px;
    font-weight: 600;
}

/* ===================================
   SIDE DRAWER MENU
   =================================== */
.side-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: var(--dark-card);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.side-drawer.open {
    left: 0;
}

.drawer-header {
    background: var(--primary-gradient);
    padding: 30px 20px;
    color: white;
    position: relative;
}

.drawer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.drawer-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
}

.drawer-profile-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.drawer-profile-info p {
    font-size: 14px;
    opacity: 0.9;
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

.drawer-nav {
    padding: 20px 0;
}

.drawer-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.drawer-nav-item:hover,
.drawer-nav-item.active {
    background: var(--dark-lighter);
    border-left-color: var(--accent-purple);
    color: white;
}

.drawer-nav-item i {
    font-size: 20px;
    width: 25px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.drawer-nav-item span {
    font-size: 16px;
    font-weight: 500;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   MOBILE CONTENT
   =================================== */
.mobile-content {
    flex: 1;
    padding-bottom: 70px;
    overflow-y: auto;
}

.mobile-page {
    display: none;
    animation: fadeIn 0.3s ease;
}

.mobile-page.active {
    display: block;
}

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

/* ===================================
   HOME PAGE
   =================================== */
.mobile-hero {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--dark-card);
}

.dark-hero {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-lighter) 100%);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.8;
}

.mobile-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.mobile-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
    z-index: 2;
}

.mobile-hero-content h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.mobile-hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-mobile-primary {
    background: white;
    color: var(--accent-purple);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-mobile-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    margin: -30px 15px 0;
}

.dark-stats .stat-card {
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
}

.stat-card {
    background: white;
    text-align: center;
    padding: 20px 15px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stat-card i {
    font-size: 30px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 12px;
    color: var(--text-gray);
}

.quick-actions {
    padding: 30px 20px;
}

.quick-actions h2 {
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.action-btn {
    background: var(--dark-card);
    border: 2px solid var(--border-dark);
    border-radius: 15px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    border-color: var(--accent-purple);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.action-btn i {
    font-size: 28px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.action-btn span {
    font-size: 13px;
    color: white;
    font-weight: 500;
}

/* Crypto Prices */
.crypto-prices {
    padding: 30px 20px;
    background: var(--dark-card);
    margin: 20px 15px;
    border-radius: 15px;
}

.crypto-prices h2 {
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--dark-lighter);
    border-radius: 12px;
}

.coin-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.coin-info i {
    font-size: 32px;
    width: 40px;
    text-align: center;
}

.coin-info .fa-bitcoin {
    color: #f7931a;
}

.coin-info .fa-ethereum {
    color: #627eea;
}

.coin-info .fa-coins {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coin-info h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 3px;
}

.coin-info p {
    font-size: 13px;
    color: var(--text-gray);
}

.price-value {
    text-align: right;
}

.price-value h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 3px;
}

.price-value p {
    font-size: 13px;
}

.price-value p.positive {
    color: var(--success);
}

.price-value p.negative {
    color: var(--danger);
}

.features-section {
    padding: 30px 20px;
}

.features-section h2 {
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--dark-card);
    border-radius: 12px;
    border-left: 4px solid;
    border-image: var(--primary-gradient) 1;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-text h3 {
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    background: var(--dark-card);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
}

.dark-header {
    background: var(--primary-gradient);
}

.page-header h1 {
    font-size: 26px;
    color: white;
}

.page-content {
    padding: 20px;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-image {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-text h2 {
    font-size: 20px;
    color: white;
    margin: 25px 0 15px;
}

.about-text p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-list-simple {
    list-style: none;
    padding: 0;
}

.feature-list-simple li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list-simple i {
    color: var(--success);
    font-size: 18px;
}

/* ===================================
   PLANS PAGE
   =================================== */
.plan-card {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-dark);
    position: relative;
}

.dark-card {
    background: var(--dark-card);
    border-color: var(--border-dark);
}

.plan-card.featured {
    border-color: var(--accent-purple);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.4);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-purple);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-badge.gold {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.plan-badge.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.plan-card h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 36px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan-features li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features i {
    color: var(--success);
}

.btn-plan {
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* ===================================
   WALLET PAGE
   =================================== */
.wallet-balance {
    background: var(--primary-gradient);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.dark-balance {
    background: var(--primary-gradient);
}

.wallet-balance p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.wallet-balance h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.balance-change {
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

.balance-change.positive {
    background: rgba(0, 212, 170, 0.2);
    color: var(--success);
}

.wallet-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.wallet-action-btn {
    background: var(--dark-card);
    border: 2px solid var(--border-dark);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wallet-action-btn:hover {
    border-color: var(--accent-purple);
    transform: translateY(-3px);
}

.wallet-action-btn i {
    font-size: 28px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.wallet-action-btn span {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.transaction-history {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dark-history {
    background: var(--dark-card);
}

.transaction-history h2 {
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-dark);
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transaction-icon.received {
    background: rgba(0, 212, 170, 0.2);
    color: var(--success);
}

.transaction-icon.sent {
    background: rgba(255, 71, 87, 0.2);
    color: var(--danger);
}

.transaction-details {
    flex: 1;
}

.transaction-details h4 {
    font-size: 15px;
    color: white;
    margin-bottom: 3px;
}

.transaction-details p {
    font-size: 13px;
    color: var(--text-gray);
}

.transaction-amount {
    font-size: 16px;
    font-weight: 600;
}

.transaction-amount.positive {
    color: var(--success);
}

.transaction-amount.negative {
    color: var(--danger);
}

/* ===================================
   REFERRALS PAGE
   =================================== */
.referral-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.ref-stat {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dark-stat {
    background: var(--dark-card);
}

.ref-stat i {
    font-size: 40px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.ref-stat h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 5px;
}

.ref-stat p {
    font-size: 14px;
    color: var(--text-gray);
}

.referral-link {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dark-link {
    background: var(--dark-card);
}

.referral-link h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 15px;
}

.link-box {
    display: flex;
    gap: 10px;
}

.link-box input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--border-dark);
    border-radius: 10px;
    font-size: 14px;
    background: var(--dark-lighter);
    color: white;
}

.copy-btn {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.referral-list {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dark-list {
    background: var(--dark-card);
}

.referral-list h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
}

.referral-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-dark);
}

.referral-item:last-child {
    border-bottom: none;
}

.ref-avatar {
    width: 45px;
    height: 45px;
    background: var(--dark-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
}

.ref-avatar i {
    color: white;
    font-size: 20px;
}

.ref-info {
    flex: 1;
}

.ref-info h4 {
    font-size: 15px;
    color: white;
    margin-bottom: 3px;
}

.ref-info p {
    font-size: 13px;
    color: var(--text-gray);
}

.ref-reward {
    font-size: 16px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-info {
    margin-bottom: 30px;
}

.contact-item-mobile {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--dark-card);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.dark-contact {
    background: var(--dark-card);
}

.contact-item-mobile i {
    font-size: 24px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 30px;
    flex-shrink: 0;
}

.contact-item-mobile h4 {
    font-size: 15px;
    color: white;
    margin-bottom: 5px;
}

.contact-item-mobile p {
    font-size: 14px;
    color: var(--text-gray);
}

.contact-form-mobile {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dark-form {
    background: var(--dark-card);
}

.contact-form-mobile input,
.contact-form-mobile textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid var(--border-dark);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: var(--dark-lighter);
    color: white;
}

.contact-form-mobile input:focus,
.contact-form-mobile textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.contact-form-mobile textarea {
    resize: vertical;
}

.contact-form-mobile button {
    width: 100%;
}

/* ===================================
   BOTTOM NAVIGATION
   =================================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark-card);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    border-top: 1px solid var(--border-dark);
}

.dark-nav {
    background: var(--dark-card);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--text-gray);
    transition: all 0.3s ease;
    padding: 5px 15px;
    border-radius: 10px;
}

.nav-item.active {
    background: var(--primary-gradient);
    color: white;
}

.nav-item.active i,
.nav-item.active span {
    color: white;
}

.nav-item i {
    font-size: 22px;
}

.nav-item span {
    font-size: 11px;
    font-weight: 500;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 375px) {
    .mobile-header {
        padding: 12px 15px;
    }
    
    .mobile-logo {
        font-size: 18px;
    }
    
    .stats-container {
        gap: 10px;
        padding: 15px;
               margin: 0;
    }
    
    .stat-card {
        padding: 15px 10px;
    }
    
    .stat-card i {
        font-size: 24px;
    }
    
    .stat-card h3 {
        font-size: 18px;
    }
    
    .action-grid {
        gap: 10px;
    }
    
    .action-btn {
        padding: 15px 5px;
    }
    
    .action-btn i {
        font-size: 24px;
    }
    
    .action-btn span {
        font-size: 11px;
    }
    
    .page-content {
        padding: 15px;
    }
    
    .bottom-nav {
        padding: 8px 0;
    }
    
    .nav-item {
        padding: 5px 10px;
    }
    
    .nav-item i {
        font-size: 20px;
    }
    
    .nav-item span {
        font-size: 10px;
    }
}

@media (min-width: 376px) and (max-width: 414px) {
    .mobile-hero {
        height: 280px;
    }
    
    .mobile-hero-content h1 {
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .action-grid {
        gap: 20px;
    }
    
    .stats-container {
        gap: 20px;
    }
    
    .wallet-actions {
        gap: 20px;
    }
}
