/* ===================================
   MOBILE APP VIEW - SEPARATE CSS
   This CSS handles ONLY the mobile view
   Desktop view remains completely unchanged
   =================================== */

/* ===================================
   HIDE/SHOW LOGIC
   Desktop dashboard hidden on mobile
   Mobile app hidden on desktop
   =================================== */

/* Desktop View (>768px) - Show desktop dashboard, hide mobile app */
@media (min-width: 768px) {
    .interactive-dashboard {
        display: block !important;
    }
    
    .mobile-app-mockup {
        display: none !important;
    }
}

/* Mobile View (<768px) - Hide desktop dashboard, show mobile app */
@media (max-width: 767px) {
    .interactive-dashboard {
        display: none !important;
    }
    
    .mobile-app-mockup {
        display: block !important;
    }
}

/* ===================================
   HERO BADGE FIX (MOBILE ONLY)
   =================================== */

@media (max-width: 767px) {
    .hero-badge {
        font-size: 10px !important;
        padding: 6px 10px !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.4 !important;
        max-width: 90% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        display: inline-block !important;
    }
}

@media (max-width: 400px) {
    .hero-badge {
        font-size: 9px !important;
        padding: 5px 8px !important;
        max-width: 95% !important;
    }
}

/* ===================================
   HERO SECTION - MOBILE LAYOUT ORDER
   =================================== */

@media (max-width: 767px) {
    /* Fix header overlap issue - navbar is ~60px tall on mobile */
    .hero {
        padding-top: 120px !important; /* Increased for fixed navbar clearance */
        padding-bottom: 60px !important;
    }
    
    .hero .container {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }
    
    .hero-content {
        order: 1 !important;
        margin-bottom: 40px !important;
        padding-top: 0 !important;
    }
    
    .hero-badge {
        margin-top: 0 !important;
        margin-bottom: 20px !important;
    }
    
    .hero-title {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-cta {
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 24px !important;
    }
    
    .hero-trust {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin-top: 24px !important;
    }
    
    .trust-item {
        font-size: 12px !important;
        padding: 10px 12px !important;
        background: white !important;
        border-radius: 8px !important;
        border: 1px solid #e5e7eb !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        justify-content: center !important;
    }
    
    .trust-item i {
        font-size: 14px !important;
    }
    
    .hero-visual {
        order: 2 !important;
        margin-top: 0 !important;
    }
    
    .mobile-app-mockup {
        order: 3 !important;
        margin-top: 40px !important;
    }
}

/* ===================================
   MOBILE APP MOCKUP - PHONE FRAME
   =================================== */

@media (max-width: 767px) {
    .mobile-app-mockup {
        width: 100%;
        max-width: 360px;
        margin: 32px auto 0;
        padding: 20px 0;
    }
    
    .phone-frame {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        background: #1f2937;
        border-radius: 40px;
        padding: 12px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
        position: relative;
    }
    
    .phone-notch {
        position: absolute;
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 28px;
        background: #1f2937;
        border-radius: 0 0 20px 20px;
        z-index: 10;
    }
    
    .phone-notch::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 6px;
        background: #374151;
        border-radius: 3px;
    }
    
    .phone-screen {
        width: 100%;
        height: 640px;
        background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
        border-radius: 32px;
        overflow-y: auto;
        overflow-x: hidden;
        position: relative;
        -webkit-overflow-scrolling: touch;
    }
    
    .phone-screen::-webkit-scrollbar {
        display: none;
    }
}

/* ===================================
   MOBILE APP HEADER
   =================================== */

@media (max-width: 767px) {
    .mobile-app-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 40px 20px 20px;
        background: white;
    }
    
    .header-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .user-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, #5b3fd1, #7359e0);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 18px;
    }
    
    .user-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .greeting {
        font-size: 12px;
        color: #6b7280;
        font-weight: 500;
    }
    
    .user-name {
        font-size: 15px;
        color: #111827;
        font-weight: 700;
    }
    
    .header-right {
        position: relative;
    }
    
    .icon-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f3f4f6;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #374151;
        font-size: 18px;
        position: relative;
        cursor: pointer;
    }
    
    .icon-btn .badge-dot {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 8px;
        height: 8px;
        background: #ef4444;
        border-radius: 50%;
        border: 2px solid white;
    }
}

/* ===================================
   BALANCE CARD
   =================================== */

