.chain-card .mud-typography-body2 {
    font-size: 0.85rem !important;
    color: #666 !important;
    text-align: center !important;
    line-height: 1.3 !important;
}

/* ===== ENHANCED GLOBAL HOVER EFFECTS ===== */
.mud-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mud-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15) !important;
}

/* ===== BUTTON ENHANCED HOVER EFFECTS ===== */
.mud-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mud-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

/* ===== NAVIGATION BUTTON SPECIAL EFFECTS ===== */
.nav-button2 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 12px !important;
    font-weight: 500 !important;
    position: relative !important;
    overflow: hidden !important;
}

.nav-button2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.nav-button2:hover::before {
    left: 100%;
}

.nav-button2:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.3) !important;
}

/* ===== ICON HOVER EFFECTS ===== */
.mud-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mud-icon:hover {
    transform: scale(1.1) !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2)) !important;
}

/* ===== APPBAR ENHANCED EFFECTS ===== */
.custom-appbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: linear-gradient(135deg, #1565C0 0%, #1976D2 50%, #0D47A1 100%) !important;
    box-shadow: 0 4px 20px rgba(21, 101, 192, 0.3) !important;
    transition: all 0.3s ease !important;
}

.custom-appbar:hover {
    box-shadow: 0 8px 32px rgba(21, 101, 192, 0.4) !important;
}

/* ===== LOADING ANIMATION ENHANCEMENT ===== */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.loading-logo {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== FOCUS STATES ===== */
.mud-button:focus,
.mud-card:focus,
.mud-text-field:focus {
    outline: 2px solid #1565C0 !important;
    outline-offset: 2px !important;
}

/* ===== ENHANCED PRODUCT CARD HOVER ===== */
.product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(21, 101, 192, 0.2) !important;
}

/* ===== STATISTICS CARD ANIMATION ===== */
@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.statistics-section .mud-card {
    animation: countUp 0.6s ease-out;
}

/* ===== GRADIENT TEXT ANIMATION ===== */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background: linear-gradient(-45deg, #1565C0, #42A5F5, #E91E63, #FF9800);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== ENHANCED MOBILE TOUCH TARGETS ===== */
@media (max-width: 959px) {
    .mud-button,
    .mud-card,
    .mud-nav-link {
        min-height: 44px !important;
        min-width: 44px !important;
    }

    .mud-icon {
        font-size: 1.2rem !important;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== HIGH CONTRAST MODE SUPPORT ===== */
@media (prefers-contrast: high) {
    .mud-card {
        border: 2px solid #000 !important;
    }

    .mud-button {
        border: 2px solid #000 !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .custom-appbar,
    .mud-drawer,
    .mud-carousel,
    .mud-button {
        display: none !important;
    }

    .mud-card {
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
}