@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #1a3d34;
    --primary-light: #2d5a4e;
    --secondary: #a8c3a1;
    --accent: #d4a373;
    --dark: #0f172a;
    --light: #f8faf7;
    --white: #ffffff;
    --gray-50: #f1f3f0;
    --gray-100: #e2e7e1;
    --gray-200: #ccd5cb;
    --gray-500: #64748b;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-premium: 0 25px 50px -12px rgba(26, 61, 52, 0.15);
    --radius-lg: 24px;
    --radius-xl: 32px;
    --error: #ef4444;
    --success: #22c55e;
}

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

@keyframes pulse-subtle {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 0% 0%, rgba(168, 195, 161, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(26, 61, 52, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
}

header {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-circle {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(26, 61, 52, 0.08);
    color: var(--primary);
    border: 1px solid var(--white);
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary);
}

.logo-text p {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.7;
    text-transform: uppercase;
}

/* Premium Stats Card */
.stats-card {
    position: relative;
    background: linear-gradient(135deg, #1a3d34 0%, #2d5a4e 45%, #7a9e71 100%);
    padding: 48px 24px;
    border-radius: var(--radius-xl);
    color: var(--white);
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-card::before,
.stats-card::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    z-index: 1;
}

.stats-card::before {
    width: 180px;
    height: 180px;
    top: -60px;
    right: -40px;
}

.stats-card::after {
    width: 120px;
    height: 120px;
    bottom: -30px;
    left: -30px;
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 12px;
}

.stats-value {
    font-size: 56px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: -2px;
}

/* Donate Button */
.btn-donate {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 22px;
    border-radius: 60px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(26, 61, 52, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.btn-donate:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 61, 52, 0.3);
    background: var(--primary-light);
}

/* Global Form Elements */
.input-group {
    margin-bottom: 20px;
    width: 100%;
}

input, textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 20px;
    border: 2px solid var(--gray-100);
    background: var(--light);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    outline: none;
    box-sizing: border-box;
}

input:focus, textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26, 61, 52, 0.1);
}

.field-error {
    color: var(--error);
    font-size: 11px;
    font-weight: 700;
    margin-top: 6px;
    margin-left: 12px;
}

.preset-amounts {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
}

.preset-btn {
    flex: 1;
    padding: 14px 10px;
    border-radius: 14px;
    border: 2px solid var(--gray-100);
    background: var(--white);
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.preset-btn:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background: var(--gray-50);
}

.preset-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 15px -3px rgba(26, 61, 52, 0.2);
}

/* Navigation Grid */
.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.action-tile {
    background: var(--white);
    padding: 24px 12px;
    border-radius: 28px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.action-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 61, 52, 0.1);
    border-color: var(--secondary);
}

.action-tile.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(26, 61, 52, 0.2);
}

.action-tile.active .tile-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.action-tile.active .tile-label {
    color: var(--white);
}

.tile-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.tile-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