@media (max-width: 767px) {
    .balance-card-mobile {
        background: linear-gradient(135deg, #5b3fd1 0%, #7359e0 100%);
        margin: 0 20px;
        padding: 24px;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(91, 63, 209, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .balance-card-mobile::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }
    
    .balance-label {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
        margin-bottom: 6px;
    }
    
    .balance-amount {
        font-size: 32px;
        color: white;
        font-weight: 800;
        letter-spacing: -0.5px;
        margin-bottom: 4px;
    }
    
    .balance-accounts {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 20px;
    }
    
    .balance-actions {
        display: flex;
        gap: 10px;
        margin-top: 20px;
    }
    
    .action-btn-mobile {
        flex: 1;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        padding: 12px 8px;
        border-radius: 12px;
        color: white;
        font-size: 12px;
        font-weight: 600;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        backdrop-filter: blur(10px);
        transition: all 0.2s ease;
    }
    
    .action-btn-mobile.primary {
        background: rgba(255, 255, 255, 0.3);
    }
    
    .action-btn-mobile:active {
        transform: scale(0.95);
    }
    
    .action-btn-mobile i {
        font-size: 18px;
    }
}

/* ===================================
   QUICK STATS
   =================================== */

@media (max-width: 767px) {
    .quick-stats-mobile {
        display: flex;
        gap: 12px;
        padding: 20px;
    }
    
    .stat-item-mobile {
        flex: 1;
        background: white;
        padding: 16px;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .stat-icon-mobile {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .stat-icon-mobile.green {
        background: rgba(34, 197, 94, 0.1);
        color: #22c55e;
    }
    
    .stat-icon-mobile.red {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
    }
    
    .stat-details {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .stat-value-mobile {
        font-size: 16px;
        font-weight: 700;
        color: #111827;
    }
    
    .stat-label-mobile {
        font-size: 11px;
        color: #6b7280;
        font-weight: 500;
    }
}

/* ===================================
   RECENT TRANSACTIONS
   =================================== */

@media (max-width: 767px) {
    .transactions-mobile {
        padding: 0 20px 100px;
    }
    
    .section-title-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
    }
    
    .section-title-mobile span {
        font-size: 16px;
        font-weight: 700;
        color: #111827;
    }
    
    .see-all {
        font-size: 13px;
        color: #5b3fd1;
        font-weight: 600;
        text-decoration: none;
    }
    
    .transaction-list-mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .transaction-item-mobile {
        background: white;
        padding: 14px;
        border-radius: 14px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .transaction-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: #f3f4f6;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #6b7280;
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .transaction-icon.credit {
        background: rgba(34, 197, 94, 0.1);
        color: #22c55e;
    }
    
    .transaction-details {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 3px;
    }
    
    .transaction-name {
        font-size: 14px;
        font-weight: 600;
        color: #111827;
    }
    
    .transaction-date {
        font-size: 12px;
        color: #6b7280;
    }
    
    .transaction-amount {
        font-size: 15px;
        font-weight: 700;
        white-space: nowrap;
    }
    
    .transaction-amount.credit {
        color: #22c55e;
    }
    
    .transaction-amount.debit {
        color: #111827;
    }
}

/* ===================================
   BOTTOM NAVIGATION
   =================================== */

@media (max-width: 767px) {
    .mobile-bottom-nav {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e5e7eb;
        display: flex;
        justify-content: space-around;
        padding: 10px 20px 20px;
        border-radius: 0 0 32px 32px;
    }
    
    .nav-item-mobile {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        background: none;
        border: none;
        padding: 8px;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .nav-item-mobile i {
        font-size: 20px;
        color: #9ca3af;
        transition: all 0.2s ease;
    }
    
    .nav-item-mobile span {
        font-size: 11px;
        color: #9ca3af;
        font-weight: 500;
        transition: all 0.2s ease;
    }
    
    .nav-item-mobile.active {
        background: rgba(91, 63, 209, 0.1);
    }
    
    .nav-item-mobile.active i {
        color: #5b3fd1;
        transform: scale(1.1);
    }
    
    .nav-item-mobile.active span {
        color: #5b3fd1;
        font-weight: 600;
    }
    
    .nav-item-mobile:active {
        transform: scale(0.95);
    }
}

/* ===================================
   SMALL MOBILE ADJUSTMENTS (<400px)
   =================================== */

@media (max-width: 400px) {
    .phone-frame {
        border-radius: 30px;
        padding: 10px;
    }
    
    .phone-screen {
        height: 560px;
        border-radius: 24px;
    }
    
    .mobile-app-header {
        padding: 32px 16px 16px;
    }
    
    .balance-card-mobile {
        margin: 0 16px;
        padding: 20px;
    }
    
    .balance-amount {
        font-size: 28px;
    }
    
    .quick-stats-mobile {
        padding: 16px;
    }
    
    .transactions-mobile {
        padding: 0 16px 100px;
    }
    
    .stat-value-mobile {
        font-size: 14px;
    }
}

/* ===================================
   LANDSCAPE ORIENTATION (Mobile)
   =================================== */

@media (max-width: 767px) and (orientation: landscape) {
    .phone-screen {
        height: 480px;
    }
}

/* ===================================
   APP SCREENS MANAGEMENT
   =================================== */

@media (max-width: 767px) {
    .app-screen {
        display: none;
        width: 100%;
        padding-bottom: 80px; /* Space for bottom nav */
    }
    
    .app-screen.active {
        display: block;
    }
    
    /* Screen Headers */
    .screen-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px 20px 16px;
        background: white;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .screen-header-mobile h2 {
        font-size: 20px;
        font-weight: 700;
        color: #111827;
        margin: 0;
    }
    
    .period-selector-mobile {
        padding: 6px 12px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 600;
        color: #374151;
        background: white;
    }
}

/* ===================================
   PAYMENTS SCREEN
   =================================== */

@media (max-width: 767px) {
    .payment-options-mobile {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        padding: 20px;
        background: white;
    }
    
    .payment-option-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 16px 8px;
        background: #f9fafb;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .payment-option-card i {
        font-size: 24px;
        color: #5b3fd1;
    }
    
    .payment-option-card span {
        font-size: 10px;
        font-weight: 600;
        color: #374151;
        text-align: center;
    }
    
    .payment-option-card:active {
        transform: scale(0.95);
        background: #f3f4f6;
    }
    
    .section-mobile {
        padding: 0 20px 20px;
        background: #f9fafb;
    }
    
    .section-mobile .section-title-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
        padding-top: 12px;
    }
    
    .count-badge {
        background: #ef4444;
        color: white;
        font-size: 10px;
        font-weight: 700;
        padding: 2px 6px;
        border-radius: 10px;
    }
    
    .payment-list-mobile {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .payment-item-mobile {
        background: white;
        padding: 14px;
        border-radius: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }
    
    .payment-info {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .payment-vendor {
        font-size: 14px;
        font-weight: 600;
        color: #111827;
    }
    
    .payment-due,
    .payment-date {
        font-size: 11px;
        color: #6b7280;
    }
    
    .payment-right {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .payment-amt {
        font-size: 14px;
        font-weight: 700;
        color: #111827;
    }
    
    .btn-pay-now {
        background: #5b3fd1;
        color: white;
        border: none;
        padding: 6px 14px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
    }
    
    .btn-pay-now:active {
        transform: scale(0.95);
    }
    
    .success-icon {
        color: #22c55e;
        font-size: 18px;
    }
}

/* ===================================
   ANALYTICS SCREEN
   =================================== */

@media (max-width: 767px) {
    .analytics-summary-mobile {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
        background: white;
    }
    
    .summary-card-mobile {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 16px;
        background: #f9fafb;
        border-radius: 12px;
    }
    
    .summary-label {
        font-size: 12px;
        color: #6b7280;
        font-weight: 500;
    }
    
    .summary-value {
        font-size: 24px;
        font-weight: 800;
        color: #111827;
    }
    
    .summary-change {
        font-size: 11px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    .summary-change.positive {
        color: #22c55e;
    }
    
    .summary-change.negative {
        color: #ef4444;
    }
    
    .chart-mobile {
        margin: 20px;
        padding: 16px;
        background: white;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    
    .chart-header-mobile {
        font-size: 14px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 16px;
    }
    
    .category-list-mobile {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    
    .category-item-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .category-left {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 13px;
        font-weight: 600;
        color: #111827;
    }
    
    .category-color {
        width: 12px;
        height: 12px;
        border-radius: 3px;
    }
    
    .category-right {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 13px;
        font-weight: 600;
        color: #111827;
    }
    
    .category-percent {
        color: #6b7280;
        font-size: 12px;
        min-width: 40px;
        text-align: right;
    }
    
    .stats-grid-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 20px 20px;
    }
    
    .stat-box-mobile {
        background: white;
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .stat-box-mobile i {
        font-size: 20px;
        color: #5b3fd1;
    }
    
    .stat-number {
        font-size: 18px;
        font-weight: 800;
        color: #111827;
    }
    
    .stat-name {
        font-size: 11px;
        color: #6b7280;
        font-weight: 500;
        text-align: center;
    }
}

/* ===================================
   PROFILE SCREEN
   =================================== */

@media (max-width: 767px) {
    .profile-header-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px 20px;
        background: white;
        gap: 12px;
    }
    
    .profile-avatar-large {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, #5b3fd1, #7359e0);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 32px;
    }
    
    .profile-header-mobile h3 {
        font-size: 18px;
        font-weight: 700;
        color: #111827;
        margin: 0;
    }
    
    .profile-header-mobile p {
        font-size: 13px;
        color: #6b7280;
        margin: 0;
    }
    
    .btn-edit-profile {
        background: #f3f4f6;
        color: #374151;
        border: none;
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 600;
        margin-top: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .profile-section-mobile {
        background: white;
        margin: 12px 20px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    
    .profile-item-mobile {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px;
        border-bottom: 1px solid #f3f4f6;
        cursor: pointer;
        transition: background 0.2s ease;
    }
    
    .profile-item-mobile:last-child {
        border-bottom: none;
    }
    
    .profile-item-mobile:active {
        background: #f9fafb;
    }
    
    .profile-item-mobile i:first-child {
        font-size: 18px;
        color: #6b7280;
        width: 24px;
    }
    
    .profile-item-mobile span:first-of-type {
        flex: 1;
        font-size: 14px;
        font-weight: 600;
        color: #111827;
    }
    
    .item-value {
        font-size: 13px;
        color: #6b7280;
        font-weight: 600;
    }
    
    .profile-item-mobile .fa-chevron-right {
        font-size: 12px;
        color: #9ca3af;
    }
    
    .btn-logout-mobile {
        background: #fee2e2;
        color: #dc2626;
        border: none;
        padding: 14px;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 700;
        margin: 24px 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: calc(100% - 40px);
    }
    
    .btn-logout-mobile:active {
        transform: scale(0.98);
    }
}

/* ===================================
   TRANSACTION REDESIGN
   =================================== */

@media (max-width: 767px) {
    .transaction-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: #f3f4f6;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #6b7280;
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .transaction-icon.credit-icon {
        background: rgba(34, 197, 94, 0.1);
        color: #22c55e;
    }
    
    .transaction-icon.debit-icon {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
    }
    
    .transaction-details {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 4px;
        min-width: 0; /* Fix text overflow */
    }
    
    .transaction-name {
        font-size: 13px;
        font-weight: 600;
        color: #111827;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .transaction-date {
        font-size: 11px;
        color: #9ca3af;
        font-weight: 500;
    }
    
    .transaction-amount {
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .transaction-amount.credit {
        color: #22c55e;
    }
    
    .transaction-amount.debit {
        color: #111827;
    }
    
    .transaction-item-mobile {
        background: white;
        padding: 12px;
        border-radius: 12px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .transaction-item-mobile:active {
        transform: scale(0.98);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }
}

/* ===================================
   FIX OVERLAPPING ELEMENTS
   =================================== */

@media (max-width: 767px) {
    .phone-screen {
        position: relative;
        z-index: 1;
    }
    
    .mobile-bottom-nav {
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10;
    }
    
    .transactions-mobile,
    .section-mobile {
        padding-bottom: 20px;
        margin-bottom: 0;
    }
    
    /* Ensure badge dot doesn't overflow */
    .badge-dot-mobile {
        position: absolute;
        top: 6px;
        right: 6px;
        width: 8px;
        height: 8px;
        background: #ef4444;
        border-radius: 50%;
        border: 2px solid white;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

@media (max-width: 767px) {
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    .mobile-app-mockup {
        animation: slideUp 0.6s ease-out;
    }
    
    .app-screen.active {
        animation: fadeIn 0.3s ease-out;
    }
}
