.jmt-user-layout {
    min-height: 100vh;
}

.jmt-user-hero {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.jmt-user-profile {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jmt-user-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 1s ease;
    animation: jmtUserGlow 3s ease-in-out infinite;
}

@keyframes jmtUserGlow {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.jmt-avatar {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jmt-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.jmt-user-profile:hover .jmt-avatar::before {
    left: 100%;
}

.jmt-user-stats .jmt-stat-item {
    transition: all 0.3s ease;
}

.jmt-user-stats .jmt-stat-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .jmt-user-profile {
        padding: 1.5rem;
    }
    
    .jmt-profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .jmt-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}