/* Content Sections */
.content-section {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    border: 1px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    animation: fadeIn 0.8s ease-out;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #f1f5f0;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 800;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

.check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

/* Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.pillar-card {
    background: #f8faf7;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--white);
}

.pillar-card i {
    width: 32px;
    height: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

/* Membership */
.membership-box {
    background: var(--primary);
    color: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    box-shadow: 0 20px 40px rgba(26, 61, 52, 0.2);
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* Bank Details */
.bank-details-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 2px dashed var(--secondary);
    margin-bottom: 40px;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f0;
}

/* Footer (Clean & Integrated) */
.footer-links-mini {
    padding: 32px 0 48px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 24px;
}

.footer-links-mini a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links-mini a:hover {
    color: var(--primary);
}

.footer-links-mini span {
    color: var(--gray-200);
    margin: 0 10px;
}

.footer-copy {
    margin-top: 12px;
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.powered-by {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.powered-by span {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
}

.powered-by img {
    height: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.powered-by:hover img {
    opacity: 1;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    display: none;
    align-items: flex-end;
    justify-content: center;
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
}

@media (min-width: 640px) {
    .modal-overlay {
        align-items: center;
        padding: 20px;
    }
}

.modal-content {
    background: var(--white);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 32px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.modal-title h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.modal-title p {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.close-btn {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-content::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

@media (min-width: 640px) {
    .modal-content {
        border-radius: 40px;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Screen Headers & Back Buttons */
.screen-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding: 0 4px;
}

.back-btn {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.3s;
}

.back-btn:hover {
    transform: translateX(-4px);
    background: var(--primary);
    color: var(--white);
}

.screen-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

/* Professional History Redesign (v2) */
.history-item {
    background: var(--white);
    padding: 16px;
    border-radius: 20px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.history-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(26, 61, 52, 0.08);
    border-color: var(--secondary);
}

.hi-main {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.hi-icon {
    width: 48px;
    height: 48px;
    background: #f0f7f1;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.history-item:hover .hi-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.hi-content {
    flex: 1;
}

.hi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.hi-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.3px;
}

.hi-amount {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    background: #f1f5f0;
    padding: 4px 10px;
    border-radius: 8px;
    transition: all 0.3s;
}

.history-item:hover .hi-amount {
    background: var(--primary);
    color: var(--white);
}

.hi-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hi-date {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

.hi-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hi-chevron {
    color: var(--gray-100);
    margin-left: 12px;
    transition: all 0.3s;
}

.history-item:hover .hi-chevron {
    color: var(--primary);
    transform: translateX(4px);
}

/* Header Notification */
.notification-btn {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.notification-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 7px;
    height: 7px;
    background: #ef4444;
    border: 2px solid var(--white);
    border-radius: 50%;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 1px dashed var(--gray-200);
}

.hidden {
    display: none !important;
}

/* Existing Utility for Slider (simplified) */
.slider-container {
    position: relative;
    height: 200px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 24px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
}

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

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.dot.active {
    width: 20px;
    background: var(--white);
    border-radius: 10px;
}

.slider-overlay-text {
    display: none;
}

/* Dashboards Styling */
.toppers-section {
    margin: 24px 0;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.toppers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.toppers-header h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}

.toppers-header a {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-light);
    text-decoration: none;
}

.toppers-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.toppers-list::-webkit-scrollbar { display: none; }

.topper-card {
    flex: 0 0 100px;
    background: var(--light);
    padding: 12px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--gray-100);
}

.topper-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: 800;
    font-size: 14px;
}

.topper-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topper-amount {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-light);
}

.live-section {
    margin-top: 32px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-blink {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.live-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.live-item {
    background: var(--white);
    padding: 16px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    animation: fadeIn 0.5s ease;
}

.live-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.live-info p {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

.live-amount {
    font-weight: 800;
    color: var(--primary);
    background: var(--gray-50);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 14px;
}

.donors-dash {
    margin-top: 40px;
    padding-bottom: 100px;
}

.scope-tabs {
    display: flex;
    background: var(--gray-50);
    padding: 4px;
    border-radius: 12px;
}

.scope-btn {
    padding: 6px 16px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-500);
    cursor: pointer;
    border-radius: 10px;
}

.scope-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.leaderboard-list {
    margin-top: 16px;
}

.leader-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-50);
}

.leader-rank {
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    color: var(--gray-500);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.leader-item:nth-child(1) .leader-rank { background: #ffd700; color: #856404; }
.leader-item:nth-child(2) .leader-rank { background: #c0c0c0; color: #495057; }
.leader-item:nth-child(3) .leader-rank { background: #cd7f32; color: #ffffff; }

.leader-info { flex: 1; }
.leader-info h4 { font-size: 14px; font-weight: 700; color: var(--primary); }
.leader-info p { font-size: 12px; color: var(--gray-500); }
.leader-amt { font-weight: 800; color: var(--primary); font-size: 15px; }

.topper-skeleton {
    flex: 0 0 100px;
    height: 90px;
    background: var(--gray-50);
    border-radius: 16px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Navigation Buttons - New High-Performance Grid */
.nav-button-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
}

.nav-btn-premium {
    background: var(--white);
    padding: 18px 20px;
    border-radius: 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.nav-btn-premium:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(26, 61, 52, 0.1);
    border-color: var(--secondary);
}

.nb-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.nav-btn-premium:hover .nb-icon {
    background: var(--primary);
    color: var(--white);
}

.nb-content h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.nb-content p {
    font-size: 11px;
    color: var(--gray-500);
    margin: 2px 0 0;
    font-weight: 500;
}

/* Today's Toppers List-View v2 */
.topper-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.topper-row {
    background: #f8faf9;
    padding: 10px 14px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.topper-row:hover {
    transform: translateX(4px);
    background: var(--white);
    box-shadow: 0 4px 12px rgba(26, 61, 52, 0.05);
}

.tr-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 11px;
    flex-shrink: 0;
}

.rank-1 { background: #ffd700; color: #856404; box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
.rank-2 { background: #c0c0c0; color: #495057; }
.rank-3 { background: #cd7f32; color: #fff; }
.rank-default { background: #e2e8f0; color: #64748b; }

.tr-name {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.tr-amount {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    background: rgba(255,255,255,0.7);
    padding: 4px 10px;
    border-radius: 8px;
}

/* Skeleton for List */
.list-skeleton {
    height: 48px;
    background: #f1f3f2;
    border-radius: 16px;
    animation: pulse 1.5s infinite;
}

