* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4CAF50;
    --secondary-color: #2196F3;
    --danger-color: #F44336;
    --warning-color: #FF9800;
    --success-color: #4CAF50;
    --info-color: #00BCD4;
    --dark-color: #333;
    --light-color: #f5f5f5;
    --border-color: #ddd;
    --text-color: #333;
    --text-muted: #666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    color: var(--text-color);
    line-height: 1.6;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(102, 126, 234, 0);
    }
}

.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.auth-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-muted);
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.auth-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, rgba(99,102,241,0.95), rgba(168,85,247,0.95));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(99, 102, 241, 0.15);
    z-index: 1001;
    display: none;
    animation: fadeInDown 0.6s ease-out;
}

.desktop-header-container {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 30px;
}

.header-logo {
    display: flex;
    align-items: center;
    height: 60px;
    padding-left: 20px;
}

.header-logo a {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    line-height: 60px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-link {
    display: flex;
    align-items: center;
    height: 60px;
    text-decoration: none;
}

.site-logo {
    max-height: 40px;
    max-width: 200px;
    height: auto;
    width: auto;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-wallet-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 16px;
    border-radius: 20px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.header-wallet-pill:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-notification {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.header-notification:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #f44336 0%, #e91e63 100%);
    color: white;
    padding: 3px 7px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.4);
}

.header-profile-dropdown {
    position: relative;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px 0 0;
    background: transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.profile-trigger:hover {
    opacity: 0.8;
}

.header-profile-dropdown .profile-avatar {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-trigger:hover .profile-avatar {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.header-profile-dropdown .profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.header-profile-dropdown .profile-avatar i {
    font-size: 16px;
}

.profile-trigger:hover .profile-avatar {
    transform: scale(1.05);
}

.profile-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-trigger i.fa-chevron-down {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s;
}

.header-profile-dropdown:hover .profile-trigger i.fa-chevron-down {
    transform: rotate(180deg);
}

.profile-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.header-profile-dropdown:hover .profile-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
}

.profile-dropdown-menu a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.profile-dropdown-menu a i {
    width: 20px;
    font-size: 16px;
}

.dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 5px 0;
}

.profile-dropdown-menu .admin-link {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.15) 0%, rgba(245, 87, 108, 0.15) 100%);
    color: #f5576c;
}

.profile-dropdown-menu .admin-link:hover {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.25) 0%, rgba(245, 87, 108, 0.25) 100%);
}

.profile-dropdown-menu .logout-link {
    color: #f44336;
}

.profile-dropdown-menu .logout-link:hover {
    background: rgba(244, 67, 54, 0.1);
}

