/* Wallet Page Specific Styles */

/* Wallet View Notice */
.wallet-view-notice {
    text-align: center;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

.wallet-view-notice .notice-label {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 5px;
}

.wallet-view-notice .home-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.wallet-view-notice .home-link:hover {
    text-decoration: underline;
}

/* Description Card (wallet.html specific - no animations) */
.description {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 18px;
    background: linear-gradient(135deg, #888 0%, #555 100%);
    background-size: 200% 200%;
    border: 2px solid #666;
    padding: 24px 32px;
    font-weight: 500;
}

/* Mobile Layout for Wallet Page */
@media (max-width: 768px) {
    /* Global medal stats comes last on mobile */
    .card.global-stats {
        order: 999;
    }
}