body {
    background-color: #f5f5f9;
    color: #5d596c;
}

.card {
    border: none;
    color: var(--theme-color);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(47, 43, 61, 0.14), 0 0 transparent, 0 0 transparent;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(47, 43, 61, 0.15);
}

.stat-card {
    background: linear-gradient( 135deg, #667eea 0%, #A1E3F9 100%);
    color: white;
}

.stat-card-gold {
    /*    background: #591B7A;
*/
    background: linear-gradient( 135deg, #667eea 0%, #A1E3F9 100%);
}

.stat-card-karigar {
    background: linear-gradient( 135deg, #667eea 0%, #A1E3F9 100%); /*    background: #1B167D;
*/
}

.nav-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-card:hover {
    background-color: #f8f9fa;
}

.greeting-section {
    background: var(--theme-color);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.gold-amount {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

.nav-icon {
    width: 40px;
    height: 40px;
/*    background-color: #e7e3fc;
*/    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7367f0;
    background-color: #C5FFF8;
}

h4 {
    font-weight: bold;
    color: whitesmoke !important;
    background-color: var(--theme-color);
    padding: 10px;
    border-radius: 5px;
}

h1, h3 {
    color: white !important;
}

.badge-custom {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    padding: 0.5rem 1rem;
}