.desktop-sidebar {
    position: fixed;
    left: 0;
    top: 60px;
    width: 260px;
    height: calc(100vh - 60px);
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.sidebar-header {
    display: none;
}

.sidebar-nav {
    padding: 10px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-item i {
    width: 25px;
    margin-right: 15px;
    font-size: 18px;
}

.nav-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.nav-item.active {
    background-color: var(--primary-color);
    color: white;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: white;
}

.nav-item.admin-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    margin: 10px;
    border-radius: 8px;
}

.nav-divider {
    height: 1px;
    background: var(--border-color);
    margin: 10px 0;
}

.nav-item .badge {
    margin-left: auto;
    background: var(--danger-color);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.main-content {
    margin-left: 260px;
    margin-top: 60px;
    padding: 30px;
    min-height: 100vh;
    padding-bottom: 100px;
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, rgba(99,102,241,0.95), rgba(168,85,247,0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
}

.mobile-header-logo {
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mobile-header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-header-icons a {
    color: white;
    font-size: 20px;
    position: relative;
    text-decoration: none;
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, rgba(99,102,241,0.95), rgba(168,85,247,0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0 10px;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
    padding: 5px 10px;
    border-radius: 8px;
}

.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: white;
    background: rgba(255,255,255,0.15);
}

@media (min-width: 1024px) {
    .desktop-header {
        display: flex;
    }
    
    .desktop-sidebar {
        display: block;
    }
}

.page-header {
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.page-header p {
    color: var(--text-muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease backwards;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin-right: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-color);
    animation: countUp 0.8s ease-out;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.dashboard-section {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease backwards;
}

.dashboard-section:hover {
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

.section-header h2 {
    font-size: 20px;
    color: var(--dark-color);
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.action-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.action-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.action-btn i {
    font-size: 36px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.action-btn:hover i {
    transform: scale(1.15) rotate(-5deg);
}

.action-btn span {
    font-weight: 600;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.notifications-list {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    margin-bottom: 8px;
    animation: fadeInUp 0.4s ease backwards;
}

.notification-item:nth-child(1) { animation-delay: 0.05s; }
.notification-item:nth-child(2) { animation-delay: 0.1s; }
.notification-item:nth-child(3) { animation-delay: 0.15s; }
.notification-item:nth-child(4) { animation-delay: 0.2s; }
.notification-item:nth-child(5) { animation-delay: 0.25s; }

.notification-item:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateX(8px);
    border-left: 3px solid #667eea;
}

.notification-item:hover {
    background: var(--light-color);
}

.notification-item.unread {
    background: #e3f2fd;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.notification-message {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.notification-time {
    font-size: 12px;
    color: var(--text-muted);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #45a049;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-warning {
    background: var(--warning-color);
    color: white;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 16px;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 13px;
}

.wallet-balance-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.balance-label {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.balance-amount {
    font-size: 42px;
    font-weight: 700;
}

.balance-actions {
    display: flex;
    gap: 15px;
}

.wallet-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.transaction-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--light-color);
    border-radius: 10px;
    gap: 15px;
}

.transaction-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.transaction-icon.deposit {
    background: var(--success-color);
}

.transaction-icon.withdraw {
    background: var(--warning-color);
}

.transaction-details {
    flex: 1;
}

.transaction-type {
    font-weight: 600;
    margin-bottom: 3px;
}

.transaction-date,
.transaction-method {
    font-size: 13px;
    color: var(--text-muted);
}

.transaction-amount {
    font-size: 18px;
    font-weight: 700;
    margin-right: 15px;
}

.transaction-amount.deposit {
    color: var(--success-color);
}

.transaction-amount.withdraw {
    color: var(--warning-color);
}

.transaction-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.deposit-container,
.withdraw-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.payment-info-card,
.deposit-form-card,
.withdraw-info-card,
.withdraw-form-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.payment-info-card h3,
.withdraw-info-card h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.payment-methods {
    margin-bottom: 20px;
}

.payment-method {
    padding: 15px;
    background: var(--light-color);
    border-radius: 8px;
    margin-bottom: 10px;
}

.method-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.method-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
}

.payment-instructions h4 {
    margin-bottom: 10px;
}

.payment-instructions ol {
    padding-left: 20px;
}

.payment-instructions li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

.info-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--light-color);
    border-radius: 8px;
    margin-bottom: 15px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.info-label {
    font-size: 13px;
    color: var(--text-muted);
}

.info-value {
    font-size: 18px;
    font-weight: 600;
}

.withdraw-note {
    padding: 15px;
    background: #fff3cd;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--light-color);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #ccc;
}

.product-content {
    padding: 20px;
}

.product-name {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-detail-container {
    max-width: 1000px;
    margin: 0 auto;
}

.product-detail-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-detail-image {
    width: 100%;
    height: 500px;
    background: var(--light-color);
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-content {
    padding: 30px;
}

.product-detail-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.product-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.product-detail-description {
    margin-bottom: 25px;
}

.product-detail-description h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-detail-info {
    background: var(--light-color);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

.order-id {
    font-weight: 600;
    font-size: 16px;
}

.order-body {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.order-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.order-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.order-date {
    font-size: 14px;
    color: var(--text-muted);
}

.order-delivery {
    background: #d4edda;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.order-delivery h4 {
    color: var(--success-color);
    margin-bottom: 15px;
}

.delivery-content {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    white-space: pre-wrap;
}

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.task-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.task-card:hover {
    transform: translateY(-5px);
}

.task-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.task-header h3 {
    flex: 1;
    font-size: 18px;
    color: var(--dark-color);
}

.task-reward {
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    margin-left: 15px;
}

.task-description {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.task-requirements {
    margin-bottom: 15px;
}

.task-requirements strong {
    display: block;
    margin-bottom: 10px;
}

.requirements-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.requirement-badge {
    background: var(--light-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-color);
}

.requirement-badge i {
    margin-right: 5px;
}

.task-submit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.task-info-card,
.task-submit-form-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.task-reward-large {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.task-description-full h3 {
    margin-bottom: 10px;
}

.required-badge {
    background: var(--danger-color);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    margin-left: 5px;
}

.submissions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.submission-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.submission-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

.submission-title {
    flex: 1;
}

.submission-title h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.submission-reward {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.submission-body {
    color: var(--text-muted);
}

.submission-date {
    margin-bottom: 15px;
}

.submission-item {
    margin-bottom: 15px;
}

.submission-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.submission-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.submission-admin-note {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.notifications-list-page {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notification-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    gap: 20px;
}

.notification-card.unread {
    background: #e3f2fd;
    border-left: 4px solid var(--primary-color);
}

.notification-icon-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.notification-content-large {
    flex: 1;
}

.notification-content-large h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.notification-content-large p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.notification-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.mark-read-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.profile-container {
    max-width: 800px;
    margin: 0 auto;
}

.profile-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.profile-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-color);
    margin-bottom: 30px;
}

.profile-header .profile-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.profile-header .profile-avatar i {
    font-size: 80px;
    color: white;
}

.profile-header .profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-header h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

.profile-username {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 5px;
}

.profile-role {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.telegram-buttons {
    position: fixed;
    right: 25px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.telegram-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 24px;
    position: relative;
    overflow: visible;
    animation: floatTelegram 3s ease-in-out infinite;
}

@keyframes floatTelegram {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.telegram-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: telegramPulse 2.5s ease-in-out infinite;
}

@keyframes telegramPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.telegram-btn:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.telegram-btn:active {
    transform: translateY(-4px) scale(1.08);
}

.telegram-channel {
    background: linear-gradient(135deg, #229ED9 0%, #0088cc 100%);
    animation-delay: 0s;
}

.telegram-channel:hover {
    box-shadow: 0 12px 35px rgba(34, 158, 217, 0.5);
}

.telegram-support {
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
    animation-delay: 0.5s;
}

.telegram-support:hover {
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.5);
}

.telegram-btn span {
    display: none;
}

@media (max-width: 1023px) {
    .desktop-header {
        display: none !important;
    }
    
    .desktop-sidebar {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0;
        margin-top: 56px;
        padding: 16px 14px;
        padding-bottom: 80px;
    }
    
    .page-header {
        margin-bottom: 16px;
    }
    
    .page-header h1 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .mobile-header {
        display: flex !important;
        height: 56px;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        padding: 8px 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        z-index: 1000;
        animation: fadeInDown 0.5s ease-out;
    }
    
    .mobile-header-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .mobile-header-left .logo {
        font-size: 18px;
        font-weight: 800;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -0.5px;
    }
    
    .mobile-header-left .logo-link {
        display: flex;
        align-items: center;
        height: 56px;
    }
    
    .mobile-header-left .site-logo {
        max-height: 32px;
        max-width: 150px;
        height: auto;
        width: auto;
        object-fit: contain;
    }
    
    .mobile-header-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .mobile-profile-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        font-size: 14px;
        font-weight: 600;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.8);
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
    }
    
    .mobile-profile-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .mobile-profile-avatar:active {
        transform: scale(0.92);
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2), 0 2px 8px rgba(102, 126, 234, 0.3);
    }
    
    .header-balance {
        background: rgba(76, 175, 80, 0.12);
        backdrop-filter: blur(10px);
        color: #2d7a2f;
        padding: 6px 12px;
        border-radius: 16px;
        font-weight: 700;
        font-size: 12px;
        border: 1px solid rgba(76, 175, 80, 0.25);
        box-shadow: 0 2px 6px rgba(76, 175, 80, 0.15);
        white-space: nowrap;
        transition: all 0.3s ease;
    }
    
    .header-balance:active {
        transform: scale(0.96);
        background: rgba(76, 175, 80, 0.18);
    }
    
    .notification-icon,
    .profile-icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #667eea;
        position: relative;
        background: rgba(102, 126, 234, 0.08);
        border-radius: 10px;
        border: 1px solid rgba(102, 126, 234, 0.15);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
    }
    
    .notification-icon:active,
    .profile-icon:active {
        transform: scale(0.92);
        background: rgba(102, 126, 234, 0.15);
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    }
    
    .notification-icon .badge {
        position: absolute;
        top: -4px;
        right: -4px;
        background: linear-gradient(135deg, #f44336 0%, #e91e63 100%);
        color: white;
        padding: 2px 5px;
        border-radius: 8px;
        font-size: 9px;
        font-weight: 700;
        box-shadow: 0 2px 6px rgba(244, 67, 54, 0.4);
        min-width: 16px;
        text-align: center;
        animation: pulseGlow 2s infinite;
    }
    
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        padding: 10px 0 12px 0;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08), 0 -1px 4px rgba(0, 0, 0, 0.04);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        z-index: 1000;
    }
    
    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #999;
        text-decoration: none;
        padding: 6px 16px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border-radius: 12px;
    }
    
    .mobile-bottom-nav .nav-item i {
        font-size: 22px;
        margin-bottom: 3px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-bottom-nav .nav-item span {
        font-size: 10px;
        font-weight: 600;
    }
    
    .mobile-bottom-nav .nav-item.active {
        color: #667eea;
        background: rgba(102, 126, 234, 0.08);
    }
    
    .mobile-bottom-nav .nav-item.active i {
        transform: translateY(-2px) scale(1.1);
    }
    
    .mobile-bottom-nav .nav-item:active {
        transform: scale(0.95);
    }
    
    .mobile-bottom-nav .nav-item.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 0 0 3px 3px;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .stat-card {
        padding: 16px;
        border-radius: 16px;
        animation: fadeInUp 0.5s ease backwards;
    }
    
    .stat-card:nth-child(1) { animation-delay: 0.05s; }
    .stat-card:nth-child(2) { animation-delay: 0.1s; }
    .stat-card:nth-child(3) { animation-delay: 0.15s; }
    .stat-card:nth-child(4) { animation-delay: 0.2s; }
    
    .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
        margin-right: 12px;
        border-radius: 12px;
    }
    
    .stat-value {
        font-size: 22px;
        font-weight: 800;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .stat-card:active {
        transform: scale(0.98);
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .action-btn {
        padding: 20px 16px;
        border-radius: 14px;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
    }
    
    .action-btn i {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .action-btn span {
        font-size: 13px;
    }
    
    .action-btn:active {
        transform: scale(0.96);
    }
    
    .dashboard-section {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        padding: 18px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.05);
        animation: fadeInUp 0.5s ease backwards;
    }
    
    .notification-item {
        padding: 14px;
        border-radius: 10px;
        margin-bottom: 6px;
        transition: all 0.3s ease;
    }
    
    .notification-item:active {
        transform: scale(0.98);
        background: rgba(102, 126, 234, 0.08);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-card {
        grid-template-columns: 1fr;
    }
    
    .product-detail-image {
        height: 300px;
    }
    
    .deposit-container,
    .withdraw-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .payment-info-card,
    .deposit-form-card,
    .withdraw-info-card,
    .withdraw-form-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .payment-info-card h3,
    .withdraw-info-card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .payment-method {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .method-label {
        font-size: 12px;
    }
    
    .method-value {
        font-size: 16px;
        word-break: break-all;
    }
    
    .payment-instructions h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .payment-instructions ol {
        padding-left: 18px;
        font-size: 14px;
    }
    
    .payment-instructions li {
        margin-bottom: 8px;
        line-height: 1.5;
    }
    
    .wallet-section {
        padding: 15px 10px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .task-submit-container {
        grid-template-columns: 1fr;
    }
    
    .tasks-grid {
        grid-template-columns: 1fr;
    }
    
    .telegram-buttons {
        position: fixed;
        bottom: 85px;
        right: 12px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 999;
    }
    
    .telegram-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        animation: float 3s ease-in-out infinite;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .telegram-btn:active {
        transform: scale(0.92) translateY(2px);
    }
    
    .telegram-channel {
        background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
        animation-delay: 0.2s;
    }
    
    .telegram-support {
        background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
        animation-delay: 0.4s;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .wallet-balance-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .balance-actions {
        width: 100%;
        flex-direction: column;
    }
}
